项目原始demo,不改动
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işlem gönderemez ve konu/değişiklik isteği açamazsınız.

main.css 148 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. font-family: PingFang SC, PingFang SC-Regular, PingFang SC-Medium, PingFang SC-Light, PingFang SC-Semibold, Microsoft YaHei, "Helvetica Neue", Helvetica, Arial, sans-serif;
  5. -webkit-font-smoothing: antialiased;
  6. }
  7. /*登录注册*/
  8. .loginbox {
  9. width: 100%;
  10. }
  11. .loginbg {
  12. width: 1920px;
  13. height: 1365px;
  14. position: absolute;
  15. margin-left: 50%;
  16. left: -960px;
  17. }
  18. .login_inputbox {
  19. position: relative;
  20. width: 402px;
  21. overflow: hidden;
  22. margin: 0 auto;
  23. margin-top: 123px;
  24. }
  25. .login_inputbox input {
  26. width: 400px;
  27. padding-left: 30px;
  28. outline: 0;
  29. border: 1px solid #979797;
  30. }
  31. .login_inputbox input[type=text],
  32. .login_inputbox input[type=password] {
  33. width: 400px;
  34. height: 56px;
  35. border-radius: 30px;
  36. line-height: 60px;
  37. transition: ease all 1s;
  38. font-size: 18px;
  39. }
  40. .login_inputbox input[type=text]:focus,
  41. .login_inputbox input[type=password]:focus {
  42. border-color: #8c00ff
  43. }
  44. .login_inputbox input[type=text] {
  45. margin-bottom: 30px;
  46. }
  47. .login_inputbox input[type=password] {
  48. margin-bottom: 10px;
  49. }
  50. .login_inputbox>span {
  51. display: block;
  52. text-align: center;
  53. font-size: 28px;
  54. color: #8c00ff;
  55. margin-bottom: 96px;
  56. }
  57. .reset {
  58. display: block;
  59. text-align: right;
  60. font-size: 14px;
  61. padding-right: 30px;
  62. color: #a7a8b7;
  63. text-decoration: none;
  64. }
  65. .login_inputbox input[type=button] {
  66. margin-top: 59px;
  67. height: 36px;
  68. background-color: #8c00ff;
  69. color: #fff;
  70. border: 0;
  71. font-size: 18px;
  72. border-radius: 18px;
  73. cursor: pointer;
  74. padding-left: 0
  75. }
  76. .yiyunline {
  77. width: 100%;
  78. height: 1px;
  79. background-color: #e3e3e3;
  80. margin-top: 40px;
  81. margin-bottom: 10px;
  82. }
  83. .loginbottom>span {
  84. font-size: 14px;
  85. color: #fff;
  86. margin-left: 20px;
  87. }
  88. .loginbottom a {
  89. text-decoration: none;
  90. color: #fff;
  91. }
  92. .loginbottom a:hover,
  93. .reset:hover {
  94. color: #8c00ff;
  95. transition: ease all 1s;
  96. }
  97. /*云盘首页*/
  98. body,
  99. div,
  100. ul,
  101. li,
  102. h1,
  103. h2,
  104. h3,
  105. h4,
  106. h5,
  107. h6,
  108. p,
  109. sup,
  110. input {
  111. margin: 0;
  112. padding: 0;
  113. outline: none;
  114. list-style: none;
  115. }
  116. body {
  117. background-color: #f6f6f6;
  118. }
  119. .bg_f0{
  120. background-color: #f0f0f0;
  121. }
  122. #bigbody{
  123. background-color: #f6f6f6;
  124. }
  125. ul {
  126. list-style: none;
  127. }
  128. .fl {
  129. float: left;
  130. }
  131. .fr {
  132. float: right;
  133. }
  134. .clear {
  135. clear: both;
  136. }
  137. .yiyun_icon {
  138. /*transition: all ease 0.5s;*/
  139. cursor: pointer;
  140. }
  141. .icon_topnav_email {
  142. background: url("../img/yiyunicon.png") no-repeat -532px -28px;
  143. }
  144. .icon_topnav_email:hover {
  145. background: url("../img/yiyunicon.png") no-repeat -532px -112px;
  146. }
  147. .icon_topnav_message {
  148. background: url("../img/yiyunicon.png") no-repeat -728px -28px;
  149. }
  150. .icon_topnav_message:hover {
  151. background: url("../img/yiyunicon.png") no-repeat -728px -112px;
  152. }
  153. .icon_topnav_more {
  154. background: url("../img/yiyunicon.png") no-repeat -392px -28px;
  155. }
  156. .icon_topnav_more:hover {
  157. background: url("../img/yiyunicon.png") no-repeat -392px -112px;
  158. }
  159. .icon_topnav_searchicon {
  160. background: url("../img/yiyunicon.png") no-repeat -588px -28px;
  161. }
  162. .icon_topnav_fullscreen {
  163. background: url("../img/yiyunicon.png") no-repeat -420px -28px;
  164. }
  165. .icon_topnav_edit {
  166. background: url("../img/yiyunicon.png") no-repeat -784px -28px;
  167. }
  168. .icon_topnav_Zoommax {
  169. background: url("../img/yiyunicon.png") no-repeat -784px -28px;
  170. }
  171. .icon_topnav_Zoommin {
  172. background: url("../img/yiyunicon.png") no-repeat -784px -28px;
  173. }
  174. .icon_topnav_history {
  175. background: url("../img/yiyunicon.png") no-repeat -280px -28px;
  176. }
  177. .icon_topnav_zhedieDwon {
  178. background: url("../img/yiyunicon.png") no-repeat -560px -28px;
  179. }
  180. .icon_topnav_zhedieUp {
  181. background: url("../img/yiyunicon.png") no-repeat -140px -28px;
  182. }
  183. .icon_topnav_large_add {
  184. background: url("../img/yiyunicon.png") no-repeat 0px -234px;
  185. }
  186. .icon_topnav_backicon {
  187. background: url("../img/yiyunicon.png") no-repeat -28px -28px;
  188. }
  189. .icon_topnav_listicon {
  190. background: url("../img/yiyunicon.png") no-repeat -336px -28px;
  191. }
  192. .icon_topnav_sort {
  193. background: url("../img/yiyunicon.png") no-repeat -476px -28px;
  194. }
  195. .icon_topnav_maxzoomBtn {
  196. background: url("../img/yiyunicon.png") no-repeat -840px -56px;
  197. }
  198. .icon_topnav_minzoomBtn {
  199. background: url("../img/yiyunicon.png") no-repeat -868px -56px
  200. }
  201. .icon_topnav_shared_fifle {
  202. background: url("../img/yiyunicon.png") no-repeat -56px -56px
  203. }
  204. .icon_topback_left {
  205. background: url("../img/yiyunicon.png") no-repeat -28px -56px
  206. }
  207. .icon_topback_left_baise {
  208. background: url("../img/yiyunicon.png") no-repeat -28px -28px
  209. }
  210. .icon_topnav_cloud {
  211. display: inline-block;
  212. width: 28px;
  213. height: 28px;
  214. background: url("../img/yiyunicon.png") no-repeat 0 0;
  215. cursor: pointer;
  216. }
  217. .icon_topnav_cardicon {
  218. display: inline-block;
  219. width: 28px;
  220. height: 28px;
  221. background: url("../img/yiyunicon.png") no-repeat -702px -28px;
  222. cursor: pointer;
  223. }
  224. .clear {
  225. clear: both;
  226. }
  227. .yiyun_headerbox {
  228. width: 100%;
  229. /* background-color: #f6f6f6; */
  230. /* box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3); */
  231. position: fixed!important;
  232. z-index: 1;
  233. top: 0;
  234. }
  235. .headershadow{
  236. background-color: #fff;
  237. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  238. }
  239. .yiyun_header {
  240. width: calc(100vw - 120px);
  241. height: 54px;
  242. margin-left: auto;
  243. margin-right: auto;
  244. line-height: 54px;
  245. }
  246. .yiyun_headerce>span {
  247. padding: 14px 30px;
  248. margin: 0 0px;
  249. cursor: pointer;
  250. font-weight: 500;
  251. font-family: Pingfang SC;
  252. }
  253. .yiyun_headerfl,
  254. .yiyun_headerfr {
  255. width: 25%;
  256. /* width: 475px; */
  257. }
  258. .yiyun_headerfl {
  259. margin-left: 0px;
  260. float: left;
  261. font-size: 17px;
  262. color: #000;
  263. width: 25%;
  264. }
  265. .yiyun_headerfladmin {
  266. padding-right: 0;
  267. width: 50%;
  268. }
  269. .yiyun-2 {
  270. width: 20%;
  271. }
  272. .yiyun-6 {
  273. width: 60%;
  274. }
  275. .yiyun_headerfradmin {
  276. margin-right: 10px;
  277. }
  278. .yiyun_headerce {
  279. display: inline-block;
  280. text-align: center;
  281. font-size: 17px;
  282. text-align: center;
  283. font-weight: bold;
  284. color: #000;
  285. }
  286. .cewidth {
  287. width: 50%;
  288. overflow: hidden;
  289. text-overflow: ellipsis;
  290. white-space: nowrap;
  291. }
  292. .yiyun_headerfr {
  293. margin-right: 0px;
  294. float: right;
  295. }
  296. .yiyun_icon {
  297. display: inline-block;
  298. width: 28px;
  299. height: 28px;
  300. }
  301. .yiyun_icon_large {
  302. display: inline-block;
  303. width: 60px;
  304. height: 60px;
  305. cursor: pointer;
  306. margin-bottom: 15px;
  307. }
  308. .yiyun_headerfr>a {
  309. font-size: 12px;
  310. color: #000;
  311. cursor: pointer;
  312. margin-left: 22px;
  313. float: right;
  314. text-decoration: none;
  315. }
  316. .yiyun_headerfr>a:hover {
  317. color: #8c00ff;
  318. }
  319. .yiyun_searchbox {
  320. display: inline-block;
  321. position: relative;
  322. width: 28%;
  323. margin-top: 8px;
  324. margin-right: 43px;
  325. }
  326. .yiyun_searchbox i {
  327. float: left;
  328. position: absolute;
  329. left: 2px;
  330. top: 2px;
  331. cursor: pointer
  332. }
  333. .yiyun_search {
  334. float: left;
  335. width: 100%;
  336. background-color: transparent;
  337. border-radius: 16px;
  338. height: 30px;
  339. border: 1px solid rgba(216,216,216,1);
  340. padding-left: 40px;
  341. }
  342. .yiyun_search:focus {
  343. border: 1px solid #a9aab8;
  344. transition: all 0.5s;
  345. }
  346. .downlodkehu{
  347. color: #8c00ff;
  348. text-decoration: none;
  349. line-height: 54px;
  350. float: left;
  351. margin-right: 16px;
  352. }
  353. .user_info_item .el-input--suffix .el-input__inner{
  354. box-shadow: 0 0;
  355. }
  356. .yiyun_headerfr_item_r {
  357. height: 48px;
  358. line-height: 48px;
  359. overflow: hidden;
  360. float: right;
  361. margin-right: 30px;
  362. }
  363. .bzline{
  364. height: 1px;
  365. background-color: #A7A8B7;
  366. }
  367. .yiyun_headerfr_item_r>div span {
  368. float: right;
  369. line-height: 48px;
  370. margin-left: 24px;
  371. }
  372. .yiyun_headerfr_item_r:last {
  373. margin-right: 0;
  374. }
  375. .el-badge__content.is-fixed {
  376. top: -6px;
  377. }
  378. /*中间内容区域*/
  379. .yiyun_section {
  380. display: block;
  381. width: calc(100vw - 120px);
  382. margin: 0 auto;
  383. height: calc(100vh - 136px);
  384. }
  385. .yiyun_section_warp{
  386. display: block;
  387. width: calc(100vw - 120px);
  388. margin: 0 auto;
  389. }
  390. .yiyun_section_top {
  391. margin-top: 10px;
  392. overflow: hidden;
  393. margin-bottom: 10px;
  394. }
  395. .section_item_aside_fl h1 {
  396. font-size: 44px;
  397. font-family: PingFang SC;
  398. font-weight: 400;
  399. position: relative;
  400. top: -11px;
  401. color: #000;
  402. }
  403. .section_item_aside_fl .nowshijian {
  404. font-size: 20px;
  405. margin-right: 6px;
  406. position: relative;
  407. top: -13px;
  408. font-weight: 400;
  409. letter-spacing: 0.73px;
  410. color: #323232;
  411. }
  412. .yiyun_text-wenben {
  413. color: #9B9B9B;
  414. font-size: 12px;
  415. cursor: pointer;
  416. }
  417. .yiyun_btn_info {
  418. border: 0;
  419. border-radius: 4px;
  420. font-size: 14px;
  421. width: 80px;
  422. height: 28px;
  423. line-height: 28px;
  424. color: rgba(155, 155, 155, 1);
  425. background: -webkit-linear-gradient(top, #E1E2E8, #B0B0B7);
  426. color: #323232;
  427. cursor: pointer;
  428. }
  429. .section_item {
  430. display: inline-block;
  431. }
  432. .yiyun_point_group li {
  433. display: inline-block;
  434. margin: 0 10px;
  435. width: 70px;
  436. }
  437. .yiyun_point_group {
  438. text-align: center;
  439. }
  440. .yiyun_point_group .yiyun_point {
  441. display: inline-block;
  442. width: 10px;
  443. height: 10px;
  444. background-color: #d8d8d8;
  445. margin: 0 3px;
  446. border-radius: 10px;
  447. }
  448. .yiyun_point_group .yiyun_point.yyactive {
  449. background-color: #a8a8a8;
  450. }
  451. .section_item_aside_fl {
  452. /* min-height: 85px; */
  453. width: 80%;
  454. /* border: 1px solid #000;*/
  455. }
  456. .first-leftarrow{
  457. font-size: 19px;
  458. color: #A7A8B7;
  459. position: relative;
  460. top: 4px;
  461. }
  462. .section_item_aside_ce {
  463. /*border: 1px solid #ccc;*/
  464. width: calc(100vw - 550px);
  465. text-align: center;
  466. }
  467. .yiyun_point_group {
  468. width: 500px;
  469. margin: 0 auto;
  470. cursor: pointer;
  471. }
  472. .active {
  473. background-color: #a8a8a8 !important;
  474. }
  475. .mr-20 {
  476. margin-right: 20px;
  477. }
  478. .mr-30 {
  479. margin-right: 30px;
  480. }
  481. .newProject_next_taggle1,
  482. .newProject_next_taggle2,
  483. .newProject_next_taggle3 {
  484. width: 800px;
  485. }
  486. /*云盘*/
  487. .cloudpan_headbox {
  488. background-color: #555564;
  489. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  490. color: #fff;
  491. }
  492. .cloudpan_headbox .yiyun_headerfl,
  493. .cloudpan_headbox .yiyun_headerce,
  494. .cloudpan_headbox .yiyun_headerfr>a {
  495. color: #fff;
  496. }
  497. .cloudindexbody {
  498. background-color: #62626f!important;
  499. }
  500. .yiyun_section_1368 {
  501. width: 1368px;
  502. height: auto;
  503. margin: 0 auto;
  504. }
  505. .pt-10{
  506. padding-top: 10px;
  507. overflow: hidden;
  508. }
  509. .mt_30 {
  510. margin-top: 30px;
  511. }
  512. .mtb-10{
  513. margin-top: 10px;
  514. margin-bottom: 10px;
  515. }
  516. .mt_54 {
  517. margin-top: 54px;
  518. }
  519. .ml-8 {
  520. margin-left: 8px;
  521. }
  522. .ml-36 {
  523. margin-left: 36px;
  524. }
  525. .yiyun_text-title {
  526. font-size: 18px;
  527. color: #A7A8B7;
  528. float: left;
  529. line-height: 28px
  530. }
  531. .yiyun_text-title-workspace{
  532. display: flex
  533. }
  534. .yiyun_text-title-workspace a{
  535. font-size: 18px;
  536. color: #A7A8B7;
  537. float: left;
  538. line-height: 28px;
  539. text-decoration: none
  540. }
  541. .yiyun_text-title-workspace a:last-child .el-icon-arrow-left{
  542. opacity: 0;
  543. }
  544. .yiyun_text-title-workspace a:last-child{
  545. color: #000;
  546. background-color: #cccdd7;
  547. display: flex;
  548. padding-left: 15px;
  549. border-radius: 4px;
  550. padding-top: 0px;
  551. padding-bottom: 0px;
  552. position: relative;
  553. }
  554. .new_fifle {
  555. outline: none;
  556. padding-left: 20px;
  557. width: 102px;
  558. background: url(../img/new_btn_fifle.png) no-repeat 0 0;
  559. height: 24px;
  560. line-height: 23px;
  561. }
  562. .yupan_card_box ul li {
  563. float: left;
  564. height: 258px;
  565. margin: 0px 24px;
  566. cursor: pointer;
  567. overflow: hidden;
  568. position: relative;
  569. }
  570. .downloadBtn_yiyun {
  571. font-size: 30px;
  572. position: absolute;
  573. right: 10px;
  574. top: 143px;
  575. color: #fff;
  576. display: none;
  577. cursor:pointer;
  578. }
  579. .mr-30 {
  580. margin-right: 30px;
  581. }
  582. .yupan_card_box ul li:hover>.downloadBtn_yiyun {
  583. display: block;
  584. }
  585. .yupan_card_box ul li img {
  586. display: block;
  587. width: 180px;
  588. height: 180px;
  589. /* border-radius: 20px; */
  590. transition: ease all 0.5s;
  591. }
  592. .yupan_card_box ul li>div {
  593. display: block;
  594. width: 180px;
  595. height: 180px;
  596. border-radius: 20px;
  597. transition: ease all 0.5s;
  598. }
  599. .yupan_card_box ul li:hover>div {
  600. background-color: #32323c;
  601. }
  602. .yiyun_file_infobox {
  603. display: block;
  604. text-align: center;
  605. }
  606. .yiyun_file_newlabel {
  607. display: inline-block;
  608. width: 8px;
  609. height: 8px;
  610. border-radius: 7px;
  611. background-color: #4a90e2;
  612. }
  613. .yiyun_file_name {
  614. font-size: 18px;
  615. color: #fff;
  616. width: 180px;
  617. word-break: break-all;
  618. margin-top: 2px;
  619. display: -webkit-box;
  620. -webkit-box-orient: vertical;
  621. -webkit-line-clamp: 2;
  622. overflow: hidden;
  623. font-weight: 500;
  624. font-family: Pingfang SC;
  625. }
  626. .yiyun_file_name-mid {
  627. font-size: 15px;
  628. color: #fff;
  629. width: 136px;
  630. word-break: break-all;
  631. margin-top: 2px;
  632. display: -webkit-box;
  633. -webkit-box-orient: vertical;
  634. -webkit-line-clamp: 2;
  635. overflow: hidden;
  636. font-weight: 400;
  637. font-family: Pingfang SC;
  638. }
  639. .yiyun_file_info {
  640. display: block;
  641. font-size: 11px;
  642. color: #adadad;
  643. margin-top: 2px;
  644. }
  645. .fifle_pcdialogbox {
  646. width: 100%;
  647. height: calc(100vh);
  648. position: fixed;
  649. top: 0;
  650. left: 0;
  651. background-color: rgba(0, 0, 0, 0.2);
  652. }
  653. .fifle_pcdialogboxInputbox {
  654. width: 680px;
  655. height: 82px;
  656. margin: 0 auto;
  657. margin-top: 23%;
  658. border-radius: 20px;
  659. background-color: rgba(50, 50, 60, 1);
  660. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  661. }
  662. .passwordicon {
  663. display: inline-block;
  664. width: 48px;
  665. height: 48px;
  666. margin: 17px 24px;
  667. }
  668. .large_input_password {
  669. width: 435px;
  670. height: 40px;
  671. margin: 20px 0;
  672. padding-left: 20px;
  673. border: 1px solid #fff;
  674. }
  675. .fifle_pcdialogboxInputbox>a {
  676. font-size: 22px;
  677. line-height: 82px;
  678. margin-left: 30px;
  679. color: #fff;
  680. text-decoration: none;
  681. }
  682. /*新建文件夹弹框 start*/
  683. .bottomdialog {
  684. width: calc(100vw - 120px);
  685. height: calc(100vh - 60px);
  686. box-shadow: 0 0 15px #333;
  687. margin-right: auto;
  688. background-color: #55555d;
  689. position: absolute;
  690. bottom: 0px;
  691. margin-left: 50%;
  692. left: calc(-50vw + 60px);
  693. border-radius: 16px 16px 0 0;
  694. }
  695. .bottomdialogbox::after {
  696. background-position: center top;
  697. background-size: cover;
  698. background-attachment: fixed;
  699. -webkit-filter: blur(20px);
  700. -moz-filter: blur(20px);
  701. -ms-filter: blur(20px);
  702. -o-filter: blur(20px);
  703. filter: blur(20px);
  704. }
  705. .bottomdialogbox {
  706. width: 100%;
  707. height: calc(100vh);
  708. /*background-color: rgba(255,255,255,0.52);*/
  709. position: fixed;
  710. left: 0;
  711. bottom: -999px;
  712. opacity: 0;
  713. z-index: 99;
  714. background-color: rgba(98, 98, 111, 0.82);
  715. }
  716. .yiyun_dialog_left,
  717. .yiyun_dialog_right {
  718. /* width: 200px; */
  719. float: left;
  720. }
  721. .yiyun_dialog_left {
  722. margin-left: 60px;
  723. text-align: left;
  724. position: absolute;
  725. }
  726. .yiyun_dialog_right {
  727. text-align: right;
  728. position: absolute;
  729. right: 60px;
  730. top: 0px;
  731. }
  732. .yiyun_dialog_center {
  733. width: 800px;
  734. color: #fff;
  735. margin: 0 auto;
  736. position: relative;
  737. }
  738. /*新建文件夹弹框 end*/
  739. /*浏览文件start*/
  740. .scanindexbox {
  741. margin-top: 30px;
  742. }
  743. .wenjianscan_box_fl {
  744. float: left;
  745. width: 140px;
  746. height: 387px;
  747. margin-right: 15px;
  748. padding: 5px;
  749. }
  750. .wenjianscan_box_ce {
  751. float: left;
  752. width: 960px;
  753. height: 940px;
  754. box-shadow: 0px 10px 14px 0px rgba(83, 83, 83, 1);
  755. border: 1px solid rgba(235, 235, 242, 1);
  756. background-color: #fff;
  757. }
  758. .wenjianscan_box_fr {
  759. float: left;
  760. margin-left: 15px;
  761. width: 100px;
  762. height: 500px;
  763. }
  764. /*浏览文件end*/
  765. .yiyun_v_btngroup_item_bg {
  766. width: 52px;
  767. height: 111px;
  768. border-radius: 45px;
  769. background-color: rgba(50, 50, 60, 1);
  770. box-shadow: 0px 3px 6px 1px rgba(60, 60, 60, 0.5);
  771. }
  772. .yiyun_v_btngroup_1 .yiyun_v_btngroup_item_bg {
  773. width: 52px;
  774. height: 52px;
  775. border-radius: 45px;
  776. background-color: rgba(50, 50, 60, 1);
  777. box-shadow: 0px 3px 6px 1px rgba(60, 60, 60, 0.5);
  778. }
  779. .yiyun_v_btngroup_item {
  780. width: 52px;
  781. }
  782. .yiyun_v_btngroup_item_bg>a,
  783. .yiyun_v_btngroup_item>a {
  784. display: block;
  785. width: 28px;
  786. height: 28px;
  787. margin: 16px auto;
  788. }
  789. .yiyun_v_btngroup_1 .yiyun_v_btngroup_item_bg>a,
  790. .yiyun_v_btngroup_1 .yiyun_v_btngroup_item>a {
  791. margin: 11px auto;
  792. }
  793. .yiyun_v_btngroup>a {
  794. display: block;
  795. background-color: rgba(50, 50, 60, 1);
  796. width: 52px;
  797. padding: 12px 0;
  798. }
  799. .yiyun_v_btngroup>a:first-child {
  800. border-radius: 26px 26px 0 0;
  801. }
  802. .yiyun_v_btngroup>a:last-child {
  803. border-radius: 0 0 26px 26px;
  804. }
  805. .yiyun_v_btngroup>a i {
  806. display: block;
  807. margin: 0 auto;
  808. }
  809. .yiyun_v_btngroup {
  810. display: inline-block;
  811. border-radius: 26px;
  812. border: 0;
  813. box-shadow: 0px 3px 6px 1px rgba(60, 60, 60, 0.5);
  814. }
  815. .yiyun_headerfr_item_r .updowndrop .el-dropdown {
  816. margin-top: -20px;
  817. top: 20px;
  818. }
  819. .bottomdialogbox_list_head {
  820. float: left;
  821. height: 79px;
  822. line-height: 79px;
  823. }
  824. .bottomdialogbox_list_head h3 {
  825. font-size: 26px;
  826. font-weight: 500;
  827. display: -webkit-box;
  828. -webkit-box-orient: vertical;
  829. -webkit-line-clamp: 1;
  830. overflow: hidden;
  831. }
  832. .bottomdialogbox_list_head .text_concenter .el-input {
  833. width: 300px;
  834. }
  835. .yiyun_col-4 {
  836. width: 33.333%;
  837. float: left;
  838. }
  839. .yiyun_col-3 {
  840. width: 25%;
  841. float: left;
  842. }
  843. .yiyun_col-6 {
  844. width: 50%;
  845. float: left;
  846. }
  847. .yiyun_col-12 {
  848. width: 100%;
  849. float: left;
  850. }
  851. .el-input_mini .el-input__inner {
  852. height: 30px;
  853. }
  854. .text_concenter {
  855. text-align: center;
  856. }
  857. .text_concenter .el-input__icon {
  858. line-height: 28px;
  859. }
  860. .width_120 {
  861. width: 120px;
  862. }
  863. .yiyun_line {
  864. width: 100%;
  865. height: 1px;
  866. background-color: #62626F;
  867. margin: 8px 0;
  868. }
  869. .yiyun_line2{
  870. width: 100%;
  871. height: 1px;
  872. background-color: #CCCDD7;
  873. margin: 17px 0 20px 0;
  874. }
  875. .line_from .el-input__inner {
  876. border-radius: 5px;
  877. border: 0;
  878. background-color: #32323C;
  879. height: 36px;
  880. line-height: 36px;
  881. color: #fff;
  882. }
  883. .yonghutouxiangBox{
  884. float: left;
  885. margin-right: 28px;
  886. margin-bottom: 15px;
  887. text-align: center
  888. }
  889. .yonghutouxiangBox>span{
  890. color: rgba(255, 255, 255, 1);
  891. font-weight: 200;
  892. font-size: 12px;
  893. margin-top: 8px;
  894. }
  895. .touxiang_hezuorenBox {
  896. display: inline-block;
  897. }
  898. .touxiang_hezuorenBox-item {
  899. position: relative;
  900. width: 60px;
  901. height: 60px;
  902. border-radius: 30px;
  903. cursor: pointer;
  904. overflow: hidden;
  905. }
  906. .tianjiaxiezuoren h5 {
  907. font-size: 16px;
  908. margin-top: -10px;
  909. color: #fff;
  910. }
  911. .textlabelgray .el-form-item{
  912. margin-bottom: 0px;
  913. }
  914. .textlabelblock .el-form-item {
  915. margin-bottom: 10px;
  916. }
  917. .touxiang_hezuorenBox-item i {
  918. display: none;
  919. font-size: 24px;
  920. width: 150%;
  921. height: 150%;
  922. position: absolute;
  923. top: 0;
  924. left: 0;
  925. line-height: 60px;
  926. opacity: 0;
  927. text-align: center;
  928. background-color: rgba(0, 0, 0, 0.1);
  929. transition: ease all 0.5s;
  930. }
  931. .touxiang_hezuorenBox-item:hover>i {
  932. width: 100%;
  933. height: 100%;
  934. top: 0;
  935. opacity: 1;
  936. background-color: rgba(0, 0, 0, 0.7);
  937. }
  938. .bg_text_wirte .el-collapse-item__header {
  939. color: #ffffff;
  940. cursor: pointer;
  941. border-bottom: 1px solid #62626f;
  942. background-color: transparent;
  943. position: relative;
  944. font-size: 15px;
  945. }
  946. .bg_text_wirte .el-collapse-item__wrap {
  947. background-color: transparent;
  948. }
  949. .bg_text_wirte .el-collapse {
  950. border-top: 1px solid #62626f;
  951. border-bottom: 1px solid #62626f;
  952. }
  953. .mr_20 {
  954. margin-right: 10px;
  955. }
  956. .el-checkbox__inner {
  957. width: 10px;
  958. height: 10px;
  959. border-radius: 16px;
  960. }
  961. .el-checkbox__input.is-checked .el-checkbox__inner,
  962. .el-checkbox__input.is-indeterminate .el-checkbox__inner {
  963. background-color: #8c00ff;
  964. border-color: #8c00ff;
  965. }
  966. .mt-8 {
  967. margin-top: -8px;
  968. }
  969. .mt-7 {
  970. margin-top: 7px;
  971. }
  972. .user_info_item {
  973. color: #fff;
  974. height: 30px;
  975. padding: 0px 8px 8px 8px;
  976. border-radius: 4px;
  977. transition: all ease 0.5s;
  978. cursor: pointer;
  979. margin-top: 5px;
  980. overflow: hidden;
  981. }
  982. .user_info_item .user_info_faceImg {
  983. width: 30px;
  984. height: 30px;
  985. border-radius: 15px;
  986. margin-right: 10px;
  987. float: left;
  988. margin-top: 4px;
  989. }
  990. .user_info_item .el-checkbox {
  991. float: left;
  992. margin-right: 10px;
  993. }
  994. .el-collapse-item__wrap {
  995. border-bottom: 1px solid #62626f;
  996. }
  997. .user_info_item span {
  998. display: inline-block;
  999. line-height: 34px;
  1000. }
  1001. .user_info_item .user_info_name {
  1002. display: inline-block;
  1003. width: 70px;
  1004. font-size: 14px;
  1005. color: #cccdd7;
  1006. margin-right: 14px;
  1007. overflow: hidden;
  1008. text-overflow: ellipsis;
  1009. word-break: keep-all;
  1010. margin-top: 1px;
  1011. }
  1012. .user_info_item .user_info_job {
  1013. font-size: 12px;
  1014. color: #cccdd7;
  1015. width: 70px;
  1016. float: left;
  1017. overflow: hidden;
  1018. text-overflow: ellipsis;
  1019. word-break: keep-all;
  1020. }
  1021. .user_info_item .user_info_role {
  1022. float: right;
  1023. font-size: 13px;
  1024. color: #cccdd7;
  1025. margin-right: 10px;
  1026. }
  1027. .renyuanbox {
  1028. overflow: hidden;
  1029. }
  1030. .checkBoxCol {
  1031. color: #ffffff !important;
  1032. }
  1033. .checkxiezuoren {
  1034. position: absolute;
  1035. right: 8px;
  1036. }
  1037. .checkBoxDeptName {
  1038. position: absolute;
  1039. right: 30px;
  1040. }
  1041. .rightXiezuoren {
  1042. margin: 7px 0px 7px 15px;
  1043. color:#FEFEFE;
  1044. font-size: 17px;
  1045. font-weight: 400;
  1046. }
  1047. .row_painfl {
  1048. padding-right: 19px;
  1049. }
  1050. .row_painfr {
  1051. padding-left: 8px;
  1052. margin-left: 10px;
  1053. margin-top: 7px;
  1054. color: #fff;
  1055. font-size: 16px;
  1056. }
  1057. .row_painfl .el-collapse-item__arrow{
  1058. font-size: 25px;
  1059. color: #ebebf2;
  1060. }
  1061. .shuxian {
  1062. position: absolute;
  1063. left: 50%;
  1064. width: 1px;
  1065. height: 600px;
  1066. background-color: #62626f;
  1067. }
  1068. .xiezuobox {
  1069. position: relative;
  1070. /* overflow-y: auto;
  1071. overflow-x: hidden */
  1072. }
  1073. .xiezuobox::-webkit-scrollbar {
  1074. width: 5px;
  1075. padding-right: 4px;
  1076. border-radius: 4px;
  1077. background-color: #32323c;
  1078. /*其他样式,比如圆角等*/
  1079. }
  1080. /*滑块样式*/
  1081. .xiezuobox::-webkit-scrollbar-thumb {
  1082. -webkit-border-radius: 4px;
  1083. border-radius: 4px;
  1084. height: 300px;
  1085. background-color: #adadad;
  1086. }
  1087. /*当前窗口失去焦点时的滑块样式*/
  1088. .xiezuobox::-webkit-scrollbar-thumb:window-inactive {
  1089. background-color: #adadad;
  1090. }
  1091. .yiyun_zhedie,
  1092. .yiyundialog_close {
  1093. color: #f9f9f9;
  1094. cursor: pointer;
  1095. margin-top:28px;
  1096. }
  1097. .yiyundialog_close{
  1098. font-size: 18px;
  1099. }
  1100. .yiyun_zhediebtn{
  1101. margin-top: -4px;
  1102. display: block;
  1103. }
  1104. .yiyun_anniu1 {
  1105. text-align: center;
  1106. display: block;
  1107. width: 52px;
  1108. border-radius: 26px 26px 0 0;
  1109. padding: 10px 0 10px 0;
  1110. background-color: rgba(50, 50, 60, 1);
  1111. }
  1112. .yiyun_anniu1:hover {
  1113. background-color: rgba(50, 50, 60, 1);
  1114. }
  1115. .yiyun_anniu2 {
  1116. display: block;
  1117. text-align: center;
  1118. width: 52px;
  1119. border-radius: 0 0 26px 26px;
  1120. background-color: #ccc;
  1121. padding: 10px 0 10px 0;
  1122. background-color: rgba(50, 50, 60, 1);
  1123. }
  1124. /*btngrup*/
  1125. .btn_grouplist1 {
  1126. width: 52px;
  1127. overflow: hidden;
  1128. border-radius: 26px;
  1129. border: 0;
  1130. }
  1131. .btn_grouplist2 {
  1132. width: 52px;
  1133. overflow: hidden;
  1134. border: 0;
  1135. }
  1136. .yunjianzhu_show {
  1137. box-shadow: 0px 3px 6px 1px rgba(60, 60, 60, 0.5);
  1138. }
  1139. .yunjianzhu_noshow {
  1140. box-shadow: 0px 0px 0px 0px rgba(60, 60, 60, 0.5);
  1141. }
  1142. .btn_list1 {
  1143. padding: 12px 12px 9px 12px;
  1144. border: 0;
  1145. border-radius: 26px 26px 0 0;
  1146. }
  1147. .btn_list3 {
  1148. padding: 9px 12px 12px 12px;
  1149. border: 0;
  1150. border-radius: 0 0 26px 26px;
  1151. }
  1152. .btn_bg_block {
  1153. background-color: #32323c;
  1154. }
  1155. .btn_bg_block:hover {
  1156. transition: ease all 0.5s;
  1157. background-color: #4b4b50;
  1158. }
  1159. .btn_bg_baise {
  1160. background-color: #fff;
  1161. }
  1162. .btn_bg_baise:hover {
  1163. transition: ease all 0.5s;
  1164. background-color: #4b4b50;
  1165. }
  1166. .btn_bg_text {
  1167. transition: ease all 0.5s;
  1168. background-color: transparent;
  1169. }
  1170. .yiyuntextbtn {
  1171. padding: 9px 12px 12px 12px;
  1172. }
  1173. .popover_ul {
  1174. margin: 0;
  1175. padding: 0;
  1176. font-size: 14px;
  1177. line-height: 36px;
  1178. margin-left: 8px;
  1179. }
  1180. .popover_ul_nopadding {
  1181. margin: 0;
  1182. }
  1183. .popover_ul li a {
  1184. color: #A7A8B7;
  1185. text-decoration: none;
  1186. transition: ease all 0.5s;
  1187. }
  1188. .popover_ul li a:hover {
  1189. color: #000;
  1190. }
  1191. .el-popover {
  1192. border: 0px solid #ebeef5;
  1193. border-radius: 20px;
  1194. box-shadow: 0px 12px 14px 0px rgba(0, 0, 0, 0.2);
  1195. }
  1196. .scanleft_bottombtn {
  1197. position: fixed;
  1198. bottom: 60px;
  1199. }
  1200. .historyBox {
  1201. position: absolute;
  1202. width: 400px;
  1203. height: 930px;
  1204. border-radius: 10px;
  1205. background-color: rgba(255, 255, 255, 1);
  1206. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  1207. }
  1208. .fugaibtn {
  1209. top: 72px;
  1210. }
  1211. .danqianactive {
  1212. font-weight: 600;
  1213. }
  1214. .cicle_baiseanniu {
  1215. width: 52px;
  1216. height: 52px;
  1217. border-radius: 45px;
  1218. background-color: rgba(255, 255, 255, 1);
  1219. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  1220. border: 0;
  1221. }
  1222. .nullbox {
  1223. width: 100%;
  1224. height: 40px;
  1225. }
  1226. .labelinputbefore .el-input-group__prepend {
  1227. background-color: transparent;
  1228. border: 0;
  1229. font-size: 16px;
  1230. color: #EBEBF2;
  1231. border-radius: 0px;
  1232. border-bottom: 1px solid #62626f;
  1233. text-align: left;
  1234. padding: 0;
  1235. }
  1236. .locationbtn .el-input-group__append {
  1237. border: 0;
  1238. font-size: 24px;
  1239. padding: 0;
  1240. height: 36px;
  1241. border-radius: 0 5px 5px 0;
  1242. background-color: rgba(50, 50, 60, 1);
  1243. }
  1244. .label_text {
  1245. font-size: 16px;
  1246. margin-bottom: 16px;
  1247. margin-top: 10px;
  1248. color: #fff;
  1249. }
  1250. .label_text_moren {
  1251. border: 0;
  1252. background: transparent;
  1253. color: #fff;
  1254. font-size: 16px;
  1255. margin-bottom: 16px;
  1256. margin-top: 10px;
  1257. font-weight: bold;
  1258. }
  1259. .bg_baise {
  1260. background-color: rgba(255, 255, 255, 0.52);
  1261. }
  1262. .large_checkbox .el-checkbox__inner {
  1263. width: 20px;
  1264. height: 20px;
  1265. border-radius: 10px;
  1266. margin-left: 10px;
  1267. }
  1268. .large_checkbox .el-checkbox__inner::after {
  1269. height: 7px;
  1270. left: 7px;
  1271. top: 4px;
  1272. }
  1273. .backshangyicheng {
  1274. position: absolute;
  1275. left: -30px;
  1276. width: 10px;
  1277. height: 28px;
  1278. top: 26px;
  1279. }
  1280. .xiezuo_input.el-input {
  1281. width: 90%;
  1282. }
  1283. .xiezuo_input .el-input__inner {
  1284. height: 36px;
  1285. line-height: 36px;
  1286. }
  1287. .add_newxiezuo ul li {
  1288. height: 49px;
  1289. border-bottom: 1px solid #62626f;
  1290. line-height: 49px;
  1291. }
  1292. .add_xiezuo_title {
  1293. display: inline-block;
  1294. color: #fff;
  1295. font-size: 14px;
  1296. }
  1297. .add_xiezuo_icon_plus {
  1298. float: right;
  1299. color: #fff;
  1300. font-size: 15px;
  1301. line-height: 50px;
  1302. margin-right: 6px;
  1303. }
  1304. .popover_ul li a {
  1305. font-weight: 600;
  1306. /*color: #000;*/
  1307. }
  1308. .user_info_item:hover {
  1309. background-color: #23232b;
  1310. }
  1311. .el-collapse-item__content {
  1312. padding-bottom: 0px;
  1313. }
  1314. .user_info_role .setroleselect {
  1315. width: 65px;
  1316. }
  1317. .setroleselect .el-input__inner {
  1318. background-color: transparent;
  1319. padding: 0;
  1320. border: 0;
  1321. font-size: 14px;
  1322. position: relative;
  1323. color: #cccdd7;
  1324. }
  1325. .setroleselect .el-select__caret {
  1326. width: 0;
  1327. font-size: 0px;
  1328. }
  1329. .user_info_role {
  1330. display: block;
  1331. float: left;
  1332. }
  1333. .user_info_role .el-icon-close {
  1334. float: right;
  1335. margin-top: 11px;
  1336. cursor: pointer;
  1337. margin-left: 10px;
  1338. display: none;
  1339. }
  1340. .user_info_item:hover>.user_info_role .el-icon-close {
  1341. display: block;
  1342. }
  1343. .user_info_role .el-icon-close:hover {
  1344. border-radius: 50%;
  1345. background-color: #f00;
  1346. color: #fff;
  1347. }
  1348. .projectbox_item_model {
  1349. border-radius: 10px;
  1350. height: 286px;
  1351. margin: 10px 0;
  1352. }
  1353. .projectbox_item_model:hover>.project_item_model{
  1354. border-radius: 10px;
  1355. transform: scale(1.05);
  1356. transition: ease all 0.5s;
  1357. box-shadow: 0px 12px 14px rgba(0, 0, 0, 0.2);
  1358. }
  1359. .yupan_card_box ul li:nth-child(8n+1) {
  1360. margin-left: 0
  1361. }
  1362. .defualtBtnInfo.el-button:hover {
  1363. background: #9c23ff;
  1364. border-color: #9c23ff;
  1365. color: #fff;
  1366. transition: all ease 0.5s;
  1367. }
  1368. .projectbox_card_warp {
  1369. /* padding: 20px 6px; */
  1370. width: 1840px;
  1371. /*position: relative;
  1372. left: -30px;*/
  1373. border-radius: 20px;
  1374. margin: 0 auto;
  1375. }
  1376. .projectbox_card {
  1377. border-radius: 20px;
  1378. /* background-color: #EBEBEB; */
  1379. transition: ease all 0.5s;
  1380. margin: 15px 0;
  1381. }
  1382. .yiyun_product_item {
  1383. width: 100%;
  1384. height: 245px;
  1385. border-radius: 10px;
  1386. background-color: #ccc;
  1387. overflow: hidden;
  1388. /* box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2); */
  1389. position: relative;
  1390. }
  1391. .zuiright {
  1392. position: relative;
  1393. right: -10px;
  1394. }
  1395. .yiyun_product_item img {
  1396. position: absolute;
  1397. }
  1398. .yiyun_product_item_top {
  1399. position: absolute;
  1400. top: 0px;
  1401. width: 100%;
  1402. }
  1403. .yiyun_product_itembarfl {
  1404. float: left;
  1405. margin-top: 16px;
  1406. margin-left: 16px;
  1407. }
  1408. .yiyun_product_itembarfl span {
  1409. display: inline-block;
  1410. width: 28px;
  1411. height: 28px;
  1412. border-radius: 14px;
  1413. color: #fff;
  1414. font-size: 15px;
  1415. text-align: center;
  1416. line-height: 28px;
  1417. cursor: pointer;
  1418. }
  1419. .yiyun_product_itembarfr {
  1420. float: right;
  1421. margin-top: 16px;
  1422. margin-right: 16px;
  1423. }
  1424. .projectbox_item_model .el-dropdown{
  1425. opacity: 0;
  1426. transition: ease all 0.5s;
  1427. }
  1428. .projectbox_item_model:hover .yiyun_product_item .el-dropdown{
  1429. opacity: 1;
  1430. }
  1431. .btn_yiyun_cardinfo_a {
  1432. background-color: #9c23ff;
  1433. }
  1434. .btn_yiyun_cardinfo_b {
  1435. background-color: #4a90e2;
  1436. }
  1437. .newtip{
  1438. position: absolute;
  1439. top: 0;
  1440. left: 1px;
  1441. width: 8px;
  1442. height: 8px;
  1443. border-radius: 4px;
  1444. background-color: #26ADFC;
  1445. }
  1446. .wenjiantitle {
  1447. position: relative;
  1448. bottom: -124px;
  1449. margin-left: 20px;
  1450. }
  1451. .wenjiantitle h4 {
  1452. line-height: 28px;
  1453. color: #fff;
  1454. font-size: 25px;
  1455. text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  1456. font-weight: 600;
  1457. font-family: Pingfang SC;
  1458. display: -webkit-box;
  1459. -webkit-box-orient: vertical;
  1460. -webkit-line-clamp: 1;
  1461. overflow: hidden;
  1462. }
  1463. .yiyun_product_card_tips {
  1464. font-size: 14px;
  1465. color: #fff;
  1466. text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  1467. margin-bottom: 8px;
  1468. display: -webkit-box;
  1469. -webkit-box-orient: vertical;
  1470. -webkit-line-clamp: 1;
  1471. overflow: hidden;
  1472. }
  1473. .mr-15 {
  1474. margin-right: 15px;
  1475. }
  1476. .longBtn {
  1477. width: 100%;
  1478. margin: 15px 0;
  1479. }
  1480. .defualtBtnInfo.el-button {
  1481. color: rgba(50, 50, 60, 1);
  1482. font-size: 14px;
  1483. height: 30px;
  1484. border-radius: 21px;
  1485. background-color: rgba(255, 255, 255, 1);
  1486. border: 0.5px solid rgba(212, 212, 212, 1);
  1487. margin-bottom: 10px;
  1488. padding: 0px 23px !important;
  1489. }
  1490. .gantetu_listBox {
  1491. width: 400px;
  1492. height: 412px;
  1493. /*background-color: #ccc;*/
  1494. }
  1495. .yyactive {
  1496. background-color: #adadad;
  1497. }
  1498. .yiyunLayout_col-12 {
  1499. width: 100%;
  1500. float: left;
  1501. }
  1502. .yiyunLayout_col-6 {
  1503. width: 50%;
  1504. float: left;
  1505. }
  1506. .yiyunLayout_col-4 {
  1507. width: 25%;
  1508. float: left;
  1509. }
  1510. .top_gonggao {
  1511. text-align: center;
  1512. margin-top: 20px;
  1513. }
  1514. h3.yiyuntitle {
  1515. color: rgba(0, 0, 0, 1);
  1516. font-size: 18px;
  1517. line-height: 36px;
  1518. display: inline-block;
  1519. position: relative;
  1520. top: 1px;
  1521. font-weight: 400;
  1522. font-family: Pingfang SC;
  1523. }
  1524. span.yiyun_tishibtn {
  1525. color: rgba(167, 168, 183, 1);
  1526. font-size: 12px;
  1527. text-align: center;
  1528. }
  1529. .ml-24 {
  1530. margin-left: 24px;
  1531. }
  1532. .yiyun_yinggyong_list {
  1533. display: inline-block;
  1534. width: 285px;
  1535. height: 250px;
  1536. background-color: #fff;
  1537. margin: 20px 24px;
  1538. position: relative;
  1539. border-radius: 10px;
  1540. cursor: pointer;
  1541. background-color: rgba(0, 0, 0, 0.15);
  1542. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  1543. overflow: hidden;
  1544. }
  1545. .yiyun_yinggyong_list:hover {
  1546. transition: all ease 0.5s;
  1547. }
  1548. .yiyun_yinggyong_list:hover>img {
  1549. transform: scale(1.1);
  1550. -ms-transform: scale(1.1);
  1551. /* IE 9 */
  1552. -moz-transform: scale(1.1);
  1553. /* Firefox */
  1554. -webkit-transform: scale(1.1);
  1555. /* Safari 和 Chrome */
  1556. -o-transform: scale(1.1);
  1557. transition: ease all 0.5s;
  1558. }
  1559. .yinyong_bg_img {
  1560. display: block;
  1561. width: 100%;
  1562. height: 100%;
  1563. }
  1564. .yiyun_label_yinyong {
  1565. position: absolute;
  1566. top: 20px;
  1567. left: 20px;
  1568. background-color: #ED1B35;
  1569. border-radius: 10px;
  1570. font-size: 10px;
  1571. padding: 3px 10px;
  1572. color: #fff;
  1573. }
  1574. .yiyun_label_yinyong2 {
  1575. position: absolute;
  1576. top: 20px;
  1577. left: 20px;
  1578. font-size: 14px;
  1579. color: #000;
  1580. cursor: pointer;
  1581. }
  1582. .label_text_yingyong {
  1583. position: absolute;
  1584. bottom: 20px;
  1585. left: 20px;
  1586. color: #fff;
  1587. font-size: 22px;
  1588. text-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  1589. font-weight: 500;
  1590. font-family: Pingfang SC;
  1591. }
  1592. .yiyun_wenjian_list {
  1593. width: 136px;
  1594. float: left;
  1595. height: 200px;
  1596. margin: 0px 16px 0px 16px;
  1597. }
  1598. .yiyun_wenjian_list:hover {
  1599. background-color: #d8d8d8;
  1600. border-radius: 10px;
  1601. }
  1602. .yiyun_row.py-x-22,.py-x-22{
  1603. margin-left: -22px;
  1604. margin-right: -22px;
  1605. }
  1606. .mt-12{
  1607. margin-top: 12px;
  1608. }
  1609. .pageImgBox.ml-110,.ml-110{
  1610. margin-left: 110px;
  1611. }
  1612. .nohover:hover{
  1613. background-color: transparent;
  1614. }
  1615. .settingIcon{
  1616. color: #fff;
  1617. font-size: 20px;
  1618. }
  1619. .top_optionBar{
  1620. opacity: 0;
  1621. }
  1622. .yiyun_wenjian_list:hover .top_optionBar{
  1623. opacity: 1;
  1624. }
  1625. .yiyunwenjian_name {
  1626. color: #32323c;
  1627. font-size: 15px;
  1628. text-align: center;
  1629. display: -webkit-box;
  1630. -webkit-box-orient: vertical;
  1631. -webkit-line-clamp: 2;
  1632. overflow: hidden;
  1633. font-weight: 400;
  1634. word-break: break-all;
  1635. }
  1636. .yiyunwenjian_infodesc {
  1637. color: #9B9B9B;
  1638. font-size: 11px;
  1639. text-align: center;
  1640. display: block;
  1641. }
  1642. .noFile {
  1643. margin-left: 50%;
  1644. margin-top: 5%;
  1645. font-weight: bold;
  1646. font-size: 16px;
  1647. }
  1648. .gonggao_content p {
  1649. line-height: 22px;
  1650. color: rgba(255, 255, 255, 1);
  1651. font-size: 16px;
  1652. text-align: justify;
  1653. margin-top: 20px;
  1654. }
  1655. .yiyun_wenjian_list:hover>.yiyunwenjian_imgbox {
  1656. background-color: #d8d8d8;
  1657. transition: all ease 0.5s;
  1658. cursor: pointer;
  1659. border-radius: 10px;
  1660. }
  1661. .yinyong_warpBox {
  1662. overflow: unset;
  1663. }
  1664. .yiyun_yingyongBox_wrap {
  1665. height: 300px;
  1666. overflow: hidden;
  1667. }
  1668. .flex_right_pain {
  1669. position: fixed;
  1670. top: 70px;
  1671. right: -800px;
  1672. background-color: #fff;
  1673. width: 375px;
  1674. height: calc(100vh - 100px);
  1675. overflow-y: auto;
  1676. overflow-x: hidden;
  1677. border-radius: 10px;
  1678. transition: all ease 0.5s;
  1679. background-color: rgba(255, 255, 255, 1);
  1680. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  1681. z-index: 9;
  1682. }
  1683. .fifle_search {
  1684. margin: 0 auto;
  1685. }
  1686. .fifle_search .el-input__icon {
  1687. line-height: 30px;
  1688. }
  1689. .yiyun_app_info_box li {
  1690. height: 44px;
  1691. line-height: 44px;
  1692. color: #000;
  1693. padding: 0 16px;
  1694. overflow: hidden;
  1695. }
  1696. .noshodow .el-input--suffix .el-input__inner{
  1697. background-color: rgba(244, 244, 246, 1);
  1698. box-shadow: 0 0px 0px #c3c3c3;
  1699. border: 0;
  1700. }
  1701. .yiyun_app_info_box .el-switch {
  1702. margin-top: 12px;
  1703. }
  1704. .yiyun_app_info_box .el-switch.is-checked .el-switch__core {
  1705. border-color: #8c00ff;
  1706. background-color: #8c00ff;
  1707. }
  1708. .yiyun_yinyongname {
  1709. color: #8c00ff;
  1710. font-size: 15px;
  1711. margin-top: 14px;
  1712. display: block;
  1713. margin-left: 0px;
  1714. margin-bottom: 12px;
  1715. padding: 0 16px;
  1716. }
  1717. .line35 .el-checkbox__label{
  1718. font-size: 13px;
  1719. color: #000;
  1720. padding-left: 6px;
  1721. }
  1722. .line35{
  1723. line-height: 35px;
  1724. }
  1725. .flex_right_pain_head h4{
  1726. line-height: 59px;
  1727. font-size: 17px;
  1728. display: -webkit-box;
  1729. -webkit-box-orient: vertical;
  1730. -webkit-line-clamp: 1;
  1731. overflow: hidden;
  1732. }
  1733. .RdiaheaderTitle{
  1734. padding-left: 16px;
  1735. }
  1736. .flex_right_pain_head .el-icon-arrow-left{
  1737. line-height: 59px;
  1738. margin-left: 8px;
  1739. }
  1740. .flex_right_pain_head .icon-icon_quxiaohuoguanbi{
  1741. margin-right: 16px;
  1742. line-height: 59px;
  1743. font-size: 20px;
  1744. }
  1745. .centertext{
  1746. text-align: center
  1747. }
  1748. .el-icon-close {
  1749. cursor: pointer;
  1750. }
  1751. .julidingbu_15 {
  1752. margin-top: 15px;
  1753. display: block;
  1754. }
  1755. button:focus {
  1756. outline: none;
  1757. }
  1758. /*工期审核*/
  1759. .workchack_itembgBox {
  1760. position: relative;
  1761. left: -25px;
  1762. width: 1350px;
  1763. }
  1764. .workchack_item {
  1765. width: 400px;
  1766. float: left;
  1767. margin: 0px 15px;
  1768. padding: 0px 10px;
  1769. position: relative;
  1770. top: 0px;
  1771. margin-top: 12px;
  1772. padding: 10px;
  1773. }
  1774. .workchack_item .yiyun_product_item—mincard {
  1775. width: 390px;
  1776. height: 88px;
  1777. border-radius: 10px;
  1778. background-color: rgba(255, 255, 255, 1);
  1779. border-left: 10px solid #4A90e2;
  1780. transition: ease all 0.5s;
  1781. cursor: pointer;
  1782. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  1783. }
  1784. .workchack_item .yiyun_text_mini {
  1785. font-size: 12px;
  1786. }
  1787. .workchack_item .yiyun_text_middle {
  1788. font-size: 20px !important;
  1789. }
  1790. .section_item_aside_fl .workchack_item .yiyun_text_large {
  1791. font-size: 38px;
  1792. font-weight: 600;
  1793. }
  1794. .mincard_left_item span,
  1795. .mincard_right_item span {
  1796. display: block;
  1797. }
  1798. .mincard_left_item {
  1799. margin-left: 15px;
  1800. margin-top: 10px;
  1801. }
  1802. .mincard_right_item {
  1803. margin-top: 10px;
  1804. margin-right: 25px;
  1805. }
  1806. .mt-12 {
  1807. margin-top: 12px;
  1808. }
  1809. .text_color_defualt {
  1810. color: #8C00FF;
  1811. }
  1812. .mincard_right_item .yiyun_text_large {
  1813. text-align: right;
  1814. }
  1815. .yiyun_product_item—mincard:hover {
  1816. border-left-color: #A6E9CE;
  1817. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  1818. }
  1819. /*卡片浮动层*/
  1820. .yiyunupdown_box {
  1821. margin-top: 10px;
  1822. width: 350px;
  1823. background-color: #fff;
  1824. border-radius: 10px;
  1825. background-color: rgba(255, 255, 255, 1);
  1826. /* box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2); */
  1827. overflow: hidden;
  1828. padding: 15px;
  1829. }
  1830. .yiyun—primary {
  1831. font-size: 14px;
  1832. padding: 6px 26px;
  1833. background-color: #8C00FF;
  1834. border-radius: 15px;
  1835. border: 0;
  1836. color: #fff;
  1837. cursor: pointer;
  1838. }
  1839. .yiyun—info {
  1840. font-size: 14px;
  1841. padding: 6px 26px;
  1842. background-color: #62626F;
  1843. border-radius: 15px;
  1844. border: 0;
  1845. color: #fff;
  1846. cursor: pointer;
  1847. }
  1848. .yiyun_querenyouce>button {
  1849. display: block;
  1850. }
  1851. .mt_10 {
  1852. margin-top: 10px;
  1853. }
  1854. .yiyun_uerinfobox {
  1855. margin-top: 5px;
  1856. }
  1857. .yiyun_uerinfobox ul li {
  1858. font-size: 15px;
  1859. margin: 5px 0;
  1860. }
  1861. .yiyun_uerinfobox ul li label {
  1862. width: 70px;
  1863. text-align: justify;
  1864. display: inline-block;
  1865. letter-spacing: 8px;
  1866. font-weight: 600;
  1867. }
  1868. .gongqibeizhuyun {
  1869. font-size: 16px;
  1870. margin-top: 25px;
  1871. margin-bottom: 40px;
  1872. line-height: 22px;
  1873. }
  1874. .biaoqian_addgongqi span {
  1875. display: block;
  1876. }
  1877. .yiyunprogressbox {
  1878. width: 100%;
  1879. height: 26px;
  1880. position: relative;
  1881. }
  1882. .yiyun_probg,
  1883. .current_pro,
  1884. .current_delaypro,
  1885. .progresslabel,
  1886. .current_delayprolabel {
  1887. position: absolute;
  1888. }
  1889. .yiyunprogressbox .progresslabel {
  1890. left: 10px;
  1891. top: 1px;
  1892. z-index: 4;
  1893. font-size: 14px;
  1894. }
  1895. .yiyunprogressbox .current_delayprolabel {
  1896. right: 10px;
  1897. top: 1px;
  1898. z-index: 5;
  1899. font-size: 14px;
  1900. color: #fff;
  1901. }
  1902. .current_delaypro {
  1903. background-color: #D0021B;
  1904. border-radius: 0px 13px 13px 0px;
  1905. width: 20%;
  1906. right: 0;
  1907. z-index: 3;
  1908. text-align: right;
  1909. }
  1910. /*蓝色进度条定义*/
  1911. .pro_yiyun_blue .yiyun_probg {
  1912. background-color: #92B8E5;
  1913. border-radius: 13px;
  1914. width: 100%;
  1915. z-index: 1;
  1916. }
  1917. .pro_yiyun_blue .current_pro {
  1918. background-color: #4A90E2;
  1919. border-radius: 13px 0 0 13px;
  1920. width: 30%;
  1921. z-index: 2;
  1922. }
  1923. /*绿色进度条定义*/
  1924. .pro_yiyun_green .yiyun_probg {
  1925. background-color: #94E8C7;
  1926. border-radius: 13px;
  1927. width: 100%;
  1928. z-index: 1;
  1929. }
  1930. .pro_yiyun_green .current_pro {
  1931. background-color: #4AE2A5;
  1932. border-radius: 13px 0 0 13px;
  1933. width: 10%;
  1934. z-index: 2;
  1935. }
  1936. /*紫色进度条定义*/
  1937. .pro_yiyun_purple .yiyun_probg {
  1938. background-color: rgba(226, 74, 225, 30%);
  1939. border-radius: 13px;
  1940. width: 100%;
  1941. z-index: 1;
  1942. }
  1943. .pro_yiyun_purple .current_pro {
  1944. background-color: #E24AE1;
  1945. border-radius: 13px 0 0 13px;
  1946. width: 50%;
  1947. z-index: 2;
  1948. }
  1949. /*紫色进度条定义*/
  1950. .pro_yiyun_orange .yiyun_probg {
  1951. background-color: #f2dfd4;
  1952. border-radius: 13px;
  1953. width: 100%;
  1954. z-index: 1;
  1955. }
  1956. .pro_yiyun_orange .current_pro {
  1957. background-color: #E2844A;
  1958. border-radius: 13px 0 0 13px;
  1959. width: 70%;
  1960. z-index: 2;
  1961. }
  1962. .yiyuninput_number {
  1963. margin: 40px 0;
  1964. text-align: center;
  1965. }
  1966. .section_item_aside_fl .yiyunjishuqiinput span {
  1967. font-size: 20px;
  1968. margin-right: 6px;
  1969. border-radius: 50%;
  1970. width: 36px;
  1971. height: 36px;
  1972. background-color: rgba(255, 255, 255, 1);
  1973. box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  1974. }
  1975. .yiyunjishuqiinput .el-input__inner {
  1976. font-size: 58px;
  1977. border: 0;
  1978. height: 44px;
  1979. color: #000000;
  1980. }
  1981. .yiyunjishuqiinput.el-input-number {
  1982. width: 100%;
  1983. }
  1984. .yiyuninput_number_label {
  1985. font-size: 15px;
  1986. }
  1987. .workchack_item_warp {
  1988. width: 1350px;
  1989. position: relative;
  1990. left: -25px;
  1991. top: -18px;
  1992. }
  1993. .card_yiyunrecord .yiyun_yinggyong_list {
  1994. display: inline-block;
  1995. width: 100%;
  1996. height: auto;
  1997. background-color: #fff;
  1998. margin: 20px 0px;
  1999. position: relative;
  2000. border-radius: 10px;
  2001. cursor: pointer;
  2002. }
  2003. .biaozhu_tupian {
  2004. color: rgba(173, 173, 173, 1);
  2005. font-size: 12px;
  2006. text-align: center;
  2007. display: block;
  2008. }
  2009. .yiyunjishuqiinput .el-input-number__decrease,
  2010. .yiyunjishuqiinput .el-input-number__increase {
  2011. font-size: 20px;
  2012. margin-right: 6px;
  2013. border-radius: 50%;
  2014. width: 36px;
  2015. height: 36px;
  2016. background-color: rgba(255, 255, 255, 1);
  2017. box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  2018. margin-top: 2px;
  2019. }
  2020. .el-input-number__decrease:hover,
  2021. .el-input-number__increase:hover {
  2022. color: #8c00ff;
  2023. }
  2024. .section_item_aside_fl .workchack_item span {
  2025. font-size: 12px;
  2026. margin-right: 0px;
  2027. }
  2028. .yiyuntab_toggle {
  2029. color: #A7A8B7;
  2030. }
  2031. .yiyuntabactived {
  2032. color: #000;
  2033. }
  2034. .bianji_input {
  2035. width: 370px;
  2036. height: 36px!important;
  2037. line-height: 36px!important;
  2038. border-radius: 4px!important;
  2039. background-color: rgba(49, 49, 59, 1);
  2040. color: #fff;
  2041. border: 0;
  2042. padding-left: 10px;
  2043. }
  2044. .bianji_input_toggle {
  2045. color: #fff;
  2046. }
  2047. .self_eidt_selfWorkImg {
  2048. display: none;
  2049. }
  2050. .self_eidt_selfWork {
  2051. margin-top: 15px;
  2052. }
  2053. .workchack_item_warp .yiyun_row,
  2054. .project_workTimeItme .yiyun_row {
  2055. left: 0;
  2056. }
  2057. .section_item_aside_fl .yiyun_label_yinyong {
  2058. font-size: 10px;
  2059. border-radius: 13px;
  2060. }
  2061. .section_item_aside_fl .cicle_raduas span {
  2062. font-size: 14px;
  2063. }
  2064. .cicle_raduas {
  2065. padding: 6px 22px;
  2066. position: relative;
  2067. top: -1px;
  2068. }
  2069. .popoveractive {
  2070. color: #000;
  2071. font-weight: bold;
  2072. }
  2073. .popover_ul li {
  2074. cursor: pointer;
  2075. }
  2076. .wenjianscan_box_ceContent {
  2077. width: 700px;
  2078. margin: 50px auto;
  2079. }
  2080. .wenjianscan_box_ceContent h2 {
  2081. text-align: center;
  2082. line-height: 60px;
  2083. }
  2084. .wenjianscan_box_ceContent p {
  2085. text-align: justify;
  2086. font-size: 16px;
  2087. line-height: 32px;
  2088. color: #666;
  2089. margin: 50px 0;
  2090. text-indent: 33px;
  2091. }
  2092. .left_dinwei_btn {
  2093. position: fixed;
  2094. top: 75px;
  2095. padding: 10px;
  2096. margin-left: -10px;
  2097. }
  2098. .right_dinwei_btn {
  2099. position: fixed;
  2100. top: 75px;
  2101. padding: 10px;
  2102. margin-right: -10px;
  2103. }
  2104. .back_top {
  2105. position: relative;
  2106. }
  2107. .back_top_btn {
  2108. position: absolute;
  2109. left: -29px;
  2110. top: -2px;
  2111. cursor:pointer;
  2112. }
  2113. .back_title{
  2114. cursor:pointer;
  2115. }
  2116. .caozuotishi_btn {
  2117. display: inline-block;
  2118. margin-left: 20px;
  2119. position: relative;
  2120. top: 10px;
  2121. }
  2122. .yiyun_label_yinyong_worker {
  2123. color: rgba(255, 255, 255, 1);
  2124. font-size: 11px;
  2125. text-align: right;
  2126. text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.5);
  2127. position: absolute;
  2128. bottom: 58px;
  2129. left: 20px;
  2130. }
  2131. .height_auto {
  2132. height: auto;
  2133. }
  2134. .project_workreviewItme {
  2135. margin-top: 12px;
  2136. }
  2137. .label_slide_btn {
  2138. display: inline-block;
  2139. position: relative;
  2140. top: 8px;
  2141. margin-left: 20px;
  2142. }
  2143. .project_workTimeItme .wenjianbox_warp {
  2144. left: -22px;
  2145. }
  2146. .project_workTimeItme .wenjianbox_warp .yiyunwenjian_infodesc {
  2147. font-size: 11px;
  2148. }
  2149. .newmassage_yinyong {
  2150. display: inline-block;
  2151. width: 10px;
  2152. height: 10px;
  2153. background-color: #D0021B;
  2154. border-radius: 50%;
  2155. margin-right: 10px;
  2156. position: relative;
  2157. top: -3px;
  2158. }
  2159. .newmassage_wenjian {
  2160. display: inline-block;
  2161. width: 10px;
  2162. height: 10px;
  2163. background-color: rgba(74, 144, 226, 1);
  2164. border-radius: 50%;
  2165. margin-right: 10px;
  2166. position: relative;
  2167. top: -3px;
  2168. }
  2169. .mt-12 {
  2170. margin-top: 12px;
  2171. }
  2172. .project_workTimeItme {
  2173. margin-top: 12px;
  2174. }
  2175. .layout_content::-webkit-scrollbar, .admin_contentBox_body::-webkit-scrollbar{
  2176. width: 8px;
  2177. padding-right: 4px;
  2178. border-radius: 4px;
  2179. background-color: #f6f6f6;
  2180. /*其他样式,比如圆角等*/
  2181. }
  2182. /*滑块样式*/
  2183. .layout_content::-webkit-scrollbar-thumb,.admin_contentBox_body::-webkit-scrollbar-thumb {
  2184. -webkit-border-radius: 4px;
  2185. border-radius: 4px;
  2186. height: 300px;
  2187. background-color: #adadad;
  2188. }
  2189. /*当前窗口失去焦点时的滑块样式*/
  2190. .layout_content::-webkit-scrollbar-thumb:window-inactive,.admin_contentBox_body::-webkit-scrollbar-thumb:window-inactive {
  2191. background-color: #adadad;
  2192. }
  2193. .biaoti_head {
  2194. margin-top: 22px;
  2195. margin-bottom: 12px;
  2196. }
  2197. .personManagerBox {
  2198. width: 640px;
  2199. height: 703px;
  2200. border-radius: 10px;
  2201. box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  2202. }
  2203. .bg_black {
  2204. background-color: rgba(98, 98, 111, 1);
  2205. }
  2206. .bg_wirte {
  2207. background-color: rgba(255, 255, 255, 1);
  2208. }
  2209. .part_nameBody {
  2210. overflow: initial;
  2211. }
  2212. .personManagerBoxBody {
  2213. width: 100%;
  2214. margin: 20px;
  2215. }
  2216. .yiyun_collapse {
  2217. width: 600px;
  2218. }
  2219. .yiyun_collapse .el-carousel__mask,
  2220. .yiyun_collapse .el-cascader-menu,
  2221. .yiyun_collapse .el-cascader-menu__item.is-disabled:hover,
  2222. .yiyun_collapse .el-collapse-item__header,
  2223. .yiyun_collapse .el-collapse-item__wrap {
  2224. background-color: transparent;
  2225. }
  2226. .yiyun_collapse .el-collapse-item__header {
  2227. border: 0;
  2228. }
  2229. .yiyun_collapse.el-collapse {
  2230. border: 0;
  2231. }
  2232. .collapse_title {
  2233. font-size: 18px;
  2234. font-weight: 500;
  2235. line-height: 20px;
  2236. color: #CCCDD7;
  2237. }
  2238. .yiyun_checkbox_label {
  2239. color: #CCCDD7;
  2240. font-size: 14px;
  2241. }
  2242. .user_info_item_list .user_info_faceImg {
  2243. width: 30px;
  2244. height: 30px;
  2245. border-radius: 15px;
  2246. }
  2247. /* 文件格式 */
  2248. .fifleimg_box {
  2249. width: 180px;
  2250. height: 180px;
  2251. }
  2252. .fifleimg_box-mid {
  2253. width: 136px;
  2254. height: 136px;
  2255. }
  2256. .defultImage {
  2257. width: 136px;
  2258. height: 136px;
  2259. background-image: url(../img/defult.png);
  2260. }
  2261. .defultImage-mid {
  2262. width: 136px;
  2263. height: 136px;
  2264. background-image: url(../img/defult-mid.png);
  2265. }
  2266. .folder {
  2267. background: url("../img/bgtupian.png") no-repeat 0px 0;
  2268. }
  2269. .folder1 {
  2270. background: url("../img/bgtupian.png") no-repeat 0px 0;
  2271. }
  2272. .folder-mid{
  2273. background: url("../img/bgtupian.png") no-repeat -11px -200px;
  2274. }
  2275. .folder2 {
  2276. background: url("../img/bgtupian.png") no-repeat -180px 0;
  2277. }
  2278. .folder2-mid {
  2279. background: url("../img/bgtupian.png") no-repeat -147px -200px;
  2280. }
  2281. .foldernew-mid{
  2282. background: url("../img/folder.png") no-repeat 0px 0px;
  2283. }
  2284. .doc,
  2285. .docx,
  2286. .word {
  2287. background: url("../img/bgtupian.png") no-repeat -360px 0;
  2288. }
  2289. .doc-mid,
  2290. .docx-mid,
  2291. .word-mid {
  2292. background: url("../img/bgtupian.png") no-repeat -283px -200px;
  2293. }
  2294. .xls,
  2295. .xlsx,
  2296. .excel {
  2297. background: url("../img/bgtupian.png") no-repeat -540px 0;
  2298. }
  2299. /* 开始 */
  2300. .xls-mid,
  2301. .xlsx-mid,
  2302. .excel-mid {
  2303. background: url("../img/bgtupian.png") no-repeat -419px -200px;
  2304. }
  2305. .ppt,
  2306. .pptx {
  2307. background: url("../img/bgtupian.png") no-repeat -720px 0;
  2308. }
  2309. .ppt-mid,
  2310. .pptx-mid {
  2311. background: url("../img/bgtupian.png") no-repeat -555px -200px;
  2312. }
  2313. .pdf {
  2314. background: url("../img/bgtupian.png") no-repeat -900px 0
  2315. }
  2316. .pdf-mid {
  2317. background: url("../img/bgtupian.png") no-repeat -691px -200px
  2318. }
  2319. .jpg,
  2320. .jpeg,
  2321. .png,
  2322. .bmp,
  2323. .gif {
  2324. background: url("../img/bgtupian.png") no-repeat -1080px 0;
  2325. }
  2326. .jpg-mid,
  2327. .jpeg-mid,
  2328. .png-mid,
  2329. .bmp-mid,
  2330. .gif-mid {
  2331. background: url("../img/bgtupian.png") no-repeat -827px -200px;
  2332. }
  2333. .txt {
  2334. background: url("../img/bgtupian.png") no-repeat -1260px 0;
  2335. }
  2336. .txt-mid {
  2337. background: url("../img/bgtupian.png") no-repeat -963px -200px;
  2338. }
  2339. .zip{
  2340. background: url("../img/bgtupian.png") no-repeat -1620px 0;
  2341. }
  2342. .zip-mid{
  2343. background: url("../img/bgtupian.png") no-repeat -1235px -200px;
  2344. }
  2345. .skp{
  2346. background: url("../img/bgtupian.png") no-repeat -1800px 0;
  2347. }
  2348. .skp-mid{
  2349. background: url("../img/bgtupian.png") no-repeat -1371px -200px;
  2350. }
  2351. .rvt{
  2352. background: url("../img/bgtupian.png") no-repeat -1980px 0;
  2353. }
  2354. .rvt-mid{
  2355. background: url("../img/bgtupian.png") no-repeat -1507px -200px;
  2356. }
  2357. .rar{
  2358. background: url("../img/bgtupian.png") no-repeat -2160px 0;
  2359. }
  2360. .rar-mid{
  2361. background: url("../img/bgtupian.png") no-repeat -1642px -200px;
  2362. }
  2363. .nwc{
  2364. background: url("../img/bgtupian.png") no-repeat -2340px 0;
  2365. }
  2366. .nwc-mid{
  2367. background: url("../img/bgtupian.png") no-repeat -1779px -200px;
  2368. }
  2369. .max{
  2370. background: url("../img/bgtupian.png") no-repeat -2520px 0;
  2371. }
  2372. .max-mid{
  2373. background: url("../img/bgtupian.png") no-repeat -1915px -200px;
  2374. }
  2375. .dxf{
  2376. background: url("../img/bgtupian.png") no-repeat -2700px 0;
  2377. }
  2378. .dxf-mid{
  2379. background: url("../img/bgtupian.png") no-repeat -2051px -200px;
  2380. }
  2381. .dwg{
  2382. background: url("../img/bgtupian.png") no-repeat -2880px 0;
  2383. }
  2384. .dwg-mid{
  2385. background: url("../img/bgtupian.png") no-repeat -2183px -200px;
  2386. }
  2387. /* yun icon end */
  2388. .svfzip {
  2389. background: url("../img/AppHeadImg/appImg_com.png") 0 -1438px no-repeat;
  2390. }
  2391. .svfzip-mid {
  2392. background: url("../img/AppHeadImg/appImg_com.png") -178px -1414px no-repeat;
  2393. }
  2394. .map {
  2395. background: url("../img/AppHeadImg/appImg_com.png") 0 -1259px no-repeat;
  2396. }
  2397. .map-mid {
  2398. background: url("../img/AppHeadImg/appImg_com.png") -180px -1278px no-repeat;
  2399. }
  2400. .supermap{
  2401. background: url("../img/AppHeadImg/appImg_com.png") 0 -1620px no-repeat;
  2402. }
  2403. .supermap-mid{
  2404. background: url("../img/AppHeadImg/appImg_com.png") -180px -1550px no-repeat;
  2405. }
  2406. .showAllAppProject {
  2407. height: auto;
  2408. }
  2409. .bianju_item_fr2 {
  2410. margin-right: 0;
  2411. }
  2412. .yiyun_header .flex_right_pain_head {
  2413. line-height: 22px;
  2414. }
  2415. .yiyun_header .flex_right_pain_body {
  2416. line-height: 22px;
  2417. }
  2418. .user_Img {
  2419. width: 100px;
  2420. height: 100px;
  2421. margin: 20px auto 8px auto;
  2422. background-color: #DCDCDC;
  2423. border-radius: 50px;
  2424. overflow: hidden;
  2425. display: flex;
  2426. justify-content: center;
  2427. align-items: center;
  2428. }
  2429. .self_Inputwork {
  2430. margin: 10px 0;
  2431. font-weight: bold;
  2432. font-size: 16px;
  2433. height: 30px;
  2434. line-height: 30px;
  2435. border-radius: 15px;
  2436. line-height: 30px;
  2437. }
  2438. .addself_workbtn {
  2439. width: 382px;
  2440. height: 30px;
  2441. border-radius: 21px;
  2442. font-size: 14px;
  2443. color: #000;
  2444. background-color: rgba(227, 227, 227, 1);
  2445. border: 0.5px solid rgba(212, 212, 212, 1);
  2446. transition: all ease 0.5s;
  2447. }
  2448. .webuploader-pick {
  2449. width: 382px;
  2450. height: 30px;
  2451. padding: 0 !important;
  2452. line-height: 30px;
  2453. border-radius: 21px !important;
  2454. font-size: 13px;
  2455. color: #000 !important;
  2456. background-color: rgba(227, 227, 227, 1) !important;
  2457. border: 0.5px solid rgba(212, 212, 212, 1) !important;
  2458. transition: all ease 0.5s;
  2459. }
  2460. .webuploader-pick:hover {
  2461. background: #9c23ff !important;
  2462. border-color: #9c23ff !important;
  2463. color: #fff !important;
  2464. }
  2465. .user_Img img {
  2466. max-width: 100px;
  2467. max-height: 100px;
  2468. cursor: pointer;
  2469. }
  2470. .userNamelabel {
  2471. text-align: center;
  2472. font-size: 18px;
  2473. margin-bottom: 19px;
  2474. }
  2475. .rightLabel {
  2476. line-height: 42px;
  2477. cursor: pointer;
  2478. color: rgba(235, 235, 242, 1);
  2479. font-size: 12px;
  2480. }
  2481. .rightLabelDelete {
  2482. margin-right: 10px;
  2483. }
  2484. .touxiangBox {
  2485. width: 120px;
  2486. margin: 0 auto;
  2487. }
  2488. .editImgHead .el-dialog {
  2489. width: 30%;
  2490. }
  2491. .floderselect.el-select {
  2492. width: 100%;
  2493. }
  2494. .right-list_btn {
  2495. float: right;
  2496. color: #9b9b9b;
  2497. line-height: 44px;
  2498. font-size: 26px;
  2499. margin-right: -6px;
  2500. }
  2501. #upload_btn {
  2502. opacity: 0;
  2503. display: block;
  2504. width: 1px;
  2505. overflow: hidden;
  2506. margin-right: 0;
  2507. }
  2508. .left-list_btn {
  2509. float: left;
  2510. color: #9b9b9b;
  2511. line-height: 24px;
  2512. font-size: 30px;
  2513. margin-right: 0;
  2514. cursor: pointer;
  2515. }
  2516. .yiyun_app_info_box li:hover {
  2517. background-color: #f2f2f2;
  2518. cursor: pointer;
  2519. }
  2520. .right-list_beizhu {
  2521. font-size: 14px;
  2522. color: #9b9b9b;
  2523. line-height: 44px;
  2524. float: right;
  2525. }
  2526. .biaotititle {
  2527. width: 284px;
  2528. text-align: center;
  2529. margin: 0 auto;
  2530. }
  2531. .downtext_beizhu {
  2532. font-size: 14px;
  2533. color: #9b9b9b;
  2534. line-height: 20px;
  2535. margin-top: 10px;
  2536. padding: 0 16px;
  2537. }
  2538. .eidtimg {
  2539. position: relative;
  2540. }
  2541. .eidtimg>div {
  2542. position: absolute;
  2543. width: 100px;
  2544. height: 100px;
  2545. text-align: center;
  2546. line-height: 100px;
  2547. background-color: rgba(167, 168, 183, 0.7);
  2548. color: #fff;
  2549. transition: all ease 0.5s;
  2550. top: 0;
  2551. left: 0;
  2552. display: none;
  2553. cursor: pointer;
  2554. }
  2555. .eidtimg:hover>div {
  2556. display: block;
  2557. }
  2558. .yiyunfile-Uploader .webuploader-pick {
  2559. border: 0 !important;
  2560. border-radius: 4px !important;
  2561. font-size: 14px;
  2562. width: 80px;
  2563. height: 28px;
  2564. line-height: 28px;
  2565. background: #fff;
  2566. color: #323232;
  2567. cursor: pointer;
  2568. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  2569. }
  2570. .baisebtn.yiyunfile-Uploader .webuploader-pick{
  2571. background: #e3e3e3!important;
  2572. }
  2573. .right-list_btn {
  2574. float: right;
  2575. color: #9b9b9b;
  2576. line-height: 44px;
  2577. font-size: 22px;
  2578. margin-right: 0;
  2579. }
  2580. #upload_btn {
  2581. opacity: 0;
  2582. display: block;
  2583. width: 1px;
  2584. overflow: hidden;
  2585. margin-right: 0;
  2586. }
  2587. .yiyun_app_info_box li:hover {
  2588. background-color: #f2f2f2;
  2589. cursor: pointer;
  2590. }
  2591. .right-list_beizhu {
  2592. font-size: 14px;
  2593. color: #9b9b9b;
  2594. line-height: 44px;
  2595. float: right;
  2596. }
  2597. .downtext_beizhu {
  2598. font-size: 14px;
  2599. color: #9b9b9b;
  2600. line-height: 20px;
  2601. margin-top: 10px;
  2602. }
  2603. .eidtimg {
  2604. position: relative;
  2605. }
  2606. .eidtimg>div {
  2607. position: absolute;
  2608. width: 100px;
  2609. height: 100px;
  2610. text-align: center;
  2611. line-height: 100px;
  2612. background-color: rgba(167, 168, 183, 0.7);
  2613. color: #fff;
  2614. transition: all ease 0.5s;
  2615. top: 0;
  2616. left: 0;
  2617. display: none;
  2618. cursor: pointer;
  2619. }
  2620. .eidtimg:hover>div {
  2621. display: block;
  2622. }
  2623. .cloudpan_headbox .flex_right_pain_head {
  2624. color: #000
  2625. }
  2626. .col-12-yiyun {
  2627. width: 100%;
  2628. }
  2629. .yiyun_text-title a {
  2630. text-decoration: none;
  2631. color: #A7A8B7;
  2632. float: left;
  2633. }
  2634. .yiyun_text-title>a:last-child a,
  2635. .yiyun_text-title a:hover {
  2636. color: #fff;
  2637. }
  2638. .mr-10 {
  2639. margin-right: 10px;
  2640. }
  2641. .mr-5 {
  2642. margin-right: 5px;
  2643. }
  2644. .user_info_companyName {
  2645. font-size: 12px;
  2646. color: #cccdd7;
  2647. margin: 0 6px 0 14px;
  2648. display: inline-block;
  2649. width: 90px;
  2650. text-overflow: ellipsis;
  2651. word-break: keep-all;
  2652. overflow: hidden;
  2653. }
  2654. .imgHead {
  2655. max-width: 100%;
  2656. max-height: 100%;
  2657. /* transform: scale(1.5); */
  2658. }
  2659. .v-modal{
  2660. width: 0;
  2661. height: 0
  2662. }
  2663. /*探索者企业后台 2019年3月21日-添加-开始*/
  2664. .yiyun_headerfl.houtai,
  2665. .yiyun_headerfr.houtai {
  2666. width: 19%;
  2667. margin-right: 0;
  2668. }
  2669. .yiyun_headerce.houtai {
  2670. width: 50%;
  2671. }
  2672. .yiyun_headerfr.houtai a {
  2673. float: right;
  2674. }
  2675. .Nowactive {
  2676. border-bottom: 2px solid #8C00FF;
  2677. }
  2678. .fl_navBox {
  2679. width: 400px;
  2680. height: calc(100vh - 156px);
  2681. float: left;
  2682. }
  2683. .fl_contentBox {
  2684. width: calc(100vw - 540px);
  2685. height: calc(100vh - 156px);
  2686. float: right;
  2687. overflow: initial;
  2688. }
  2689. .adminnavBox {
  2690. margin-bottom: 10px;
  2691. height: 37px;
  2692. overflow: hidden;
  2693. margin-top: 23px;
  2694. cursor: pointer;
  2695. }
  2696. .adminnavBox h3 {
  2697. display: inline-block;
  2698. color: rgba(0, 0, 0, 1);
  2699. font-size: 24px;
  2700. font-weight: 400;
  2701. }
  2702. .adminnavBox h3 .el-icon-arrow-left{
  2703. font-size: 30px;
  2704. position: relative;
  2705. top: 3px;
  2706. left: -6px;
  2707. margin-right: -3px;
  2708. }
  2709. .admin_treeBox,
  2710. .admin_contentBox_body {
  2711. width: 100%;
  2712. height: calc(100vh - 145px);
  2713. border-radius: 10px;
  2714. overflow-y: auto;
  2715. }
  2716. .admin_treeBox {
  2717. border-radius: 10px;
  2718. background-color: rgba(98, 98, 111, 1);
  2719. box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  2720. }
  2721. .admin_contentBox_body {
  2722. background-color: rgba(255, 255, 255, 1);
  2723. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  2724. }
  2725. .adminnavBox span {
  2726. color: rgba(142, 144, 159, 1);
  2727. font-size: 22px;
  2728. }
  2729. .admintitle {
  2730. color: rgba(0, 0, 0, 1);
  2731. font-size: 17px;
  2732. display: inline-block;
  2733. font-weight: 400;
  2734. }
  2735. .timelabel{
  2736. font-size: 12px;
  2737. color: #999;
  2738. line-height: 21px;
  2739. }
  2740. .border-line {
  2741. width: 100%;
  2742. height: 1px;
  2743. background-color: rgba(204, 205, 215, 1);
  2744. margin: 5px 0;
  2745. }
  2746. .border-line_light {
  2747. width: 100%;
  2748. height: 1px;
  2749. background-color: rgba(216, 216, 216, 1);
  2750. margin: 5px 0;
  2751. }
  2752. .topOption .el-button--text {
  2753. color: #000;
  2754. font-size: 13px;
  2755. }
  2756. .el-button--text:focus,
  2757. .el-button--text:hover {
  2758. color: #8c00ff;
  2759. border:1px solid transparent
  2760. }
  2761. .el-table td,
  2762. .el-table th {
  2763. padding: 7px 0;
  2764. }
  2765. .el-table {
  2766. font-size: 12px;
  2767. }
  2768. .toxiang_box {
  2769. width: 32px;
  2770. height: 32px;
  2771. background-color: #ccc;
  2772. border-radius: 15px;
  2773. overflow: hidden;
  2774. }
  2775. .admin_contentBox_bodyPain {
  2776. margin: 10px;
  2777. }
  2778. .el-table th {
  2779. height: 27px;
  2780. background-color: #EBEBF2;
  2781. }
  2782. .el-button--text {
  2783. color: #62626f;
  2784. font-size: 12px;
  2785. }
  2786. .large_headImg {
  2787. width: 50px;
  2788. height: 50px;
  2789. border-radius: 25px;
  2790. background-color: #f2f2f2;
  2791. float: left;
  2792. overflow: hidden;
  2793. }
  2794. .uploadImg .webuploader-pick {
  2795. width: 120px;
  2796. margin-left: 10px;
  2797. top: 5px;
  2798. margin-top: 9px;
  2799. position: relative;
  2800. display: inline-block;
  2801. cursor: pointer;
  2802. background: #ffffff !important;
  2803. padding: 6px 13px;
  2804. color: #fff;
  2805. text-align: center;
  2806. border-radius: 0px;
  2807. overflow: hidden;
  2808. border: 1px solid #c6e2ff;
  2809. margin-top: 3px;
  2810. }
  2811. .hei40 .webuploader-pick {
  2812. width: 100%;
  2813. border-radius: 4px !important;
  2814. font-size: 13px;
  2815. background-color: rgb(255, 255, 255) !important;
  2816. border: 0.5px solid rgb(255, 255, 255) !important;
  2817. transition: all ease 0.5s;
  2818. }
  2819. .hei40:hover .webuploader-pick{
  2820. color: #8c00ff!important;
  2821. }
  2822. .el-input__inner {
  2823. height: 40px;
  2824. line-height: 40px;
  2825. background-color: #f4f4f6;
  2826. border: 0;
  2827. }
  2828. .yiyunTable_list_item>h3 {
  2829. font-size: 16px;
  2830. font-weight: 600;
  2831. margin-top: 4px;
  2832. }
  2833. /*树*/
  2834. .navtree .el-tree {
  2835. position: relative;
  2836. cursor: default;
  2837. background: transparent;
  2838. color: #d0d0d0;
  2839. font-size: 12px;
  2840. line-height: 30px;
  2841. }
  2842. .el-icon-floder {
  2843. background: url(../img/icon_file.png) 0 0;
  2844. width: 16px;
  2845. height: 16px;
  2846. margin-right: 5px;
  2847. position: relative;
  2848. top: 3px;
  2849. }
  2850. .is-current {
  2851. background-color: transparent;
  2852. }
  2853. /*探索者企业后台 2019年3月21日-添加-结束*/
  2854. .easycloudTreeleafe {
  2855. display: block;
  2856. float: left;
  2857. width: 100%;
  2858. }
  2859. .easycloudTreeleafe i {
  2860. display: block;
  2861. float: left;
  2862. margin-top: 12px;
  2863. }
  2864. .custom-tree-node {
  2865. width: 100%;
  2866. }
  2867. .el-tree-node:focus>.el-tree-node__content {
  2868. background-color: #868694;
  2869. }
  2870. .treeeditInput {
  2871. width: 190px;
  2872. }
  2873. .el-input--mini .el-input__inner {
  2874. height: 20px;
  2875. line-height: 20px;
  2876. margin-top: 12px;
  2877. }
  2878. .yiyunnodelabel {
  2879. line-height: 48px;
  2880. }
  2881. .treeeditInputChild.el-input {
  2882. width: 100px;
  2883. }
  2884. .perentbtn.el-button {
  2885. padding: 2px 4px;
  2886. display: inline-block;
  2887. margin-top: -3px;
  2888. position: relative;
  2889. top: -10px;
  2890. }
  2891. .perentbtn2 {
  2892. padding: 2px 4px;
  2893. display: inline-block;
  2894. position: relative;
  2895. top: 5px;
  2896. }
  2897. .morebtn {
  2898. color: #fff;
  2899. transform: rotate(90deg);
  2900. margin-right: 10px;
  2901. }
  2902. .morebtn:hover {
  2903. color: #8C00FF;
  2904. }
  2905. .el-tree-node__content .custom-tree-node:hover >.rightdrop{
  2906. opacity: 1;
  2907. transition: all ease 0.5s;
  2908. }
  2909. .rightdrop{
  2910. opacity: 0;
  2911. }
  2912. .toptree {
  2913. margin-top: 10px;
  2914. }
  2915. .el-tree-node__content:hover {
  2916. background-color: #23232B;
  2917. }
  2918. .nohoverbg .el-tree-node__content:hover {
  2919. background-color: #f2f2f2;
  2920. }
  2921. .noborder .el-form-item__label {
  2922. border: 0;
  2923. }
  2924. .DivInputHeight .el-cascader {
  2925. width: 100%;
  2926. }
  2927. .el-date-editor.el-input,
  2928. .el-date-editor.el-input__inner {
  2929. width: 100%;
  2930. }
  2931. .el-select {
  2932. width: 100%;
  2933. }
  2934. .upHeadImg .webuploader-pick {
  2935. margin: 0 auto;
  2936. display: block;
  2937. }
  2938. .el-dialog__header {
  2939. padding: 10px 20px 10px;
  2940. }
  2941. .ft26 {
  2942. font-size: 26px;
  2943. color: #8c00ff;
  2944. }
  2945. .labelinputbefore .el-input__inner {
  2946. color: #ffffff;
  2947. font-size: 15px;
  2948. line-height: 44px;
  2949. height: 44px;
  2950. border-radius: 5px;
  2951. background-color: rgba(50, 50, 60, 1);
  2952. }
  2953. /*2019-04-04 总后台--客户列表*/
  2954. .mr-20 {
  2955. margin-right: 20px;
  2956. }
  2957. .el-slider__runway {
  2958. overflow: unset;
  2959. }
  2960. .el-slider__button {
  2961. width: 36px;
  2962. height: 18px;
  2963. border: 0px solid #409EFF;
  2964. background-color: #fff;
  2965. border-radius: 4px;
  2966. background: url(../img/gundong.png) 0 0 no-repeat;
  2967. }
  2968. .el-slider__button.dragging,
  2969. .el-slider__button.hover,
  2970. .el-slider__button:hover {
  2971. -webkit-transform: scale(1);
  2972. transform: scale(1);
  2973. }
  2974. .el-slider__bar {
  2975. background-color: #8c00ff;
  2976. }
  2977. .el-switch.is-checked .el-switch__core {
  2978. border-color: #8c00ff;
  2979. background-color: #8c00ff;
  2980. }
  2981. .user_Imgsize_largerbox {
  2982. width: 150px;
  2983. height: 130px;
  2984. }
  2985. .user_Imgsize_larger {
  2986. width: 150px;
  2987. height: 150px;
  2988. border-radius: 50%;
  2989. margin-top: 40px;
  2990. }
  2991. .user_Imgsize_larger img {
  2992. width: 100%;
  2993. height: 100%;
  2994. }
  2995. .weizhiImghead {
  2996. margin: 10px auto;
  2997. position: relative;
  2998. top: -50px;
  2999. }
  3000. .navtree {
  3001. position: relative;
  3002. }
  3003. .bottombtn {
  3004. position: absolute;
  3005. width: 94%;
  3006. font-size: 16px;
  3007. left: 3%;
  3008. line-height: 36px;
  3009. bottom: 10px;
  3010. text-align: center;
  3011. background: -webkit-linear-gradient(#B0B0B7, #E1E2E8);
  3012. cursor: pointer;
  3013. transition: ease all 0.5s;
  3014. height: 36px;
  3015. border-radius: 8px;
  3016. box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  3017. }
  3018. .bottombtn:hover {
  3019. background: -webkit-linear-gradient(#E1E2E8, #B0B0B7);
  3020. }
  3021. .editnone .el-form-item__label {
  3022. border-bottom: 0px solid #62626f;
  3023. color: #62626f
  3024. }
  3025. .editnone .el-form-item__content {
  3026. line-height: 22px;
  3027. position: relative;
  3028. font-size: 14px;
  3029. }
  3030. .yiyun_wenjian_list {
  3031. position: relative;
  3032. cursor: pointer;
  3033. }
  3034. .yiyun_wenjian_list:hover .downloadBtn_yiyun {
  3035. display: block;
  3036. color: #676580;
  3037. right: -3px;
  3038. }
  3039. .locationbtn .el-input__inner {
  3040. border-radius: 5px 0 0 5px;
  3041. }
  3042. .nullproduct {
  3043. margin: 10% auto;
  3044. text-align: center;
  3045. line-height: 50px;
  3046. display: flex;
  3047. flex-direction: column;
  3048. justify-content: center;
  3049. align-items: center;
  3050. }
  3051. .noprotext{
  3052. color:#8f8f8f;
  3053. font-size: 16px
  3054. }
  3055. .newcreat {
  3056. color: #8b35f0;
  3057. }
  3058. .deleteBtnFlie {
  3059. font-size: 26px;
  3060. position: absolute;
  3061. right: 12px;
  3062. top: 10px;
  3063. color: #fff;
  3064. display: none;
  3065. }
  3066. .yupan_card_box ul li:hover>.deleteBtnFlie {
  3067. display: block;
  3068. }
  3069. .pageImgBox {
  3070. background-color: rgb(50, 50, 60);
  3071. border: 1px solid rgba(151, 151, 151, 1);
  3072. margin-bottom: 14px;
  3073. text-align: center;
  3074. width: 400px;
  3075. height: 245px;
  3076. border-radius: 10px;
  3077. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  3078. margin-left: 100px;
  3079. position: relative;
  3080. overflow: hidden;
  3081. border: 0;
  3082. display: inline-grid;
  3083. }
  3084. .pageImgBox > img {
  3085. min-width: 400px;
  3086. min-height: 245px;
  3087. max-width: 120%;
  3088. max-height: 120%;
  3089. transform: scale(1);
  3090. cursor: pointer;
  3091. vertical-align: middle;
  3092. margin: 0 auto;
  3093. }
  3094. .fandatupian{
  3095. max-width: 100%;
  3096. /* max-height: 100%; */
  3097. transform: scale(1.1);
  3098. cursor: pointer;
  3099. margin: 0 auto;
  3100. display: block;
  3101. position: inherit!important;
  3102. min-height: 245px;
  3103. /* min-width: 100%; */
  3104. }
  3105. .listUpdateBtn{
  3106. position: absolute;
  3107. bottom: 4px;
  3108. left: 10px;
  3109. }
  3110. .listUpdateBtn .webuploader-pick{
  3111. width: 80px;
  3112. height: 20px;
  3113. border-radius: 4px !important;
  3114. border: 0.5px solid rgba(227, 227, 227, 1);
  3115. line-height: 20px;
  3116. }
  3117. .mt-29 {
  3118. margin-top: 29px;
  3119. }
  3120. .mt-20 {
  3121. margin-top: 20px;
  3122. }
  3123. .mt-66{
  3124. margin-top: 66px;
  3125. }
  3126. .mt-96{
  3127. margin-top: 96px;
  3128. }
  3129. .selfradio .el-radio__label {
  3130. font-size: 16px;
  3131. }
  3132. .selfradio .el-radio__inner {
  3133. border: 1px solid #ffffff;
  3134. width: 20px;
  3135. height: 20px;
  3136. background-color: transparent;
  3137. }
  3138. .selfradio .el-radio__inner::after {
  3139. width: 0;
  3140. }
  3141. .forminfocom{
  3142. color: #fff;
  3143. }
  3144. .faceBtn{
  3145. color: rgba(204, 205, 215, 1);
  3146. font-size: 11px;
  3147. position: absolute;
  3148. bottom: 11px;
  3149. left: 106px;
  3150. cursor: pointer;
  3151. }
  3152. .selfradio .el-radio__input.is-checked .el-radio__inner {
  3153. border-color: #ffffff;
  3154. background: #8c00ff;
  3155. }
  3156. .selfradio .el-radio__input.is-checked+.el-radio__label {
  3157. color: #ffffff;
  3158. }
  3159. .yiyun_app_info_box li>span.fl {
  3160. font-family: PingFang SC;
  3161. font-weight: 400;
  3162. font-size: 15px;
  3163. }
  3164. .yiyun_headerce.houtai.width6 {
  3165. width: 60%;
  3166. }
  3167. .el-tree-node__content {
  3168. height: 28px;
  3169. }
  3170. .user_info_item span .el-checkbox__inner {
  3171. top: -22px;
  3172. }
  3173. .el-collapse-item__content .user_info_item .el-checkbox.checkBoxCol {
  3174. width: 97%;
  3175. }
  3176. .el-checkbox__label {
  3177. width: 100%
  3178. }
  3179. .bottombtnitem {
  3180. position: absolute;
  3181. bottom: 6px;
  3182. width: 100%;
  3183. }
  3184. .bottombtnitem .el-button {
  3185. width: 100%
  3186. }
  3187. .bottombtnitemlonBtn{
  3188. margin: 0px 16px;
  3189. }
  3190. .navtree .el-tree-node__content:hover,.navtree .el-tree-node__content:focus,.el-tree-node:focus>.el-tree-node__content {
  3191. /* background-color: #8E909F; */
  3192. background-color: rgba(141, 143, 159, 0.14);
  3193. border-radius: 5px;
  3194. }
  3195. .navtreebox {
  3196. height: calc(100vh - 242px);
  3197. margin: 0 10px;
  3198. overflow-y: auto;
  3199. }
  3200. .navtreebox2 {
  3201. height: calc(100vh - 196px);
  3202. }
  3203. .UserEditinfoBox .el-form-item__label {
  3204. font-size: 14px;
  3205. }
  3206. .el-tree-node.is-expanded.is-focusable:focus {
  3207. outline: -webkit-focus-ring-color auto 5px;
  3208. outline: none;
  3209. border-radius: 5px;
  3210. }
  3211. .nullclass {
  3212. font-size: 17px !important;
  3213. color: #000 !important;
  3214. }
  3215. .nullclass:hover {
  3216. color: #000 !important;
  3217. }
  3218. .huiclass {
  3219. color: #adadad !important;
  3220. }
  3221. .huiclass:hover {
  3222. color: #adadad !important;
  3223. }
  3224. .graybtn,.graybtn:hover {
  3225. color: #acacac!important;
  3226. height: 20px;
  3227. background-color: rgba(227, 227, 227, 1)!important;
  3228. border: 0.5px solid rgba(212, 212, 212, 1);
  3229. }
  3230. /*新登录页面*/
  3231. .loginbox_warp {
  3232. height: calc(100vh);
  3233. width: calc(100vw);
  3234. overflow: hidden;
  3235. }
  3236. .loginbox {
  3237. width: 355px;
  3238. height: 322px;
  3239. border-radius: 10px;
  3240. position: fixed;
  3241. bottom: 100px;
  3242. left: 100px;
  3243. z-index: 4;
  3244. }
  3245. .login_title {
  3246. color: rgba(140, 0, 255, 1);
  3247. font-size: 28px;
  3248. margin: 57px auto;
  3249. text-align: center;
  3250. }
  3251. .formlogin{
  3252. overflow: hidden;
  3253. }
  3254. .loginlabel {
  3255. line-height: 32px;
  3256. margin-left: 0px;
  3257. color: rgba(255, 255, 255, 1);
  3258. font-size: 32px;
  3259. margin-bottom: 21px;
  3260. display: block;
  3261. position: relative;
  3262. }
  3263. .loginlabel_resit {
  3264. line-height: 14px;
  3265. color: rgba(140, 0, 255, 1);
  3266. font-size: 11px;
  3267. line-height: 32px;
  3268. margin-left: 20px;
  3269. text-decoration: none;
  3270. position: absolute;
  3271. right: 16px;
  3272. top: 16px;
  3273. }
  3274. .combackreturn{
  3275. font-size: 30px;
  3276. cursor: pointer;
  3277. position: absolute;
  3278. left: -28px;
  3279. }
  3280. .login_input {
  3281. display: block;
  3282. font-size: 15px;
  3283. color: #000;
  3284. width: 355px;
  3285. height: 44px;
  3286. background-color: rgba(244, 244, 244, 1);
  3287. border: 0;
  3288. margin: 10px auto;
  3289. border-radius: 4px;
  3290. text-indent: 16px;
  3291. }
  3292. .login_input::-webkit-input-placeholder {
  3293. /* WebKit browsers */
  3294. color:#888;
  3295. }
  3296. .login_input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  3297. color:#888;
  3298. }
  3299. .login_input::-moz-placeholder { /* Mozilla Firefox 19+ */
  3300. color:#888;
  3301. }
  3302. .login_input:-ms-input-placeholder { /* Internet Explorer 10+ */
  3303. color:#888;
  3304. }
  3305. .login_line {
  3306. height: 1px;
  3307. background-color: #D8D8D8
  3308. }
  3309. .login_formBox {
  3310. height: 190px;
  3311. }
  3312. .formlogin_item{
  3313. overflow: hidden;
  3314. position: relative;
  3315. }
  3316. .login_btn {
  3317. display: block;
  3318. border: 0;
  3319. color: #fff;
  3320. cursor: pointer;
  3321. width: 178px;
  3322. height: 30px;
  3323. border-radius: 8px;
  3324. background-color: rgba(140, 0, 255, 1);
  3325. box-shadow: 0 4px 6px #1d1d2f;
  3326. margin-top: 4px;
  3327. font-size: 16px;
  3328. line-height: 30px;
  3329. margin-top: 28px;
  3330. }
  3331. .login_btn_defualt {
  3332. display: block;
  3333. cursor: pointer;
  3334. color: rgba(255, 255, 255, 1);
  3335. font-size: 16px;
  3336. margin-top: 34px;
  3337. }
  3338. .loginbox .el-checkbox__input.is-checked+.el-checkbox__label{
  3339. color: #fff;
  3340. }
  3341. .loginright_btn {
  3342. width: 98px;
  3343. height: 36px;
  3344. border-radius: 4px;
  3345. background-color: rgba(140, 0, 255, 1);
  3346. color: #fff;
  3347. position: absolute;
  3348. border: 0;
  3349. right: 4px;
  3350. top: 14px;
  3351. text-align: center;
  3352. text-decoration: none;
  3353. line-height: 36px;
  3354. font-size: 13px;
  3355. }
  3356. .rightBtn_input {
  3357. position: relative;
  3358. }
  3359. .mr-l {
  3360. padding-left: 0;
  3361. margin-left: 10;
  3362. margin-top: 0;
  3363. }
  3364. .bg_w .el-input__inner {
  3365. background-color: #32323c;
  3366. border-radius: 5px;
  3367. height: 44px;
  3368. line-height: 44px;
  3369. color: #fff;
  3370. border-bottom: 0;
  3371. }
  3372. .yiyunlargeItem .el-select .el-input .el-select__caret{
  3373. font-size: 26px;
  3374. }
  3375. .yiyunTable_list_item .UserEditinfoBox .el-form-item__label {
  3376. color: #606266;
  3377. }
  3378. .yiyun_wenjian_list:hover>.defultImage {
  3379. background-color: #d8d8d8;
  3380. transition: all ease 0.5s;
  3381. cursor: pointer;
  3382. border-radius: 10px;
  3383. }
  3384. .yiyunTable_list{
  3385. clear: both;
  3386. }
  3387. .el-input_mini .el-input__inner {
  3388. border: 1px solid transparent;
  3389. }
  3390. .el-input_mini .el-input__inner:hover {
  3391. border: 1px solid #8c00ff;
  3392. transition: ease all 0.5s;
  3393. }
  3394. /* 右键菜单 */
  3395. .menu__item {
  3396. display: block;
  3397. line-height: 20px;
  3398. text-align: center;
  3399. margin:10px;
  3400. cursor: default;
  3401. }
  3402. .menu__item:hover{
  3403. color: #66B1FF;
  3404. }
  3405. .automenu{
  3406. height: auto;
  3407. width: auto;
  3408. position: absolute;
  3409. font-size: 14px;
  3410. text-align: left;
  3411. border-radius: 10px;
  3412. border: 1px solid #c1c1c1;
  3413. background-color: #ffffff;
  3414. }
  3415. #tableMenu{
  3416. z-index: 9;
  3417. }
  3418. .Cicon{
  3419. font-size: 28px;
  3420. line-height: 30px;
  3421. color: #A7A8B7;
  3422. transition: ease all 0.5s;
  3423. cursor: pointer;
  3424. -webkit-font-smoothing:antialiased;/*设置字体的光滑度属性,也就是CSS3用于webkit引擎(chrome)
  3425. 设置字体抗锯齿属性*/
  3426. /*-webkit-text-stroke-width:.2px;设置文字边框*/
  3427. -moz-osx-font-smoothing:grayscale;/*该属性是为了让字体显示的更清晰的作用*/
  3428. }
  3429. .Cicon:hover{
  3430. color: #9c22ff
  3431. }
  3432. .text_wirte {
  3433. color: #fff;
  3434. }
  3435. .AnimatedRightIn{
  3436. right: 30px;
  3437. }
  3438. .flex_right_pain_head{
  3439. overflow: hidden;
  3440. height: 59px;
  3441. }
  3442. .flex_right_pain_body{
  3443. padding: 0 0px;
  3444. height: calc(100vh - 210px);
  3445. overflow-y: auto;
  3446. }
  3447. .tianjiaxiezuorenBox div{
  3448. overflow: hidden;
  3449. }
  3450. .iconsize_mini{
  3451. font-size: 24px;
  3452. }
  3453. .el-input--prefix .el-input__inner{
  3454. border:1px solid transparent;
  3455. transition: ease all 0.5s;
  3456. }
  3457. .el-input--prefix .el-input__inner:focus{
  3458. border:1px solid #9c22ff;
  3459. }
  3460. .admininput_search{
  3461. height: 30px;
  3462. overflow: hidden;
  3463. margin: 10px;
  3464. }
  3465. .yiyun_headerfr>a{
  3466. font-size: 17px;
  3467. }
  3468. /* .navtreebox .el-tree-node__content:hover {
  3469. background-color: #8E909F;
  3470. border-radius: 5px;
  3471. } */
  3472. .el-switch__core:after {
  3473. position: absolute;
  3474. top: -6px;
  3475. left: -7px;
  3476. border-radius: 100%;
  3477. -webkit-transition: all .3s;
  3478. transition: all .3s;
  3479. width: 28px;
  3480. height: 28px;
  3481. background-color: #fff;
  3482. box-shadow: 0 3px 1px rgba(0,0,0,0.15);
  3483. border: 0.5px solid rgba(0, 0, 0, 0.04);
  3484. }
  3485. .el-switch__core {
  3486. margin-right: 8px;
  3487. border-radius: 10px;
  3488. background-color: rgba(216, 216, 216, 1);
  3489. box-shadow: undefined, inset 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  3490. }
  3491. .yiyun_app_info_box li > span{
  3492. margin-left: 0px;
  3493. }
  3494. .userlist_table.el-table td, .userlist_table.el-table th{
  3495. height: 40px;
  3496. padding: 0;
  3497. }
  3498. .userlist_table.el-table .el-checkbox__inner{
  3499. margin-top: 15px;
  3500. margin-left: -10px;
  3501. }
  3502. .userlist_table.el-table .el-checkbox {
  3503. height: 40px;
  3504. width: 40px;
  3505. }
  3506. .userlist_table.el-table .el-table-column--selection .cell, .el-table th div {
  3507. text-overflow: clip;
  3508. }
  3509. .el-checkbox__input.is-indeterminate .el-checkbox__inner::before {
  3510. top: 9px;
  3511. }
  3512. .img_bg{
  3513. background: url(../img/file_img_bg.png) 0 0 no-repeat;
  3514. }
  3515. .img_bg-mid{
  3516. background: url(../img/file_img_bg.png) 0 -154px no-repeat;
  3517. }
  3518. .checkboxlabelitem{
  3519. height: 40px;
  3520. overflow: hidden;
  3521. }
  3522. .user_info_item span .el-checkbox__inner {
  3523. top: -18px;
  3524. }
  3525. .el-form-item__content {
  3526. overflow: hidden;
  3527. }
  3528. .dialogcontentbody{
  3529. width: 100%;
  3530. }
  3531. .centerWarpDia{
  3532. width: 800px;
  3533. margin: 0 auto;
  3534. overflow: hidden;
  3535. }
  3536. .linescoll{
  3537. height: 1px;
  3538. background-color: #8E909F;
  3539. position: relative;
  3540. top: -12px;
  3541. }
  3542. .dialogcontentbodyrow::-webkit-scrollbar,.navtreebox::-webkit-scrollbar ,.dataLarge::-webkit-scrollbar{
  3543. width: 10px;
  3544. padding-right: 4px;
  3545. border-radius: 4px;
  3546. background-color: transparent;
  3547. /*其他样式,比如圆角等*/
  3548. }
  3549. /*滑块样式*/
  3550. .dialogcontentbodyrow::-webkit-scrollbar-thumb,.navtreebox::-webkit-scrollbar-thumb ,.dataLarge::-webkit-scrollbar-thumb{
  3551. -webkit-border-radius: 10px;
  3552. border-radius: 10px;
  3553. height: 10px;
  3554. background-color: #adadad;
  3555. }
  3556. /*当前窗口失去焦点时的滑块样式*/
  3557. .dialogcontentbodyrow::-webkit-scrollbar-thumb:window-inactive,.navtreebox::-webkit-scrollbar-thumb:window-inactive ,.dataLarge::-webkit-scrollbar-thumb:window-inactive{
  3558. background-color: #adadad;
  3559. }
  3560. .dialogcontentbodyrow{
  3561. margin: 0 10px;
  3562. height: calc(100vh - 144px);
  3563. overflow-y: auto;
  3564. }
  3565. .icon-icon_yunpan{
  3566. text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  3567. }
  3568. /* 探索者布局CSS样式 */
  3569. .yiyun-rows,.yiyun-col-12,.yiyun-col-11,.yiyun-col-10,.yiyun-col-9,.yiyun-col-8,.yiyun-col-7,.yiyun-col-6,.yiyun-col-5,.yiyun-col-4,.yiyun-col-3,.yiyun-col-2,.yiyun-col-1{
  3570. position: relative;
  3571. min-width: 1px;
  3572. display: block;
  3573. overflow: hidden;
  3574. }
  3575. .yiyun_row{
  3576. position: relative;
  3577. margin: 0 30px;
  3578. }
  3579. .yiyun-rows{
  3580. width: 100%;
  3581. }
  3582. .yiyun-col-12{
  3583. width: 100%;
  3584. }
  3585. .yiyun-col-11{
  3586. width: 91.66%;
  3587. float: left;
  3588. }
  3589. .yiyun-col-10{
  3590. width: 83.33%;
  3591. float: left;
  3592. }
  3593. .yiyun-col-9{
  3594. width: 75%;
  3595. float: left;
  3596. }
  3597. .yiyun-col-8{
  3598. width: 66.66%;
  3599. float: left;
  3600. }
  3601. .yiyun-col-7{
  3602. width: 58.33%;
  3603. float: left;
  3604. }
  3605. .yiyun-col-6{
  3606. width: 50%;
  3607. float: left;
  3608. }
  3609. .yiyun-col-5{
  3610. width: 41.66%;
  3611. float: left;
  3612. }
  3613. .yiyun-col-4{
  3614. width: 33.33%;
  3615. float: left;
  3616. }
  3617. .yiyun-col-3{
  3618. width: 25%;
  3619. float: left;
  3620. }
  3621. .yiyun-col-2{
  3622. width: 16.66%;
  3623. float: left;
  3624. }
  3625. .yiyun-col-1{
  3626. width: 8.33%;
  3627. float: left;
  3628. }
  3629. .layout_content {
  3630. /* height: calc(100vh - 48px);
  3631. overflow-y: auto; */
  3632. width: 100%;
  3633. overflow-x: hidden;
  3634. position: relative;
  3635. }
  3636. .yiyun_warpContent{
  3637. width:calc(100vw - 60px);
  3638. margin: 0 auto;
  3639. }
  3640. .header_w{
  3641. background-color: #f6f6f6;
  3642. }
  3643. .header_t{
  3644. background-color: transparent;
  3645. }
  3646. .mt-30{
  3647. margin-top: 30px;
  3648. }
  3649. .mb-40{
  3650. margin-bottom: 40px;
  3651. }
  3652. .setIcon{
  3653. display: block;
  3654. width: 28px;
  3655. height: 28px;
  3656. line-height: 28px;
  3657. font-size: 22px;
  3658. border-radius: 14px;
  3659. color: #fff;
  3660. text-align: center;
  3661. background-color: rgba(0, 0, 0, 0.5);
  3662. cursor: pointer;
  3663. }
  3664. /* 文本样式 */
  3665. /* 头部标题文本start */
  3666. .title_warp{
  3667. width: calc(100vw - 120px);
  3668. margin: 0 auto;
  3669. }
  3670. .fifleBox{
  3671. min-height: 215px;
  3672. max-height: 275px;
  3673. overflow-y: auto;
  3674. }
  3675. .neibianju1 .fifleBox{
  3676. height: calc(100vh - 210px);
  3677. max-height: calc(100vh - 210px);
  3678. overflow-y: auto;
  3679. }
  3680. .yiyun_title_label{
  3681. text-align: center;
  3682. font-size: 20px;
  3683. margin: 0 0px;
  3684. cursor: pointer;
  3685. font-weight: 400;
  3686. font-family: Pingfang SC;
  3687. line-height: 48px;
  3688. display: -webkit-box;
  3689. -webkit-box-orient: vertical;
  3690. -webkit-line-clamp: 1;
  3691. }
  3692. .toplefttext{
  3693. font-size: 17px;
  3694. line-height: 48px;
  3695. font-weight: 300;
  3696. }
  3697. .icon-icon_shezhi-weijihuo{
  3698. position: relative;
  3699. right: -8px;
  3700. top: 5px;
  3701. }
  3702. /* 头部标题文本end */
  3703. /* 云盘文件start */
  3704. .yinyun_file_row{
  3705. position: relative;
  3706. margin: 0 34px;
  3707. }
  3708. .yiyun_file_box{
  3709. margin: 0 6px;
  3710. }
  3711. .yiyun_cloud_fileList li{
  3712. margin: 0 24px;
  3713. width: 180px;
  3714. height: 258px;
  3715. float: left;
  3716. position: relative;
  3717. }
  3718. .yiyun_cloud_fileList.middle-icon li{
  3719. margin: 0 16px;
  3720. width: 136px;
  3721. height: 200px;
  3722. border-radius: 12px;
  3723. float: left;
  3724. position: relative;
  3725. transition: ease all 0.5s;
  3726. }
  3727. .yiyun_cloud_fileList.middle-icon li:hover{
  3728. background-color: #32323c;
  3729. }
  3730. .font-set{
  3731. color: #fff;
  3732. font-size: 16px;
  3733. }
  3734. .tip_icon_set{
  3735. position: absolute;
  3736. top: 6px;
  3737. right: 6px;
  3738. opacity: 0;
  3739. transform: ease all 0.5s;
  3740. }
  3741. .yiyun_cloud_fileList.middle-icon>li:hover .tip_icon_set{
  3742. opacity: 1;
  3743. }
  3744. .yiyun_cloud_fileList li .bghover{
  3745. display: block;
  3746. width: 180px;
  3747. height: 180px;
  3748. border-radius: 20px;
  3749. cursor: pointer;
  3750. transition: ease all 0.5s;
  3751. }
  3752. .yiyun_cloud_fileList li .bghover-mid{
  3753. display: block;
  3754. width: 136px;
  3755. height: 136px;
  3756. border-radius: 12px;
  3757. cursor: pointer;
  3758. transition: ease all 0.5s;
  3759. }
  3760. .webuploader-pick {
  3761. margin-top: 0px;
  3762. }
  3763. .yiyun_cloud_fileList li:hover>.deleteBtnFlie {
  3764. display: block;
  3765. }
  3766. .yiyun_cloud_fileList li:hover>.downloadBtn_yiyun {
  3767. display: block;
  3768. }
  3769. .yiyun_cloud_fileList li:hover>.bghover{
  3770. background-color: #32323c;
  3771. }
  3772. /* 云盘文件end */
  3773. /* 协作文件start */
  3774. .bg_color_company{
  3775. height: 54px;
  3776. line-height: 54px;
  3777. background-color: #f0f0f0;
  3778. }
  3779. .bottomBloder{
  3780. border-bottom: 1px solid rgb(204,205,215);
  3781. }
  3782. .yiyun_Headtitle_center{
  3783. margin:0 24px;
  3784. }
  3785. .font-line-text{
  3786. line-height: 54px!important;
  3787. }
  3788. /* 协作文件end */
  3789. /* 矩阵模板start */
  3790. .table1 td {
  3791. border: 1px solid black;
  3792. }
  3793. .table1 td:hover {
  3794. color: aliceblue;
  3795. cursor:pointer
  3796. }
  3797. /* 矩阵模板end */
  3798. /* 2019-06-04 workspace界面 */
  3799. .yiyun_line_border{
  3800. width: 100%;
  3801. height: 1px;
  3802. background-color: #d8d8d8
  3803. }
  3804. .newbtn img.wenjian_bg_img{
  3805. display: block;
  3806. width: 86px;
  3807. height: 86px;
  3808. margin: 10px auto;
  3809. margin-top: 40px;
  3810. }
  3811. .newbtn{
  3812. text-align: center;
  3813. }
  3814. .yiyun_wenjian_list:hover > .newbtn{
  3815. background-color: transparent;
  3816. }
  3817. .newbtn_label{
  3818. color: #32323C;
  3819. font-size: 14px;
  3820. }
  3821. .duiqi{
  3822. display: inline-block;
  3823. position: relative;
  3824. top: 4px;
  3825. left: 10px;
  3826. cursor: pointer;
  3827. }
  3828. .yiyun_btnnew_info .yiyun_btnnew_infolabel{
  3829. margin-left: 10px;
  3830. font-size: 14px;
  3831. position: relative;
  3832. top: -7px;
  3833. }
  3834. .newfiledialog{
  3835. position: fixed;
  3836. top: 130px;
  3837. left: 50%;
  3838. width: 680px;
  3839. margin-left: -340px;
  3840. background-color: rgba(50, 50, 60, 0);
  3841. overflow-y: auto;
  3842. z-index: 11;
  3843. }
  3844. .dia_8{
  3845. width: 100%;
  3846. height:100%;
  3847. position:fixed;
  3848. left: 0px;
  3849. top: 0px;
  3850. background-color: rgba(50, 50, 60, 0.42);
  3851. z-index: 10;
  3852. overflow-y: auto;
  3853. }
  3854. .el-message-box__wrapper{
  3855. background-color: rgba(50, 50, 60, 0.42);
  3856. }
  3857. .dragareaBox{
  3858. width: 680px;
  3859. margin-right: auto;
  3860. margin-left: auto;
  3861. margin-bottom: 50px;
  3862. }
  3863. .dragarea_top{
  3864. width: 100%;
  3865. height: 100px;
  3866. border-radius: 10px;
  3867. background-color: rgba(255, 255, 255, 1);
  3868. text-align: center;
  3869. cursor: pointer;
  3870. }
  3871. .yiyong_list_dalog{
  3872. margin-left: 10px;
  3873. }
  3874. .yiyong_list_dalog li{
  3875. float: left;
  3876. margin:10px 20px;
  3877. text-align: center;
  3878. cursor:pointer;
  3879. position: relative;
  3880. top: 0;
  3881. transition:ease all 0.5s;
  3882. }
  3883. .yiyong_list_dalog li:hover{
  3884. top: -5px;
  3885. }
  3886. .appfileImgIcon.dulicard{
  3887. /* height: 164px; */
  3888. position: relative;
  3889. }
  3890. .houzuidinwei{
  3891. position: absolute;
  3892. top: 132px;
  3893. font-size: 26px;
  3894. text-align: center;
  3895. right: 48px;
  3896. }
  3897. .dulicard img{
  3898. max-height: 148px;
  3899. display: block;
  3900. margin: 0 auto;
  3901. margin-top: 16px;
  3902. filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.3));
  3903. max-width: 148px;
  3904. }
  3905. .cardlistbox li{
  3906. float: left;
  3907. margin:15px 5px;
  3908. text-align: center;
  3909. cursor:pointer;
  3910. }
  3911. .creatbox_mid{
  3912. width: 100%;
  3913. overflow: hidden;
  3914. border-radius: 10px;
  3915. background-color: rgba(255, 255, 255, 1);
  3916. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  3917. padding-bottom: 20px;
  3918. }
  3919. .mt-10{
  3920. margin-top: 10px;
  3921. }
  3922. .spanImg{
  3923. display: block;
  3924. width: 70px;
  3925. }
  3926. .appItemlist{
  3927. clear: both;
  3928. cursor:pointer;
  3929. }
  3930. .diahead{
  3931. padding:19px 16px;
  3932. padding-bottom: 0;
  3933. overflow: hidden;
  3934. }
  3935. .colosbtn{
  3936. background: url(../img/yiyunicon.png) no-repeat -194px -28px;
  3937. display: block;
  3938. width: 28px;
  3939. height: 28px;
  3940. cursor: pointer;
  3941. /* transition: ease all 0.5s; */
  3942. }
  3943. .colosbtn:hover{
  3944. background: url(../img/yiyunicon.png) no-repeat -194px -84px;
  3945. }
  3946. .spanTitle{
  3947. font-size: 13px;
  3948. color: rgba(0, 0, 0, 1);
  3949. font-size: 13px;
  3950. }
  3951. .rtbtn{
  3952. padding: 0 10px;
  3953. border-radius: 10px;
  3954. color: rgba(167, 168, 183, 1);
  3955. font-size: 12px;
  3956. border: 1px solid #A7A8B7;
  3957. cursor: pointer;
  3958. }
  3959. .dragarea_area{
  3960. /* line-height: 100px; */
  3961. text-align: center;
  3962. color: rgba(0, 0, 0, 1);
  3963. font-size: 16px;
  3964. }
  3965. .xiangdui{
  3966. position: relative;
  3967. }
  3968. .xiangdui .fl_icon{
  3969. position: absolute;
  3970. left: -30px;
  3971. }
  3972. .layerout_H2{
  3973. height: calc(100vh - 350px);
  3974. overflow-y: auto;
  3975. transition: ease all 0.5s;
  3976. background-color: #f6f6f6;
  3977. }
  3978. .layerout_H3{
  3979. min-height: 150px;
  3980. }
  3981. .layerout_H2::-webkit-scrollbar,.layerout_H2::-webkit-scrollbar {
  3982. width: 0px;
  3983. /*其他样式,比如圆角等*/
  3984. }
  3985. .file_Imgbox{
  3986. position: absolute;
  3987. width: 132px;
  3988. height: 90px;
  3989. top: 42px;
  3990. left: 24px;
  3991. overflow: hidden;
  3992. vertical-align: middle;
  3993. text-align: center;
  3994. margin: 0 auto;
  3995. background-color: #fff;
  3996. display: flex;
  3997. justify-content: center;
  3998. align-items: center;
  3999. }
  4000. .file_Imgbox-mid{
  4001. position: absolute;
  4002. width: 100px;
  4003. height: 69px;
  4004. top: 36px;
  4005. left: 18px;
  4006. overflow: hidden;
  4007. vertical-align: middle;
  4008. text-align: center;
  4009. margin: 0 auto;
  4010. background-color: #fff;
  4011. display: flex;
  4012. justify-content: center;
  4013. align-items: center;
  4014. }
  4015. .file_Img{
  4016. max-width: 100%;
  4017. max-height: 100%;
  4018. }
  4019. .searchsize{
  4020. font-size: 24px;
  4021. }
  4022. /* .scollbarBox{
  4023. min-height: 423px;
  4024. overflow: hidden;
  4025. overflow-y: auto;
  4026. } */
  4027. .mt-5{
  4028. margin-top: 5px;
  4029. }
  4030. .mt-0{
  4031. margin-top: 0px;
  4032. }
  4033. .mt-32{
  4034. margin-top: 32px;
  4035. }
  4036. .mt-48{
  4037. margin-top: 48px;
  4038. }
  4039. .mt-50{
  4040. margin-top: 50px;
  4041. }
  4042. .mt-54{
  4043. margin-top: 54px;
  4044. }
  4045. .listfilewarp{
  4046. min-height: calc(100vh - 48px);
  4047. overflow: hidden;
  4048. /* overflow-y: auto; */
  4049. background-color: #f0f0f0;
  4050. }
  4051. .listfilewarp1{
  4052. min-height: calc(100vh - 48px);
  4053. overflow: hidden;
  4054. overflow-y: auto;
  4055. background-color: #f0f0f0;
  4056. }
  4057. .btn_group button{
  4058. background-color: #fff;
  4059. border: 0;
  4060. padding: 5px 7px 6px 8px;
  4061. cursor: pointer;
  4062. color: rgba(98, 98, 111, 1);
  4063. font-size: 14px;
  4064. text-align: center;
  4065. }
  4066. .btn_group{
  4067. border-radius:5px;
  4068. height: 28px;
  4069. line-height: 28px;
  4070. background-color: #fff;
  4071. overflow: hidden;
  4072. }
  4073. .zongjianbox{
  4074. height: 55px;
  4075. background-color: rgba(235, 235, 235, 0.57);
  4076. }
  4077. .yiyun_section2{
  4078. width: calc(100vw - 120px);
  4079. margin: 0 auto
  4080. }
  4081. .zongjianbox .yiyuntitle{
  4082. line-height: 55px;
  4083. }
  4084. .btn_group button+button{
  4085. margin: 0
  4086. }
  4087. .mt-16{
  4088. margin-top: 16px;
  4089. }
  4090. .program{
  4091. background-color: #8C00FF !important;
  4092. padding: 5px 12px !important;
  4093. color: #fff!important;
  4094. }
  4095. .jindutiao{
  4096. width: 340px;
  4097. margin:0 auto;
  4098. height: 26px;
  4099. border-radius: 18px;
  4100. background-color: rgba(234, 199, 142, 1);
  4101. overflow: hidden;
  4102. position: relative;
  4103. }
  4104. div.mt-16{
  4105. margin-top: 16px;
  4106. }
  4107. .jindu{
  4108. width: 40px;
  4109. height: 26px;
  4110. background-color: rgba(226, 169, 75, 1);
  4111. position: absolute;
  4112. top: 0;
  4113. z-index: 2;
  4114. }
  4115. .jindulabel{
  4116. position: absolute;
  4117. right: 10px;
  4118. line-height: 28px;
  4119. }
  4120. .mt-7{
  4121. margin-top: 7px;
  4122. }
  4123. .row_painfr h5{
  4124. font-size: 18px;
  4125. }
  4126. .top_optionBar{
  4127. position: absolute;
  4128. right: 10px;
  4129. top: 4px;
  4130. /*background: #ccc;*/
  4131. display: block;
  4132. width: 16px;
  4133. height: 16px;
  4134. }
  4135. .el-icon-reseting{
  4136. background: url(../img/icon_16.png) no-repeat 0 -16px;
  4137. display: block;
  4138. width: 16px;
  4139. height: 16px;
  4140. }
  4141. .dropdownList{
  4142. display: block;
  4143. }
  4144. .mt-20{
  4145. margin-top: 20px;
  4146. }
  4147. .el-dropdown-menu{
  4148. padding: 0
  4149. }
  4150. .el-dropdown-menu__item--divided{
  4151. margin-top: 0
  4152. }
  4153. .yiyun_text_line{
  4154. line-height: 30px;
  4155. }
  4156. .wrate{
  4157. background-color: #5498ff;
  4158. background: -webkit-linear-gradient(#c3c3c3, black);
  4159. color: #fff;
  4160. line-height: 30px;
  4161. text-align: center;
  4162. }
  4163. .blue {
  4164. background: #fdee27;
  4165. color: #88690f;
  4166. }
  4167. .gray{
  4168. background:#e2e9f1;
  4169. }
  4170. /* 探索者UI */
  4171. .LoginTitleWel{
  4172. position: fixed;
  4173. top: 120px;
  4174. left: 100px;
  4175. font-size: 48px;
  4176. font-weight: 500;
  4177. color: #fff;
  4178. z-index: 2;
  4179. }
  4180. .tinyLabel{
  4181. font-size: 12px;
  4182. line-height: 16px;
  4183. width: 52px;
  4184. border-radius: 8px;
  4185. background-color: #8C00FF;
  4186. display: block;
  4187. text-align: center;
  4188. color:#fff;
  4189. margin-bottom: 7px;
  4190. }
  4191. .yiyun_btn_new{
  4192. border: 0;
  4193. color: #fff;
  4194. width: 120px;
  4195. height: 32px;
  4196. font-size: 14px;
  4197. border-radius: 21px;
  4198. background-color: rgba(140, 0, 255, 1);
  4199. cursor: pointer;
  4200. transition: ease all 0.5s;
  4201. font-family: PingFang SC;
  4202. }
  4203. .yiyun_btn_new:hover{
  4204. box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  4205. }
  4206. .PaincenterBox .el-form-item__label{
  4207. color: #EBEBF2;
  4208. font-size: 15px;
  4209. }
  4210. .PaincenterBox .bg_w .el-input__inner {
  4211. background-color: #32323c;
  4212. border-radius: 5px;
  4213. height: 44px;
  4214. line-height: 44px;
  4215. color: #fff;
  4216. border-bottom: 0;
  4217. border: 0;
  4218. box-shadow: 0 0 0;
  4219. }
  4220. .yiyunPlusmini{
  4221. display: inline-block;
  4222. width: 20px;
  4223. height: 20px;
  4224. background: url(../img/Plus_mini.png) 0 0 no-repeat;
  4225. position: relative;
  4226. top: 1px;
  4227. cursor: pointer;
  4228. }
  4229. .self_newitem{
  4230. position: relative;
  4231. }
  4232. .bianji_input{
  4233. padding-left: 0;
  4234. width: 100%;
  4235. text-indent: 16px;
  4236. }
  4237. .selfoptiongroup{
  4238. position: absolute;
  4239. z-index: 1;
  4240. right: 10px;
  4241. top: 16px;
  4242. }
  4243. .blockcheckbox .el-checkbox{
  4244. display: block;
  4245. margin: 10px 0;
  4246. font-size: 15px;
  4247. color: #000;
  4248. }
  4249. .blockcheckbox .el-checkbox+.el-checkbox{
  4250. margin-left: 0;
  4251. }
  4252. .blockcheckbox{
  4253. margin-left: 0px;
  4254. margin-top: 10px;
  4255. }
  4256. .qustionimgbox{
  4257. width: 79px;
  4258. height: 82px;
  4259. border-radius: 10px;
  4260. border: 1px solid rgba(216, 216, 216, 1);
  4261. margin-right: 10px;
  4262. overflow: hidden;
  4263. display: inline-block;
  4264. position: relative;
  4265. margin-top: 6px;
  4266. }
  4267. .qustionimgbox img{
  4268. width: 100%;
  4269. height: 100%;
  4270. cursor: pointer;
  4271. }
  4272. .guanbi{
  4273. position: absolute;
  4274. z-index: 9;
  4275. top: 6px;
  4276. right: 8px;
  4277. color: #8c00ff;
  4278. }
  4279. .noborder{
  4280. border: 0
  4281. }
  4282. .dibubtn{
  4283. position: absolute;
  4284. margin: 16px;
  4285. bottom: 0px;
  4286. left: 0px;
  4287. }
  4288. .dibubtn .el-button {
  4289. padding: 8px 20px;
  4290. width: 343px;
  4291. border-radius: 8px;
  4292. display: block;
  4293. border: 0;
  4294. font-size: 16px;
  4295. font-family: PingFang SC;
  4296. }
  4297. .pxline{
  4298. height: 1px;
  4299. background-color: #CCCDD7;
  4300. }
  4301. .user_info_role .el-input--suffix .el-input__inner {
  4302. padding-right: 0px;
  4303. background-color: transparent;
  4304. box-shadow: 0;
  4305. border-radius: 0px;
  4306. border: 0px solid rgba(227, 227, 227, 1);
  4307. color: rgba(255,255,255,1);
  4308. font-size: 12px;
  4309. }
  4310. .nobg .el-input--suffix .el-input__inner{
  4311. background: transparent;
  4312. box-shadow: 0 0 0;
  4313. border: 1px solid #ccc;
  4314. color: #fff;
  4315. }
  4316. .user_info_role .el-select .el-input .el-select__caret {
  4317. font-size: 0px;
  4318. }
  4319. .nomidline .bg_text_wirte .el-collapse,.nomidline .el-collapse{
  4320. border-top: 0px solid #62626f;
  4321. border-bottom: 0px solid #62626f;
  4322. }
  4323. .fulldialog{
  4324. width: calc(100vw);
  4325. height: calc(100vh);
  4326. position: fixed;
  4327. background: #fff;
  4328. z-index: 999;
  4329. left: 0;
  4330. top: 0;
  4331. overflow-y: auto;
  4332. }
  4333. .questionwarp{
  4334. width: 668px;
  4335. margin: 0 auto;
  4336. margin-top: 20px;
  4337. }
  4338. .dibulongbtn{
  4339. margin: 50px 0;
  4340. overflow: hidden;
  4341. }
  4342. .widt50{
  4343. width: 48%;
  4344. }
  4345. .widt50 .el-button--default{
  4346. width: 100%;
  4347. border-radius: 24px;
  4348. }
  4349. .guanbiques{
  4350. position: fixed;
  4351. right: 30px;
  4352. top: 22px;
  4353. }
  4354. .tianjiaxiezuorenBox .el-button {
  4355. padding: 3px 23px 2px 23px;
  4356. border: 0;
  4357. }
  4358. .tianjiaxiezuorenBox .el-button:focus,.tianjiaxiezuorenBox .el-button:hover {
  4359. color: #ffffff;
  4360. border-color: #8c00ff;
  4361. background-color: #8c00ff;
  4362. }
  4363. .texttips{
  4364. color: rgba(155, 155, 155, 1);
  4365. font-size: 14px;
  4366. }
  4367. .el-input__inner::-webkit-input-placeholder {
  4368. color: rgba(136, 136, 136, 1);
  4369. font-size: 15px;
  4370. }
  4371. .el-input__inner::-moz-placeholder {
  4372. color: rgba(136, 136, 136, 1);
  4373. font-size: 15px;
  4374. }
  4375. .el-input__inner::-ms-input-placeholder {
  4376. color: rgba(136, 136, 136, 1);
  4377. font-size: 15px;
  4378. }
  4379. .appImg{
  4380. width: 32px;
  4381. height: 32px;
  4382. margin-right: 10px;
  4383. background-color: #ccc;
  4384. margin-top: 6px;
  4385. margin-bottom: 6px;
  4386. }
  4387. .appNameBox{
  4388. width: 300px;
  4389. float: right;
  4390. line-height: 40px;
  4391. border-bottom: 1px solid #cccdd7;
  4392. }
  4393. .el-checkbox__inner::after {
  4394. height: 0px;
  4395. left: -5px;
  4396. top: 1px;
  4397. width: 0px;
  4398. }
  4399. .maxlongBtn{
  4400. height: 44px;
  4401. border-radius: 5px;
  4402. border: 1px solid rgba(167, 168, 183, 1);
  4403. color:rgba(167, 168, 183, 1);
  4404. line-height: 44px;
  4405. font-size: 18px;
  4406. cursor: pointer;
  4407. position: relative;
  4408. text-align: center;
  4409. transition: ease all 0.5s;
  4410. }
  4411. .rightIcon{
  4412. transform: rotate(180deg);
  4413. position: absolute;
  4414. right: 20px;
  4415. top: 0px;
  4416. font-size: 21px;
  4417. }
  4418. .maxlongBtn:hover{
  4419. color: #fff;
  4420. border: 1px solid #fff;
  4421. }
  4422. .edit120.el-button.is-round{
  4423. padding: 7px;
  4424. }
  4425. .midIcon{
  4426. position: relative;
  4427. top: 5px;
  4428. width: 55px;
  4429. }
  4430. .yiyun_row_recyle_warp{
  4431. width: 100%;
  4432. padding: 0 22px;
  4433. position: relative;
  4434. left: -44px;
  4435. }
  4436. .bghover:hover .top_optionBar{
  4437. opacity: 1;
  4438. }
  4439. .helpNodeDetailBox{
  4440. min-height: calc(100vh - 300px);
  4441. overflow-y: auto;
  4442. }
  4443. .helpNodeDetailBox p{
  4444. text-align: justify;
  4445. }
  4446. .helpNodeDetailBox p span{
  4447. font-size: 14px!important;
  4448. line-height: 30px;
  4449. text-align: justify;
  4450. display: block;
  4451. text-indent: 30px;
  4452. }
  4453. .appbg{
  4454. background: transparent;
  4455. }
  4456. .appbg .file_Imgbox{
  4457. width: 116px;
  4458. height: 116px;
  4459. border-radius: 16px;
  4460. background-color: #ccc;
  4461. left: 32px;
  4462. top: 32px;
  4463. }
  4464. .appbg .file_Imgbox img{
  4465. width: 100%;
  4466. height: 100%;
  4467. transform: scale(1.23);
  4468. }
  4469. .updateImg .webuploader-pick{
  4470. width: 79px;
  4471. height: 79px;
  4472. border-radius: 0!important;
  4473. border: 0!important;
  4474. background: url(../img/newadd.png) 0 0 no-repeat;
  4475. background-size: 100%;
  4476. background-color: transparent !important;
  4477. position: absolute;
  4478. top: -3px;
  4479. left: 0;
  4480. }
  4481. .selfaddbtn > span{
  4482. position: relative;
  4483. top: 10px;
  4484. }
  4485. .el-date-editor.el-input--suffix .el-input__inner {
  4486. text-indent: 6px;
  4487. }
  4488. .el-form-item__content >span{
  4489. display: -webkit-box;
  4490. -webkit-box-orient: vertical;
  4491. -webkit-line-clamp: 1;
  4492. overflow: hidden;
  4493. font-size: 15px;
  4494. }
  4495. .el-button--text:hover,.el-button--text:focus{
  4496. background-color: transparent;
  4497. }
  4498. .yiyun_section1{
  4499. width: calc(100vw - 120px);
  4500. margin: 0 auto;
  4501. height: calc(100vh - 128px);
  4502. }
  4503. /* 2019-07-25 UI */
  4504. .title_section{
  4505. width: calc(100vw - 120px);
  4506. margin: 0 auto;
  4507. overflow: hidden;
  4508. }
  4509. .EC_searchBox{
  4510. width: 300px;
  4511. margin: 20px auto;
  4512. }
  4513. .el-table--border::after, .el-table--group::after, .el-table::before {
  4514. z-index: -1;
  4515. }
  4516. .cutimgBox{
  4517. width: 77px;
  4518. height: 77px;
  4519. overflow: hidden;
  4520. position: relative;
  4521. float: left;
  4522. margin-right: 9px;
  4523. margin-bottom: 9px;
  4524. border-radius: 10px;
  4525. border: 1px solid rgba(216, 216, 216, 1);
  4526. margin-top: 10px;
  4527. }
  4528. .cutimgBox img{
  4529. width: 100%;
  4530. height: 100%;
  4531. }
  4532. .guanbibtn{
  4533. position: absolute;
  4534. top: 7px;
  4535. right: 9px;
  4536. }
  4537. .guanbibtn:hover{
  4538. color: #8C00FF;
  4539. }
  4540. .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
  4541. background-color: #8E909F;
  4542. border-radius: 5px;
  4543. }
  4544. .yiyun_headerfr>a.textgray{
  4545. color: #adadad;
  4546. width: 100px;
  4547. overflow: hidden;
  4548. text-overflow: ellipsis;
  4549. white-space: nowrap;
  4550. }
  4551. .yiyun_headerfr>a.textblock{
  4552. color: #000
  4553. }
  4554. /* 2019-07-25 探索者UI规范 */
  4555. /*公共默认样式*/
  4556. body{
  4557. margin : 0 ;
  4558. padding : 0 ;
  4559. overflow: hidden;
  4560. }
  4561. .fl{
  4562. float: left;
  4563. }
  4564. .fr{
  4565. float: right;
  4566. }
  4567. .clear{
  4568. clear: both;
  4569. }
  4570. .el-form-itemBox{
  4571. margin: 0 10px;
  4572. overflow: hidden;
  4573. /* max-height: 50px; */
  4574. }
  4575. .mlr-10{
  4576. margin: 0 10px;
  4577. }
  4578. .mlr-16{
  4579. margin-left: 16px;
  4580. margin-right: 16px;
  4581. }
  4582. .mt-8{
  4583. margin-top: 8px;
  4584. }
  4585. .secondListTitle{
  4586. font-size: 16px;
  4587. }
  4588. .yiyunTable_list_item div.textlabelgray .el-form-item__label{
  4589. color: #808080!important;
  4590. font-weight: 500
  4591. }
  4592. .yiyunTable_list_item div.textlabelblock .el-form-item__label{
  4593. color: #000!important;
  4594. font-weight: 600
  4595. }
  4596. div.textlabelgray .el-form-item__content{
  4597. font-size: 15px;
  4598. font-weight: 600;
  4599. }
  4600. .el-table,.el-table thead{
  4601. color: #000;
  4602. font-weight: 600;
  4603. }
  4604. .el-table-column--selection .cell{
  4605. padding: 0;
  4606. }
  4607. .largecontentBox{
  4608. height: calc(100vh - 240px);
  4609. overflow-y: auto;
  4610. position: relative;
  4611. }
  4612. /*边距*/
  4613. .mt-10{
  4614. margin-top: 10px;
  4615. }
  4616. .mb-10{
  4617. margin-bottom: 10px;
  4618. }
  4619. .ml-10{
  4620. margin-left:10px;
  4621. }
  4622. .mr-10{
  4623. margin-right:10px;
  4624. }
  4625. .mt-15{
  4626. margin-top: 15px;
  4627. }
  4628. .ml-15{
  4629. margin-left: 15px;
  4630. }
  4631. .mt-20{
  4632. margin-top: 20px;
  4633. }
  4634. .mb-20{
  4635. margin-bottom: 20px;
  4636. }
  4637. .ml-20{
  4638. margin-left: 20px;
  4639. }
  4640. .mr-20{
  4641. margin-right: 20px;
  4642. }
  4643. .mlr-20{
  4644. margin: 0 20px;
  4645. }
  4646. .mlr_30{
  4647. margin: 0 30px;
  4648. }
  4649. .mt-26{
  4650. margin-top: 26px;
  4651. }
  4652. .line_H60{
  4653. line-height: 60px;
  4654. }
  4655. /* 滚动条 */
  4656. .flex_right_pain_body::-webkit-scrollbar ,.largecontentBox::-webkit-scrollbar,.scollbarBox::-webkit-scrollbar,.middiaHeight::-webkit-scrollbar,
  4657. .tankuangaodu::-webkit-scrollbar,.listfilewarp::-webkit-scrollbar,.jsmind-inner::-webkit-scrollbar,.newfiledialog::-webkit-scrollbar,.scollBar::-webkit-scrollbar,.fixtable::-webkit-scrollbar
  4658. ,.worklink::-webkit-scrollbar,#bigbody::-webkit-scrollbar,.fulldialog::-webkit-scrollbar,.appiframebox::-webkit-scrollbar,.appiframebox::-webkit-scrollbar,.listfilewarp1::-webkit-scrollbar{
  4659. width: 8px;
  4660. height: 8px;
  4661. }
  4662. .translatescoall::-webkit-scrollbar,.neibianju::-webkit-scrollbar,.neibianju1::-webkit-scrollbar,.fifleBox::-webkit-scrollbar{
  4663. width: 0;
  4664. }
  4665. .flex_right_pain_body::-webkit-scrollbar-track ,.largecontentBox::-webkit-scrollbar-track,.scollbarBox::-webkit-scrollbar-track,.middiaHeight::-webkit-scrollbar-track,
  4666. .tankuangaodu::-webkit-scrollbar-track,.listfilewarp::-webkit-scrollbar-track,.jsmind-inner::-webkit-scrollbar-track,.newfiledialog::-webkit-scrollbar-track,.scollBar::-webkit-scrollbar-track,.fixtable::-webkit-scrollbar-track
  4667. ,.worklink::-webkit-scrollbar-track,#bigbody::-webkit-scrollbar-track,.fulldialog::-webkit-scrollbar-track,.appiframebox::-webkit-scrollbar-track,.appiframebox::-webkit-scrollbar-track,.listfilewarp1::-webkit-scrollbar-track{
  4668. background-color:transparent;
  4669. -webkit-border-radius: 2em;
  4670. -moz-border-radius: 2em;
  4671. border-radius:2em;
  4672. }
  4673. .flex_right_pain_body::-webkit-scrollbar-thumb,.largecontentBox::-webkit-scrollbar-thumb,.scollbarBox::-webkit-scrollbar-thumb,.middiaHeight::-webkit-scrollbar-thumb,
  4674. .tankuangaodu::-webkit-scrollbar-thumb,.listfilewarp::-webkit-scrollbar-thumb,.jsmind-inner::-webkit-scrollbar-thumb,.newfiledialog::-webkit-scrollbar-thumb,.scollBar::-webkit-scrollbar-thumb,.fixtable::-webkit-scrollbar-thumb
  4675. ,.worklink::-webkit-scrollbar-thumb,#bigbody::-webkit-scrollbar-thumb,.fulldialog::-webkit-scrollbar-thumb,.appiframebox::-webkit-scrollbar-thumb,.appiframebox::-webkit-scrollbar-thumb,.listfilewarp1::-webkit-scrollbar-thumb{
  4676. background-color:#adadad;
  4677. -webkit-border-radius: 2em;
  4678. -moz-border-radius: 2em;
  4679. border-radius:2em;
  4680. }
  4681. /*网格布局 24网格*/
  4682. .EC_col_1{
  4683. width: 4.166%;
  4684. float: left;
  4685. }
  4686. .EC_col_2{
  4687. width: 8.33%;
  4688. float: left;
  4689. }
  4690. .EC_col_3{
  4691. width: 12.5%;
  4692. float: left;
  4693. }
  4694. .EC_col_4{
  4695. width: 16.66%;
  4696. float: left;
  4697. }.EC_col_5{
  4698. width: 20.833%;
  4699. float: left;
  4700. }
  4701. .EC_col_6{
  4702. width: 25%;
  4703. float: left;
  4704. }
  4705. .EC_col_7{
  4706. width: 29.166%;
  4707. float: left;
  4708. }
  4709. .EC_col_8{
  4710. width: 33.33%;
  4711. float: left;
  4712. }
  4713. .EC_col_9{
  4714. width: 37.5%;
  4715. float: left;
  4716. }
  4717. .EC_col_10{
  4718. width: 41.66%;
  4719. float: left;
  4720. }
  4721. .EC_col_11{
  4722. width: 45.83%;
  4723. float: left;
  4724. }
  4725. .EC_col_12{
  4726. width: 50%;
  4727. float: left;
  4728. }
  4729. .EC_col_13{
  4730. width: 54.166%;
  4731. float: left;
  4732. }
  4733. .EC_col_14{
  4734. width: 58.33%;
  4735. float: left;
  4736. }
  4737. .EC_col_15{
  4738. width: 62.5%;
  4739. float: left;
  4740. }
  4741. .EC_col_16{
  4742. width: 66.66%;
  4743. float: left;
  4744. }
  4745. .EC_col_17{
  4746. width: 70.833%;
  4747. float: left;
  4748. }
  4749. .EC_col_18{
  4750. width: 75%;
  4751. float: left;
  4752. }
  4753. .EC_col_19{
  4754. width: 79.166%;
  4755. float: left;
  4756. }
  4757. .EC_col_20{
  4758. width: 83.33%;
  4759. float: left;
  4760. }
  4761. .EC_col_21{
  4762. width: 87.5%;
  4763. float: left;
  4764. }
  4765. .EC_col_22{
  4766. width: 91.66%;
  4767. float: left;
  4768. }
  4769. .EC_col_23{
  4770. width: 95.83%;
  4771. float: left;
  4772. }
  4773. .EC_col_24{
  4774. width: 100%;
  4775. float: left;
  4776. }
  4777. /*按钮开始*/
  4778. button + button{
  4779. margin:0 5px;
  4780. }
  4781. .topOption .page_button{
  4782. margin: 0
  4783. }
  4784. button:last-child{
  4785. margin-right: 0;
  4786. }
  4787. .EC_button{
  4788. border: 0.5px solid transparent;
  4789. font-size: 14px;
  4790. border-radius: 4px;
  4791. color: #fff;
  4792. padding: 4px 31px 6px 31px;
  4793. cursor: pointer;
  4794. transition: ease all 0.5s;
  4795. outline: none;
  4796. }
  4797. .cicle{
  4798. border-radius: 15px;
  4799. }
  4800. .normal{
  4801. color: #32323c;
  4802. background-color: #fff;
  4803. border-color: #d4d4d4;
  4804. }
  4805. .dark{
  4806. background-color: #62626F;
  4807. }
  4808. .dark:hover,.normal:hover,.normal:focus,.dark:focus{
  4809. color: #fff;
  4810. border-color: #8C00FF;
  4811. background-color: #8C00FF
  4812. }
  4813. .textborder:focus{
  4814. border-color: #8C00FF;
  4815. color: #8C00FF
  4816. }
  4817. button:hover:disabled,button:disabled{
  4818. color: #ADADAD;
  4819. background-color: #e3e3e3;
  4820. border-color: #e3e3e3;
  4821. cursor: not-allowed;
  4822. }
  4823. .strong{
  4824. background-color: #8C00FF;
  4825. color: #fff;
  4826. border-color: #8C00FF;
  4827. }
  4828. .strong:hover{
  4829. background-color: #a02dff;
  4830. }
  4831. .text{
  4832. border-color: transparent;
  4833. background-color: transparent;
  4834. color: #000;
  4835. }
  4836. .text:hover,.text:focus{
  4837. color: #8C00FF;
  4838. background-color: transparent;
  4839. border: transparent;
  4840. }
  4841. .textborder{
  4842. border-color: #D4D4D4;
  4843. background-color: transparent;
  4844. color: #000;
  4845. }
  4846. .textborder:hover{
  4847. border-color: #8C00FF;
  4848. color: #8C00FF;
  4849. }
  4850. .textStrong{
  4851. border-color: transparent;
  4852. background-color: transparent;
  4853. color: #8C00FF;
  4854. }
  4855. .shadow{
  4856. box-shadow: 0 1px 2px #848484;
  4857. border-color: #e8e8e8;
  4858. }
  4859. .strong.shadow{
  4860. border-color: #8C00FF;
  4861. }
  4862. .gradient{
  4863. color:#32323c;
  4864. border:0;
  4865. background: -webkit-linear-gradient(#E1E2E8,#B0B0B7); /* Safari 5.1 - 6.0 */
  4866. background: -o-linear-gradient(#E1E2E8,#B0B0B7); /* Opera 11.1 - 12.0 */
  4867. background: -moz-linear-gradient(#E1E2E8,#B0B0B7); /* Firefox 3.6 - 15 */
  4868. background: linear-gradient(#E1E2E8,#B0B0B7); /* 标准的语法 */
  4869. }
  4870. .gradient:hover,.gradient:focus{
  4871. background: #8C00FF;
  4872. color: #FFF;
  4873. }
  4874. .long{
  4875. display: block;
  4876. width: 100%;
  4877. padding: 5px 0;
  4878. margin: 0;
  4879. text-align: center;
  4880. }
  4881. /*
  4882. *按钮尺寸:大【bt_large】,中【bt_middle】,小【bt_small】,mini【bt_mini】,微小 【bt_tiny】
  4883. */
  4884. .bt_large{
  4885. font-size: 16px;
  4886. border-radius: 8px;
  4887. }
  4888. .bt_middle{
  4889. font-size: 14px;
  4890. }
  4891. .bt_small{
  4892. font-size: 13px;
  4893. padding: 2px 27px 4px;
  4894. }
  4895. .bt_small_24{
  4896. font-size: 13px;
  4897. padding: 3px 17px;
  4898. font-weight: 400;
  4899. color: #000;
  4900. background-color: #fff;
  4901. border-color: #e3e3e3;
  4902. }
  4903. .bt_small_20{
  4904. font-size: 13px;
  4905. padding: 1px 23px 1px 23px;
  4906. font-weight: 400;
  4907. color: #000;
  4908. background-color: #fff;
  4909. border-color: #e3e3e3;
  4910. }
  4911. .primaryBtn{
  4912. background-color: #8C00FF;
  4913. color: #fff;
  4914. border-color: #8C00FF;
  4915. }
  4916. .primaryBtn:hover{
  4917. background-color: #8C00FF;
  4918. color: #fff!important;
  4919. border-color: #8C00FF;
  4920. }
  4921. .bt_small_20:hover{
  4922. color: #8C00FF;
  4923. border-color: #8C00FF;
  4924. }
  4925. .bt_mini{
  4926. font-size: 12px;
  4927. padding: 2px 14px 3px;
  4928. }
  4929. .bt_tiny{
  4930. font-size: 11px;
  4931. padding: 1px 3px 2px;
  4932. }
  4933. /*开关*/
  4934. .el-switch__core:after {
  4935. top: -6px;
  4936. left: -7px;
  4937. width: 28px;
  4938. height: 28px;
  4939. background-color: #FFF;
  4940. border-radius: 18px;
  4941. box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  4942. }
  4943. .el-switch__core {
  4944. width: 38px!important;
  4945. box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  4946. }
  4947. /* /*按钮结束 */
  4948. /* 用户后台2019-08-05 */
  4949. .wirteBg{
  4950. background-color: rgba(255, 255, 255, 1)!important;
  4951. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  4952. }
  4953. .companylogoBox,.messageBoxlarge{
  4954. height: 255px;
  4955. background-color: rgba(235, 235, 242, 1);
  4956. }
  4957. .companylogoBox{
  4958. height: 255px;
  4959. margin: 30px;
  4960. overflow: hidden;
  4961. }
  4962. .companylogoImgBox{
  4963. width: 180px;
  4964. height: 180px;
  4965. margin: 0 auto;
  4966. margin-top: 35px;
  4967. display: flex;
  4968. justify-content: center;
  4969. align-items: center;
  4970. }
  4971. .companylogoImgBox img{
  4972. max-width: 100%
  4973. }
  4974. .messageBoxlarge{
  4975. height: 182px;
  4976. margin: 5px 0;
  4977. border-top: 1px solid transparent;
  4978. border-radius: 5px;
  4979. }
  4980. .desclabel label{
  4981. color: #808080;
  4982. font-weight: 500;
  4983. display: inline-block;
  4984. width: 80px;
  4985. }
  4986. .desclabel label,.desclabel span{
  4987. font-size: 15px;
  4988. line-height: 40px;
  4989. }
  4990. .desclabel span{
  4991. color: #000;
  4992. font-weight: 500;
  4993. }
  4994. .titleChapter{
  4995. color: rgba(0, 0, 0, 1);
  4996. font-size: 15px;
  4997. vertical-align: baseline
  4998. }
  4999. .labtips{
  5000. color: rgba(140, 0, 255, 1);
  5001. font-size: 12px;
  5002. vertical-align: baseline
  5003. }
  5004. .scanlargeBtn{
  5005. text-decoration: none;
  5006. color: rgba(140, 0, 255, 1);
  5007. font-size: 14px;
  5008. line-height: 44px;
  5009. }
  5010. .ml-23{
  5011. margin-left: 23px;
  5012. }
  5013. .m-20{
  5014. margin: 20px;
  5015. }
  5016. .mt-40{
  5017. margin-top: 40px;
  5018. }
  5019. .mt-5{
  5020. margin-top: 5px;
  5021. }
  5022. .m10{
  5023. margin: 10px;
  5024. }
  5025. .chapter{
  5026. color: rgba(155, 155, 155, 1);
  5027. font-size: 14px;
  5028. }
  5029. .chapterWarp{
  5030. width: 920px;
  5031. margin-left:auto ;
  5032. margin-right: auto
  5033. }
  5034. .page_button{
  5035. font-size: 12px;
  5036. }
  5037. .massagecontentBox img{
  5038. max-width: 100%;
  5039. display: block;
  5040. margin: 0 auto;
  5041. }
  5042. .massagecontentBox{
  5043. color: rgba(0, 0, 0, 1);
  5044. font-size: 14px;
  5045. text-align: justify;
  5046. margin: 10px;
  5047. }
  5048. .chapterbox{
  5049. border-radius: 10px;
  5050. padding-bottom: 20px;
  5051. margin-bottom: 20px;
  5052. overflow: hidden;
  5053. min-height: calc(100vh - 300px);
  5054. }
  5055. .clearboth {
  5056. clear: both;
  5057. overflow: hidden;
  5058. }
  5059. .ProjTitleLabel>div>span{
  5060. cursor: pointer;
  5061. }
  5062. .ProjTitleLabel{
  5063. -moz-user-select: none; /*火狐*/
  5064. -webkit-user-select: none; /*webkit浏览器*/
  5065. -ms-user-select: none; /*IE10*/
  5066. -khtml-user-select: none; /*早期浏览器*/
  5067. user-select: none;
  5068. }
  5069. .Icon_EC{
  5070. width: 20px;
  5071. height: 20px;
  5072. display: block;
  5073. }
  5074. .EC_wornning{
  5075. background: url(../img/icon_pic_01.png) 0 0 no-repeat
  5076. }
  5077. .formtextlabelgray .el-form-item__label{
  5078. color: #9B9B9B;
  5079. font-weight: 400;
  5080. }
  5081. .formtextlabelblack .el-form-item__label{
  5082. color: #000;
  5083. font-weight: 400;
  5084. }
  5085. .formtextlabelgray .el-form-item{
  5086. margin-bottom: 0;
  5087. }
  5088. .formtextlabelblack .el-form-item{
  5089. margin-bottom: 10px;
  5090. }
  5091. .beizhutext{
  5092. color: #888;
  5093. font-weight: 400
  5094. }
  5095. .height100{
  5096. clear: both;
  5097. width: 100%;
  5098. height: 100px;
  5099. }
  5100. .dibuBtn{
  5101. position: absolute;
  5102. bottom: 0px;
  5103. left: 10px;
  5104. }
  5105. .ECaddicon{
  5106. width: 14px;
  5107. height: 14px;
  5108. background: url(/static/img/icon_pic_01.png) 0 -44px no-repeat;
  5109. overflow: hidden;
  5110. padding: 0;
  5111. }
  5112. .ECaddiconUser{
  5113. width: 14px;
  5114. height: 14px;
  5115. background: url(/static/img/icon_pic_01.png) -28px -44px no-repeat;
  5116. overflow: hidden;
  5117. padding: 0;
  5118. display: block;
  5119. margin-top: 1px;
  5120. }
  5121. .ECaddiconcard{
  5122. width: 14px;
  5123. height: 14px;
  5124. background: url(/static/img/icon_pic_01.png) -42px -44px no-repeat;
  5125. overflow: hidden;
  5126. padding: 0;
  5127. display: block;
  5128. margin-top: 1px;
  5129. }
  5130. .Ecdel{
  5131. margin-left: 14px;
  5132. cursor: pointer;
  5133. }
  5134. .Ecdel:hover {
  5135. border-radius: 50%;
  5136. color: #ffffff;
  5137. background-color: #f00;
  5138. }
  5139. .addInput .el-input-group__append{
  5140. border-color: transparent
  5141. }
  5142. .UserItem{
  5143. display: inline-block;
  5144. padding: 3px 7px;
  5145. border-radius: 4px;
  5146. background-color: rgba(167, 168, 183, 1);
  5147. color: #fff;
  5148. font-size: 12px;
  5149. overflow: hidden;
  5150. margin-right: 4px;
  5151. }
  5152. .usertext{
  5153. display:block;
  5154. float: left;
  5155. margin-left: 6px;
  5156. }
  5157. .selectuserBox{
  5158. padding: 8px 0 4px 8px;
  5159. border-radius: 4px;
  5160. background-color: rgba(244, 244, 246, 1);
  5161. position: relative;
  5162. min-height: 28px;
  5163. margin-top: 5px;
  5164. }
  5165. .inputactived{
  5166. background-color: rgba(204, 205, 215, 1);
  5167. }
  5168. .inputactived .UserItem{
  5169. background-color: rgba(140, 0, 255, 1);
  5170. }
  5171. .inputactived .ECaddicon{
  5172. background: url(/static/img/icon_pic_01.png) 0px -58px no-repeat;
  5173. }
  5174. .ECIcondingwei{
  5175. position: absolute;
  5176. top: 13px;
  5177. right: 7px;
  5178. cursor: pointer;
  5179. }
  5180. .selctspan span{
  5181. cursor: pointer;
  5182. margin-left: 12px;
  5183. font-size: 22px!important;
  5184. }
  5185. .no-mlr{
  5186. margin-left: 0;
  5187. margin-right: 0;
  5188. }
  5189. .dialogIcon{
  5190. position: absolute;
  5191. top: 20px;
  5192. }
  5193. .diaTitle{
  5194. font-size: 18px;
  5195. /* line-height: 54px; */
  5196. text-align: center;
  5197. color: #000;
  5198. margin-bottom: 20px;
  5199. }
  5200. .centerfooter{
  5201. display: block;
  5202. text-align:center
  5203. }
  5204. .wornningDia .el-dialog{
  5205. width: 460px!important;
  5206. border-radius: 20px;
  5207. }
  5208. .centerfooter .el-button.is-round {
  5209. padding: 7px 84px;
  5210. }
  5211. .ECclockText{
  5212. color: rgba(136, 136, 136, 1);
  5213. font-size: 12px;
  5214. }
  5215. .ECclock{
  5216. display: inline-block;
  5217. width: 24px;
  5218. height: 24px;
  5219. background: url(/static/img/icon_pic_01.png) -24px -20px no-repeat;
  5220. }
  5221. .el-ecclock{
  5222. display: inline-block;
  5223. width: 20px;
  5224. height: 20px;
  5225. background: url(/static/img/icon_pic_01.png) -60px 0px no-repeat;
  5226. }
  5227. .el-ecclock-o{
  5228. display: inline-block;
  5229. width: 20px;
  5230. height: 20px;
  5231. background: url(/static/img/icon_pic_01.png) -140px 0px no-repeat;
  5232. }
  5233. .clockPostion{
  5234. position: relative;
  5235. top: 7px;
  5236. margin-left: 5px;
  5237. }
  5238. .Treenavbox{
  5239. overflow: hidden;
  5240. }
  5241. .treeNav{
  5242. margin: 0 px;
  5243. }
  5244. .treeNav li{
  5245. line-height:44px;
  5246. color: rgba(255, 255, 255, 1);
  5247. font-size: 17px;
  5248. padding-left: 16px;
  5249. cursor: pointer;
  5250. }
  5251. .treeNav li:hover{
  5252. transition: ease all 0.5s;
  5253. border-radius: 4px;
  5254. background-color: rgba(141, 143, 159, 0.1411764705882353);
  5255. }
  5256. .contentNav{
  5257. transition: ease all 0.5s;
  5258. border-radius: 4px;
  5259. background-color: rgba(167, 168, 183, 1);
  5260. }
  5261. .comlogoBox{
  5262. text-align: center;
  5263. width: 340px;
  5264. height: 255px;
  5265. line-height: 255px;
  5266. background-color: rgba(235, 235, 242, 1);
  5267. color: rgba(0, 0, 0, 1);
  5268. font-size: 17px;
  5269. cursor: pointer;
  5270. position: relative;
  5271. display: flex;
  5272. justify-content: center;
  5273. align-items: center;
  5274. }
  5275. .uploadImg{
  5276. position: absolute;
  5277. left: 50px;
  5278. }
  5279. .xindinwei{
  5280. top: 106px;
  5281. left: 195px;
  5282. }
  5283. .comlogoImgBox{
  5284. margin: 10px 0;
  5285. overflow: hidden;
  5286. }
  5287. .labelbiaoshi{
  5288. color: rgba(155, 155, 155, 1);
  5289. font-size: 14px;
  5290. display: block;
  5291. margin-bottom: 10px;
  5292. }
  5293. .bzInfo{
  5294. position: absolute;
  5295. bottom: 0px;
  5296. left: 10px;
  5297. }
  5298. .labelTosize{
  5299. color: rgba(173, 173, 173, 1);
  5300. font-size: 16px;
  5301. }
  5302. .yiyunTable_list_item{
  5303. overflow: hidden;
  5304. }
  5305. .liulanqiImgBox,
  5306. .shoujiImgBox{
  5307. display: table;
  5308. vertical-align: middle;
  5309. text-align: center;
  5310. color: rgba(0, 0, 0, 1);
  5311. font-size: 17px;
  5312. height: 240px;
  5313. background-color: rgba(235, 235, 242, 1);
  5314. }
  5315. .liulanqiImgBox{
  5316. width: 340px;
  5317. }
  5318. .shoujiImgBox{
  5319. width: 135px;
  5320. }
  5321. .el-radio__input.is-checked+.el-radio__label {
  5322. color: #000;
  5323. }
  5324. .topyichu::before{
  5325. content: '';
  5326. }
  5327. .ECvh_row_2{
  5328. min-height: calc(50vh - 130px);
  5329. }
  5330. .bgblack{
  5331. background-color: #ccc;
  5332. }
  5333. .el-progress-bar__outer ,.el-progress-bar__inner{
  5334. border-radius: 4px;
  5335. }
  5336. .el-input--suffix .el-input__inner {
  5337. padding-right: 30px;
  5338. background-color: #fff;
  5339. box-shadow: 0 2px 2px #cacaca;
  5340. border-radius: 4px;
  5341. border: 0.5px solid rgba(227, 227, 227, 1);
  5342. color: rgba(140, 0, 255, 1);
  5343. font-size: 15px;
  5344. }
  5345. .el-select .el-input .el-select__caret {
  5346. font-size: 26px;
  5347. }
  5348. .el-form-item__content {
  5349. overflow: initial;
  5350. }
  5351. /* 模板与应用 */
  5352. .layout_warp_4{
  5353. width: calc(100vw - 80px);
  5354. overflow: hidden;
  5355. margin: 0 auto
  5356. }
  5357. .appListBox{
  5358. padding: 0;
  5359. margin: 0;
  5360. }
  5361. .appListBox li{
  5362. margin: 10px 20px;
  5363. padding: 0;
  5364. text-align: center;
  5365. list-style: none;
  5366. float: left;
  5367. cursor: pointer;
  5368. }
  5369. .appImgIcon{
  5370. position: relative;
  5371. width: 130px;
  5372. height: 130px;
  5373. }
  5374. .appmark{
  5375. position: absolute;
  5376. width: 32px;
  5377. height: 32px;
  5378. border-radius: 50%;
  5379. top: 10px;
  5380. left: 10px;
  5381. color: rgb(140, 0, 255);
  5382. background-color: #fff;
  5383. font-size: 30px;
  5384. box-shadow: 0 3px 10px rgba(0, 0, 0, 0.32);
  5385. }
  5386. .Appname{
  5387. text-align: center;
  5388. line-height: 21px;
  5389. color: rgba(0, 0, 0, 1);
  5390. font-size: 16px;
  5391. }
  5392. .mark_disable{
  5393. background: url(/static/img/icon_pic_01.png) -100px 0px no-repeat;
  5394. }
  5395. .mark_able{
  5396. background: url(/static/img/icon_pic_01.png) -20px 0px no-repeat;
  5397. }
  5398. .mark_openclock{
  5399. background: url(/static/img/icon_pic_01.png) -80px 0px no-repeat;
  5400. }
  5401. .mark_normal{
  5402. opacity: 0;
  5403. }
  5404. .templateBoxItem{
  5405. margin: 20px;
  5406. height: 119px;
  5407. border-radius: 8px;
  5408. background-color: rgba(255, 255, 255, 1);
  5409. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  5410. position: relative;
  5411. border-top: 1px solid transparent;
  5412. }
  5413. .primaryText{
  5414. color: rgba(140, 0, 255, 1);
  5415. font-size: 12px;
  5416. }
  5417. .card_title{
  5418. color: rgba(0, 0, 0, 1);
  5419. font-size: 17px;
  5420. }
  5421. .cardBoxItemInner{
  5422. margin: 16px 17px 10px 20px;
  5423. }
  5424. .optionBtnlabel .primaryText{
  5425. position: absolute;
  5426. bottom: 13px;
  5427. }
  5428. .optionBtnlabel .primaryopBtn{
  5429. position: absolute;
  5430. right: 17px;
  5431. bottom: 10px;
  5432. }
  5433. .noshadow{
  5434. background-color: transparent;
  5435. box-shadow: 0 0 0 0;
  5436. }
  5437. .disadbled{
  5438. color: rgba(172, 172, 172, 1);
  5439. font-size: 13px;
  5440. background-color: rgba(227, 227, 227, 1);
  5441. border: 0.5px solid rgba(212, 212, 212, 1);
  5442. }
  5443. .disadbled:hover{
  5444. color: rgba(172, 172, 172, 1);
  5445. background-color: rgba(227, 227, 227, 1);
  5446. border: 0.5px solid rgba(212, 212, 212, 1);
  5447. }
  5448. .disadbledText{
  5449. color: rgba(136, 136, 136, 1);
  5450. }
  5451. .addlebel{
  5452. color: rgba(136, 136, 136, 1);
  5453. font-size: 12px;
  5454. display: block;
  5455. text-align: center;
  5456. }
  5457. .redText{
  5458. color: #D6243A ;
  5459. }
  5460. .addpicImg_large{
  5461. display: block;
  5462. width: 50px;
  5463. height: 50px;
  5464. margin: 23px auto 17px auto;
  5465. background: url(/static/img/icon_pic_01.png) 0px -70px no-repeat;
  5466. }
  5467. .cuspinter{
  5468. cursor: pointer;
  5469. box-shadow: 0 0 0 0;
  5470. border-radius: 8px;
  5471. border: 1px solid rgba(216, 216, 216, 1);
  5472. overflow: hidden;
  5473. height: 118px;
  5474. }
  5475. .appImgBox{
  5476. display: block;
  5477. width: 180px;
  5478. height: 180px;
  5479. margin: 50px auto;
  5480. text-align: center;
  5481. line-height: 180px;
  5482. }
  5483. .applistInfo{
  5484. color: rgba(235, 235, 242, 1);
  5485. font-size: 16px;
  5486. line-height: 40px;
  5487. border-bottom: 1px solid #8E909F;
  5488. }
  5489. .applistInfo:last-child{
  5490. border-bottom: 0px solid #8E909F;
  5491. }
  5492. .applistInfo p{
  5493. font-size: 16px;
  5494. line-height: 24px;
  5495. }
  5496. .hid{
  5497. height: 40px;
  5498. }
  5499. .appListBox li:hover{
  5500. border-radius: 20px;
  5501. background-color: rgba(227, 227, 227, 0.86);
  5502. transition: ease all 0.5s;
  5503. }
  5504. .marketcardItem{
  5505. margin:20px;
  5506. height: 120px;
  5507. border-radius: 8px;
  5508. background-color: rgba(255, 255, 255, 1);
  5509. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  5510. }
  5511. .minitext{
  5512. width: 300px;
  5513. line-height: 20px;
  5514. color: rgba(136, 136, 136, 1);
  5515. font-size: 13px;
  5516. }
  5517. .appDesc{
  5518. margin: 20px 25px 20px 10px;
  5519. height: 119px;
  5520. border-bottom: 1px solid #CCCDD7;
  5521. }
  5522. .addprimaryopBtn.el-button.is-round{
  5523. padding: 5px 27px;
  5524. }
  5525. .selctIcon{
  5526. width: 24px;
  5527. height: 24px;
  5528. display: block;
  5529. background: url(/static/img/icon_pic_01.png) 0px -20px no-repeat;
  5530. cursor: pointer;
  5531. }
  5532. .topBtngroup{
  5533. width: 86px!important;
  5534. transform-origin: center top;
  5535. z-index: 2102;
  5536. position: absolute;
  5537. top: 86px;
  5538. left: 59px;
  5539. }
  5540. .el-popover{
  5541. min-width: auto;
  5542. border-radius:4px;
  5543. }
  5544. .popoverNav li{
  5545. color: rgba(50, 50, 60, 1);
  5546. font-size: 14px;
  5547. padding: 10px 15px;
  5548. }
  5549. .Icon_size_128{
  5550. width: 128px;
  5551. height: 128px;
  5552. }
  5553. .Icon_size_108{
  5554. width: 108px;
  5555. height: 108px;
  5556. }
  5557. .Icon_size_62{
  5558. width: 62px;
  5559. height: 62px;
  5560. }
  5561. .Icon_size_32{
  5562. width: 32px;
  5563. height: 32px;
  5564. }
  5565. .IconBg{
  5566. border: 1px solid transparent
  5567. }
  5568. .IconBg:hover{
  5569. border: 1px dashed #7a7a88;
  5570. cursor: pointer;
  5571. transition: all ease 0.5s;
  5572. }
  5573. .AppIcon_group{
  5574. position: relative;
  5575. width: 338px;
  5576. margin: 0 auto;
  5577. margin-top: 106px;
  5578. }
  5579. .IconBg img{
  5580. width: 100%;
  5581. }
  5582. .center{
  5583. text-align: center;
  5584. }
  5585. .beizhu_11{
  5586. color: rgba(209, 209, 209, 1);
  5587. font-size: 11px;
  5588. }
  5589. .label_primary{
  5590. color: rgba(140, 0, 255, 1);
  5591. }
  5592. .label_danger{
  5593. color: rgba(214, 36, 58, 1);
  5594. }
  5595. .appFileBox{
  5596. list-style: none;
  5597. margin: 0;
  5598. padding: 0;
  5599. overflow: hidden;
  5600. }
  5601. .appFileBox li{
  5602. margin: 20px;
  5603. padding: 0;
  5604. float: left;
  5605. border-radius: 20px;
  5606. cursor: pointer;
  5607. position: relative;
  5608. transition: ease all 0.5s;
  5609. }
  5610. .appFileBox li:hover{
  5611. background-color: rgba(227, 227, 227, 0.86);
  5612. }
  5613. .appFileBox li>.appfileBtn{
  5614. opacity: 0;
  5615. }
  5616. .appFileBox li:hover>.appfileBtn{
  5617. opacity: 1;
  5618. }
  5619. .appfileImgIcon{
  5620. width: 180px;
  5621. height: 180px;
  5622. display: flex;
  5623. justify-items: center;
  5624. align-items: center;
  5625. }
  5626. .appfileImgIconItem{
  5627. display: block;
  5628. width: 180px;
  5629. height: 180px;;
  5630. }
  5631. .defualtappImg{
  5632. background: url(/static/img/appFileImg.png) -1800px 0px no-repeat;
  5633. }
  5634. .appImgIcon_{
  5635. background: url(/static/img/appFileImg.png) -1440px 0px no-repeat;
  5636. }
  5637. .appImgIcon_dwg{
  5638. background: url(/static/img/appFileImg.png) 0px 0px no-repeat;
  5639. }
  5640. .appImgIcon_zip{
  5641. background: url(/static/img/appFileImg.png) -180px 0px no-repeat;
  5642. }
  5643. .appImgIcon_skr{
  5644. background: url(/static/img/appFileImg.png) -360px 0px no-repeat;
  5645. }
  5646. .appImgIcon_rvt{
  5647. background: url(/static/img/appFileImg.png) -540px 0px no-repeat;
  5648. }
  5649. .appImgIcon_rar{
  5650. background: url(/static/img/appFileImg.png) -720px 0px no-repeat;
  5651. }
  5652. .appImgIcon_nwc{
  5653. background: url(/static/img/appFileImg.png) -900px 0px no-repeat;
  5654. }
  5655. .appImgIcon_3dmax{
  5656. background: url(/static/img/appFileImg.png) -1080px 0px no-repeat;
  5657. }
  5658. .appImgIcon_dxf{
  5659. background: url(/static/img/appFileImg.png) -1260px 0px no-repeat;
  5660. }
  5661. .mt-4{
  5662. margin-top: 4px;
  5663. }
  5664. .mb-6{
  5665. margin-bottom: 6px;
  5666. }
  5667. .appfileBtn{
  5668. width: 16px;
  5669. height: 16px;
  5670. overflow: hidden;
  5671. position: absolute;
  5672. top: 20px;
  5673. right: 20px;
  5674. }
  5675. .IconSetting{
  5676. display: block;
  5677. width: 17px;
  5678. height: 17px;
  5679. background: url(/static/img/icon_16.png) 0px -32px no-repeat;
  5680. }
  5681. .el-table--enable-row-hover .el-table__body tr:hover>td {
  5682. background-color: #f0f0f0;
  5683. }
  5684. .addUpfile{
  5685. width: 106px;
  5686. height: 106px;
  5687. margin: 0 auto;
  5688. }
  5689. .addUpfile .webuploader-pick{
  5690. display: block;
  5691. width: 106px;
  5692. height: 106px;
  5693. background: url(/static/img/newadd.png) 0 0 no-repeat;
  5694. background-color: transparent!important;
  5695. border: 0!important;
  5696. }
  5697. .addUpfile .webuploader-pick~div{
  5698. left: 0!important;
  5699. }
  5700. .searchInput{
  5701. float:right;
  5702. width: auto
  5703. }
  5704. .searchInput.el-input--suffix .el-input__inner{
  5705. box-shadow: 0 0 0 ;
  5706. background-color: #eee;
  5707. border-radius: 15px;
  5708. border: 1px solid transparent
  5709. }
  5710. .searchInput .el-input-group__prepend{
  5711. border: 0;
  5712. padding: 0;
  5713. }
  5714. .searchInputzhankai{
  5715. position: relative;
  5716. }
  5717. .searchInputzhankai i{
  5718. color: rgb(166,167,182);
  5719. line-height: 30px;
  5720. float: left;
  5721. margin-right: 5px;
  5722. cursor: pointer;
  5723. }
  5724. .searchInputzhankai i:focus{
  5725. color: rgb(0,0,0);
  5726. }
  5727. .searchInputzhankai input{
  5728. width: 200px;
  5729. height: 30px;
  5730. border: 0;
  5731. background-color: #eee;
  5732. border-radius: 15px;
  5733. text-indent: 0px;
  5734. }
  5735. .biaoqianweizhi1{
  5736. position: absolute;
  5737. bottom: 50px;
  5738. left: 20px;
  5739. }
  5740. .biaoqianweizhi2{
  5741. position: absolute;
  5742. bottom: 15px;
  5743. left: 20px;
  5744. cursor:pointer;
  5745. }
  5746. h4.biaoqianweizhi2{
  5747. color: rgba(255, 255, 255, 1);
  5748. font-size: 25px;
  5749. text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  5750. font-weight: 500;
  5751. display: -webkit-box;
  5752. -webkit-box-orient: vertical;
  5753. -webkit-line-clamp: 1;
  5754. overflow: hidden;
  5755. }
  5756. .deletIocn{
  5757. font-size: 30px;
  5758. }
  5759. .juzhongtext{
  5760. padding: 100px 0;
  5761. text-align: center;
  5762. }
  5763. .el-form-item__error {
  5764. color: #F56C6C;
  5765. font-size: 12px;
  5766. line-height: 1;
  5767. padding-top: 4px;
  5768. position: absolute;
  5769. top: 28%;
  5770. left: auto;
  5771. right: 10px;
  5772. background-color: #fff;
  5773. }
  5774. .card_box_pane{
  5775. width: 260px;
  5776. height: 120px;
  5777. border-radius: 10px;
  5778. background-color: #fff;
  5779. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  5780. margin-top: 40px;
  5781. margin-bottom: 55px;
  5782. overflow: hidden;
  5783. position: relative;
  5784. float: left;
  5785. margin-right: 40px;
  5786. cursor: pointer;
  5787. }
  5788. .card_box_pane>img{
  5789. width: 100%;
  5790. height: 100%;
  5791. }
  5792. .icontree{
  5793. display: block
  5794. }
  5795. .tree-icon {
  5796. display:inline-block;
  5797. }
  5798. .el-tree-node__expand-icon.is-leaf {
  5799. color: transparent;
  5800. cursor: default;
  5801. width: 0;
  5802. }
  5803. .treeItembox i{
  5804. margin-right: 5px;
  5805. }
  5806. .treeItembox{
  5807. display: block;
  5808. width: 100%;
  5809. }
  5810. .el-icon-models{
  5811. background: url("../img/AdminImg/icon_model.png") 0 0;
  5812. width: 16px;
  5813. height: 16px;
  5814. margin-right: 0px;
  5815. }
  5816. .wenjianjialiebiao{
  5817. position: relative;
  5818. }
  5819. .mianbaoxiedinwei{
  5820. position: absolute;
  5821. top: 5px;
  5822. left: 5px;
  5823. z-index: 6;
  5824. }
  5825. .backprevIcon{
  5826. display: inline-block;
  5827. width: 17px;
  5828. height: 17px;
  5829. border-radius: 8px;
  5830. overflow: hidden;
  5831. text-align: center;
  5832. line-height: 16px;
  5833. background-color: rgba(255, 255, 255, 1);
  5834. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  5835. position: relative;
  5836. top: 3px;
  5837. margin-left: 7px;
  5838. margin-right: 10px;
  5839. }
  5840. .el-breadcrumb__item:last-child .el-breadcrumb__inner{
  5841. color: #000
  5842. }
  5843. .el-breadcrumb__inner{
  5844. line-height: 24px;
  5845. }
  5846. .el-breadcrumb__separator {
  5847. color: rgba(156, 0, 255, 1);
  5848. }
  5849. .el-form-item {
  5850. margin-bottom: 10px;
  5851. }
  5852. .kapian_card{
  5853. margin: 0 10px;
  5854. height: 120px;
  5855. border-radius: 10px;
  5856. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  5857. position: relative;
  5858. overflow: hidden;
  5859. }
  5860. .kapian_card img{
  5861. display: block;
  5862. width: 100%;
  5863. height: 100%;
  5864. cursor: pointer;
  5865. }
  5866. .cl_card{
  5867. margin: 0 20px 0 10px;
  5868. }
  5869. .ce_card{
  5870. margin: 0 20px 0 20px;
  5871. }
  5872. .cr_card{
  5873. margin: 0 10px 0 20px;
  5874. }
  5875. .el-tree-node__expand-icon{
  5876. font-size: 18px;
  5877. }
  5878. .el-tree-node__content>.el-tree-node__expand-icon {
  5879. padding: 1px;
  5880. }
  5881. .filebox{
  5882. width: 70px;
  5883. height: 100px;
  5884. overflow: hidden;
  5885. box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  5886. cursor: pointer;
  5887. }
  5888. .listimg{
  5889. width: 100px;
  5890. height: 100px;
  5891. overflow: hidden;
  5892. position: relative;
  5893. display: flex;
  5894. cursor: pointer;
  5895. filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.3));
  5896. justify-content: center;
  5897. align-items: center;
  5898. }
  5899. .listimg img{
  5900. max-width: 100px;
  5901. max-height: 100px;
  5902. }
  5903. .listimg .houzuidinwei{
  5904. font-size: 18px;
  5905. top: 71px;
  5906. right: 23px;
  5907. }
  5908. .wordicon{
  5909. background: url(/static/img/appfiletapy.png) 0 0;
  5910. }
  5911. .excelicon{
  5912. background: url(/static/img/appfiletapy.png) -70px 0;
  5913. }
  5914. .pdficon{
  5915. background: url(/static/img/appfiletapy.png) -140px 0;
  5916. }
  5917. .dwgicon{
  5918. background: url(/static/img/appfiletapy.png) -210px 0;
  5919. }
  5920. .dxficon{
  5921. background: url(/static/img/appfiletapy.png) -280px 0;
  5922. }
  5923. .maxicon{
  5924. background: url(/static/img/appfiletapy.png) -350px 0;
  5925. }
  5926. .nwcicon{
  5927. background: url(/static/img/appfiletapy.png) -420px 0;
  5928. }
  5929. .raricon{
  5930. background: url(/static/img/appfiletapy.png) -490px 0;
  5931. }
  5932. .rvticon{
  5933. background: url(/static/img/appfiletapy.png) -560px 0;
  5934. }
  5935. .skpicon{
  5936. background: url(/static/img/appfiletapy.png) -630px 0;
  5937. }
  5938. .zipicon{
  5939. background: url(/static/img/appfiletapy.png) -700px 0;
  5940. }
  5941. .abcicon{
  5942. background: url(/static/img/appfiletapy.png) -770px 0;
  5943. }
  5944. .addUpfile2 .webuploader-pick {
  5945. display: block;
  5946. width: 680px;
  5947. line-height: 100px;
  5948. height: 100px;
  5949. background-color: #fff!important;
  5950. border: 0!important;
  5951. border-radius: 10px!important;
  5952. text-indent: 58px;
  5953. }
  5954. .addUpfile2 .webuploader-pick:hover{
  5955. color: #323232!important
  5956. }
  5957. .addUpfile2 .webuploader-pick~div{
  5958. content: '点击上传';
  5959. position: absolute;
  5960. top: 0px;
  5961. left: 0px;
  5962. width: 680px;
  5963. height: 106px;
  5964. overflow: hidden;
  5965. bottom: auto;
  5966. right: auto;
  5967. }
  5968. .uploadBtn{
  5969. position: relative;
  5970. }
  5971. .uploadBtnImg{
  5972. position: absolute;
  5973. left: 37%;
  5974. top: 26%;
  5975. z-index: 1;
  5976. }
  5977. .dragbox .shangchuandinwei{
  5978. width: 400px;
  5979. /* height: 120px; */
  5980. background-color: rgba(255,255,255,1);
  5981. border: 0;
  5982. }
  5983. /* .updatebox li{
  5984. background-color: #fff;
  5985. } */
  5986. .redlabel{
  5987. color: rgba(156, 0, 255, 1);
  5988. font-size: 13px;
  5989. text-align: left;
  5990. }
  5991. .gundontiao{
  5992. width: calc(100vw - 120px);
  5993. height: calc(100vh - 120px);
  5994. overflow-x: auto;
  5995. overflow-y: auto;
  5996. }
  5997. .searhNodeNameconcenter{
  5998. width: 300px;
  5999. margin: 0 auto;
  6000. }
  6001. .el-message-box {
  6002. border-radius: 8px;
  6003. }
  6004. .ecload.yiyunfile-Uploader .webuploader-pick {
  6005. border-radius: 4px !important;
  6006. font-size: 13px;
  6007. font-weight: 500;
  6008. width: 112px;
  6009. height: 19px;
  6010. line-height: 20px;
  6011. background: #fff!important;
  6012. color: #323232;
  6013. cursor: pointer;
  6014. border: 0.5px solid #e3e3e3!important;
  6015. box-shadow: 0 0 0 0;
  6016. display: inline-block;
  6017. font-family: Yahei
  6018. }
  6019. .ecload.yiyunfile-Uploader:hover .webuploader-pick {
  6020. color: #8C00FF!important;
  6021. border: 0.5px solid #8C00FF!important;
  6022. }
  6023. .ecBtngroup_Item{
  6024. display: inline-block;
  6025. margin-right: 5px;
  6026. }
  6027. .ecload{
  6028. position: relative;
  6029. top: 5px;
  6030. }
  6031. .meassageyichu{
  6032. height: 20px;
  6033. overflow: hidden;
  6034. }
  6035. /* 提示框 */
  6036. .el-message-box__status+.el-message-box__message {
  6037. padding-left: 50px;
  6038. padding-right: 50px;
  6039. padding-top: 14px;
  6040. padding-bottom: 32px;
  6041. text-align: center;
  6042. }
  6043. .el-message-box__status.el-icon-warning {
  6044. color: #F8D12A;
  6045. }
  6046. .el-message-box__status {
  6047. position: absolute;
  6048. top: -22px;
  6049. -webkit-transform: translateY(-50%);
  6050. transform: translateY(-50%);
  6051. font-size: 28px!important;
  6052. }
  6053. .el-message-box {
  6054. box-shadow: 0px 12px 14px 0px rgba(0, 0, 0, 0.2);
  6055. width: 460px;
  6056. }
  6057. .el-message-box__message p {
  6058. margin: 0;
  6059. line-height: 24px;
  6060. font-size: 18px;
  6061. color: #000;
  6062. }
  6063. .el-message-box .el-message-box__btns .el-button{
  6064. width: 210px;
  6065. height: 30px;
  6066. padding: 7px 20px;
  6067. border-radius: 30px;
  6068. font-size: 14px;
  6069. }
  6070. .el-message-box__content {
  6071. padding: 40px 15px;
  6072. }
  6073. .el-dialog {
  6074. border-radius: 30px;
  6075. box-shadow: 0px 12px 14px 0px rgba(0, 0, 0, 0.2);
  6076. }
  6077. .el-dialog__header {
  6078. padding: 30px 20px 0px;
  6079. text-align: center;
  6080. }
  6081. .el-dialog__footer .el-button{
  6082. width: 200px;
  6083. height: 30px;
  6084. padding: 7px 20px;
  6085. border-radius: 30px;
  6086. font-size: 14px;
  6087. }
  6088. .el-dialog__headerbtn,.el-message-box__headerbtn {
  6089. font-size: 28px;
  6090. }
  6091. .el-message-box__header {
  6092. position: relative;
  6093. text-align: center;
  6094. }
  6095. .el-message-box__header {
  6096. padding: 40px 15px 10px;
  6097. }
  6098. .el-message-box__btns {
  6099. padding: 5px 15px 8px;
  6100. }
  6101. .el-dialog--center .el-dialog__body {
  6102. overflow: hidden;
  6103. }
  6104. .longform .el-cascader{
  6105. width: 410px;
  6106. }
  6107. /* 层级树 */
  6108. .avtarface{
  6109. width: 60px;
  6110. height: 60px;
  6111. border-radius: 30px;
  6112. /* background-color: rgba(235, 235, 242, 1); */
  6113. cursor: pointer;
  6114. overflow: hidden;
  6115. position: relative;
  6116. }
  6117. .avtarface img{
  6118. width: 100%;
  6119. height: 100%;
  6120. }
  6121. .avtarface:hover>.eiditIconimgBox{
  6122. position: absolute;
  6123. top: 0;
  6124. left: 0;
  6125. width: 100%;
  6126. height: 100%;
  6127. text-align: center;
  6128. background-color: rgba(0,0,0,.5);
  6129. transition: ease all 0.5s;
  6130. }
  6131. .eiditIconimg{
  6132. font-size: 26px;
  6133. width: 32px;
  6134. height: 32px;
  6135. border-radius: 16px;
  6136. background-color: #fff;
  6137. display: block;
  6138. margin: 0 auto;
  6139. margin-top: 14px;
  6140. line-height: 32px;
  6141. color: #8c00ff;
  6142. }
  6143. .vhLine{
  6144. width: 1px;
  6145. height: 24px;
  6146. background-color: rgba(50, 50, 60, 1);
  6147. margin-top: 20px
  6148. }
  6149. .Text_tiny{
  6150. font-size: 12px;
  6151. }
  6152. .firstPeople{
  6153. width: 60px;
  6154. overflow: hidden;
  6155. text-align: center;
  6156. }
  6157. .ECworkerList{
  6158. text-align: center;
  6159. margin-left: 6px;
  6160. }
  6161. .ECworkerList li{
  6162. float: left;
  6163. margin: 0 12px;
  6164. cursor: pointer;
  6165. margin-bottom: 10px;
  6166. position: relative
  6167. }
  6168. .largeaddEC{
  6169. line-height: 60px;
  6170. font-size: 32px;
  6171. color: rgba(50, 50, 60, 0.82);
  6172. }
  6173. .addBtn_new{
  6174. text-align: center;
  6175. transition: ease all 0.5s;
  6176. color: rgba(235, 235, 242, 1);
  6177. width: 20px;
  6178. height: 60px;
  6179. background-color: rgba(235, 235, 242, 1);
  6180. border-radius: 10px;
  6181. }
  6182. .middleaddEC{
  6183. line-height: 60px;
  6184. font-size: 16px;
  6185. color: rgb(80, 82, 92);
  6186. cursor: pointer;
  6187. }
  6188. .addBtn_new:hover{
  6189. background-color: rgb(248, 209, 42);
  6190. }
  6191. .ec_number{
  6192. font-style: normal;
  6193. }
  6194. .tinyText_wirte{
  6195. color: rgba(255, 255, 255, 1);
  6196. font-weight: 200;
  6197. font-size: 12px;
  6198. margin-top: 8px;
  6199. width: 62px;
  6200. display: -webkit-box;
  6201. -webkit-box-orient: vertical;
  6202. -webkit-line-clamp: 1;
  6203. overflow: hidden;
  6204. }
  6205. .chengyuanbox{
  6206. width: 82%;
  6207. }
  6208. .eidtrepFirst{
  6209. position: relative;
  6210. }
  6211. .eidtrepFirstIconBox{
  6212. position: absolute;
  6213. left: 0;
  6214. top: 0;
  6215. width: 60px;
  6216. height: 60px;
  6217. z-index: 2;
  6218. overflow: hidden;
  6219. border-radius: 30px;
  6220. background-color: rgba(0, 0, 0, 0.4);
  6221. cursor: pointer;
  6222. transition: ease all 0.5s;
  6223. overflow: hidden;
  6224. opacity: 0;
  6225. }
  6226. .eidtrepFirst:hover .eidtrepFirstIconBox{
  6227. opacity: 1;
  6228. }
  6229. .eidtrepFirstIcon {
  6230. width: 32px;
  6231. height: 32px;
  6232. text-align: center;
  6233. line-height: 32px;
  6234. background-color: #ffffffdb;
  6235. font-size: 20px;
  6236. padding: 0;
  6237. border-radius: 32px;
  6238. color: #8c00ff;
  6239. display: block;
  6240. margin: 0 auto;
  6241. margin-top: 15px
  6242. }
  6243. .shenlvbiox{
  6244. width: 144px;
  6245. height: 60px;
  6246. }
  6247. .morePeople{
  6248. float: left;
  6249. width: 32px;
  6250. height: 32px;
  6251. overflow: hidden;
  6252. border-radius: 16px;
  6253. margin: 14px 4px;
  6254. background-color: #fff;
  6255. }
  6256. .morePeople img{
  6257. width: 100%;
  6258. height: 100%;
  6259. }
  6260. .morePeopleBox{
  6261. width: 120px;
  6262. margin: 0 auto
  6263. }
  6264. .EC_searchBox .el-input--suffix .el-input__inner{
  6265. box-shadow: 0 0 0 ;
  6266. border: 1px solid transparent;
  6267. text-indent: 20px;
  6268. }
  6269. .EC_searchBox .el-input--suffix .el-input__inner:hover{
  6270. border: 1px solid rgba(140, 0, 255, 1);
  6271. }
  6272. .EC_searchBox .el-input__suffix{
  6273. top:5px;
  6274. width: 20px;
  6275. height: 20px;
  6276. border-radius: 10px;
  6277. background-color:rgba(214, 36, 58, 1);
  6278. background: url(../img/icon_pic_01.png) -120px 0 no-repeat
  6279. }
  6280. .EC_searchBox .el-input__suffix i,.searchInput .el-input__suffix i{
  6281. opacity: 0
  6282. }
  6283. .searchInput .el-input__suffix{
  6284. top: 3px;
  6285. width: 20px;
  6286. height: 20px;
  6287. border-radius: 10px;
  6288. background-color:rgba(214, 36, 58, 1);
  6289. background: url(../img/icon_pic_01.png) -120px 0 no-repeat
  6290. }
  6291. .huangguan{
  6292. display: block;
  6293. background: url(../img/huangguan.png) 0 -19px no-repeat;
  6294. width: 26px;
  6295. height: 19px;
  6296. float: left;
  6297. margin-top: 7px;
  6298. margin-right: 8px;
  6299. }
  6300. .huangguanactive{
  6301. display: block;
  6302. background: url(../img/huangguan.png) 0 0px no-repeat;
  6303. width: 26px;
  6304. height: 19px;
  6305. float: left;
  6306. margin-top: 7px;
  6307. margin-right: 8px;
  6308. }
  6309. .zhangkai_up{
  6310. display: block;
  6311. width: 58px;
  6312. height: 58px;
  6313. background: url(../img/updown.png) 0 0 no-repeat;
  6314. margin-left: 3px;
  6315. }
  6316. .zhangkai_down{
  6317. display: block;
  6318. width: 58px;
  6319. height: 58px;
  6320. background: url(../img/updown.png) 0 -58px no-repeat;
  6321. margin-left: 3px;
  6322. }
  6323. .newweizhi{
  6324. position: absolute;
  6325. left: 85px;
  6326. top: 0px;
  6327. }
  6328. .xiezuobox>div{
  6329. margin-bottom: 20px;
  6330. }
  6331. .large_huangguan{
  6332. display: block;
  6333. width: 60px;
  6334. height: 60px;
  6335. color: #878787;
  6336. font-size: 32px;
  6337. background-color: #EBEBF2;
  6338. text-align: center;
  6339. line-height: 60px;
  6340. }
  6341. .ec_dialog{
  6342. width: 100%;
  6343. height: 100%;
  6344. position: fixed;
  6345. top: 0;
  6346. background-color: rgba(0,0,0,0.0);
  6347. z-index: 999;
  6348. }
  6349. .ec_dialogBox{
  6350. width: 800px;
  6351. height: 500px;
  6352. border-radius: 8px;
  6353. background-color: rgba(255, 255, 255, 1);
  6354. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  6355. margin: 0 auto;
  6356. margin-top: 150px;
  6357. }
  6358. .ec_dialogBoxBody{
  6359. height: 360px;
  6360. }
  6361. .line{
  6362. clear: both;
  6363. height: 1px;
  6364. background-color: #EBEEF5;
  6365. }
  6366. .ec_dialogBoxHeadTitle{
  6367. margin-left: 16px;
  6368. line-height: 60px;
  6369. }
  6370. .ec_dialogBoxHeadclose{
  6371. line-height: 60px;
  6372. margin-right: 20px;
  6373. }
  6374. .ec_dialogBoxBody .el-cascader-panel.is-bordered {
  6375. width: 768px;
  6376. height: 344px;
  6377. border-radius: 8px;
  6378. background-color: rgba(246, 246, 246, 1);
  6379. border: 1px solid rgba(227, 227, 227, 1);
  6380. overflow-x: auto;
  6381. margin: 12px auto;
  6382. }
  6383. .ec_dialogBoxBody .el-cascader-menu__wrap{
  6384. height: 344px;
  6385. overflow-y: auto
  6386. }
  6387. .ec_dialogBoxBody .el-cascader-node{
  6388. padding: 0 20px 0 0;
  6389. }
  6390. .ec_dialogBoxBody .el-cascader-menu__list {
  6391. padding: 6px 16px;
  6392. }
  6393. .ec_dialogBoxBody .el-cascader-node__prefix {
  6394. position: absolute;
  6395. left: -10px;
  6396. }
  6397. .ec_dialogBoxBody .el-radio__inner {
  6398. border: 1px solid #62626F;
  6399. background-color: #62626F;
  6400. }
  6401. .ec_dialogBoxfooter .el-button {
  6402. display: inline-block;
  6403. transition: .1s;
  6404. font-weight: 500;
  6405. -moz-user-select: none;
  6406. font-size: 16px;
  6407. border-radius: 4px;
  6408. width: 369px;
  6409. height: 32px;
  6410. border-radius: 8px;
  6411. border: 0;
  6412. background-color: #fff;
  6413. margin: 10px;
  6414. box-shadow: 0 3px 7px 2px #d6d6d8;
  6415. padding: 0!important;
  6416. margin-top: 15px;
  6417. cursor: pointer;
  6418. }
  6419. .ec_dialogBoxBody .el-cascader-panel.is-bordered::-webkit-scrollbar {
  6420. width: 5px;
  6421. height: 5px;
  6422. }
  6423. .ec_dialogBoxBody .el-cascader-panel.is-bordered::-webkit-scrollbar-track {
  6424. background-color:transparent;
  6425. -webkit-border-radius: 2em;
  6426. -moz-border-radius: 2em;
  6427. border-radius:2em;
  6428. }
  6429. .ec_dialogBoxBody .el-cascader-panel.is-bordered::-webkit-scrollbar-thumb {
  6430. background-color:#adadad;
  6431. -webkit-border-radius: 2em;
  6432. -moz-border-radius: 2em;
  6433. border-radius:2em;
  6434. }
  6435. .mini_typeBtn.el-button {
  6436. padding: 2px 20px;
  6437. }
  6438. .tianjiaxiezuorenBox>.tianjiaxiezuorenBox{
  6439. padding-left: 25px;
  6440. }
  6441. .hand{
  6442. cursor: pointer;
  6443. transition: ease all 0.5s;
  6444. }
  6445. .diaform .el-form-item__label{
  6446. color: #606266;
  6447. }
  6448. .ECupload .el-upload-dragger {
  6449. width: 420px;
  6450. height: 32px;
  6451. }
  6452. .ECupload .el-upload-dragger .el-icon-upload {
  6453. font-size: 28px;
  6454. margin: -10px 21px 0px;
  6455. float: left;
  6456. }
  6457. .ECupload .el-upload-dragger .el-upload__text {
  6458. font-size: 12px;
  6459. float: left;
  6460. line-height: 30px;
  6461. }
  6462. .longUploder .webuploader-pick{
  6463. width: 100%;
  6464. }
  6465. .main_workerBox{
  6466. width: 380px;
  6467. height: 192px;
  6468. border-radius: 4px;
  6469. border: 1px solid rgba(255, 210, 50, 1);
  6470. }
  6471. .largehuangguan{
  6472. font-size: 48px;
  6473. color: rgba(248, 209, 42, 1);
  6474. margin-left: 10px;
  6475. margin-top: 10px;
  6476. display: inline-block;
  6477. }
  6478. .rentou_alrge{
  6479. width: 120px;
  6480. height: 120px;
  6481. margin: 0 auto;
  6482. background:url(../img/huangguan.png) 0 -98px no-repeat;
  6483. position: relative;
  6484. top: -26px;
  6485. }
  6486. .middlehuangguan{
  6487. font-size: 49px;
  6488. color: #FFD232;
  6489. position: relative;
  6490. top: -10px;
  6491. margin-right: 10px;
  6492. }
  6493. .mainpeople_H{
  6494. height: 26px;
  6495. border-radius: 4px;
  6496. border: 1px solid rgba(255, 210, 50, 1);
  6497. padding: 20px 10px;
  6498. }
  6499. .mainpeople_H.user_info_item .user_info_faceImg{
  6500. margin-top: 0;
  6501. }
  6502. .largeclose{
  6503. font-size: 16px;
  6504. position: relative;
  6505. top: -6px;
  6506. }
  6507. .diaTip{
  6508. width: 348px;
  6509. color: rgba(235, 235, 242, 1);
  6510. font-size: 14px;
  6511. text-align: left;
  6512. margin: 0 auto;
  6513. margin-top: 16px;
  6514. }
  6515. .self_slider .el-slider__runway,.self_slider .el-slider__bar{
  6516. height: 1px;
  6517. background-color: #D8D8D8 ;
  6518. }
  6519. .self_slider .el-slider__button{
  6520. width: 24px;
  6521. height: 24px;
  6522. border-radius: 50%;
  6523. background: rgba(255, 255, 255, 1);
  6524. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  6525. }
  6526. .self_slider .el-slider__button-wrapper{
  6527. top: -18px;
  6528. }
  6529. .midupload .webuploader-pick{
  6530. width: 80px;
  6531. height: 20px;
  6532. border-radius: 4px!important;
  6533. border: 0.5px solid rgba(227, 227, 227, 1)!important;
  6534. background-color: #fff!important;
  6535. line-height: 18px;
  6536. color: rgba(0, 0, 0, 1);
  6537. font-size: 13px;
  6538. text-align: center;
  6539. box-shadow: 0 1px 2px #848484;
  6540. transition: ease all 0.5s;
  6541. }
  6542. .midupload .webuploader-pick:hover{
  6543. color: #8C00FF!important;
  6544. border-color: #8C00FF!important;
  6545. }
  6546. .derect_right{
  6547. display: inline-block;
  6548. width: 16px;
  6549. height: 16px;
  6550. background: url(../img/icon_file2.png) 0 -80px no-repeat;
  6551. }
  6552. .fileIcon_16{
  6553. display: inline-block;
  6554. width: 16px;
  6555. height: 16px;
  6556. position: relative;
  6557. top: 3px;
  6558. background: url(../img/icon_file2.png) 0 -240px no-repeat;
  6559. }
  6560. .fileIcon_word{
  6561. background: url(../img/icon_file2.png) 0 -16px no-repeat;
  6562. }
  6563. .fileIcon_jpg,.fileIcon_png{
  6564. background: url(../img/icon_file2.png) 0 -16px no-repeat;
  6565. }
  6566. .fileIcon_dwg{
  6567. background: url(../img/icon_file2.png) 0 -96px no-repeat;
  6568. }
  6569. .fileIcon_rar{
  6570. background: url(../img/icon_file2.png) 0 -112px no-repeat;
  6571. }
  6572. .fileIcon_skp{
  6573. background: url(../img/icon_file2.png) 0 -128px no-repeat;
  6574. }
  6575. .fileIcon_rvt{
  6576. background: url(../img/icon_file2.png) 0 -144px no-repeat;
  6577. }
  6578. .fileIcon_zip{
  6579. background: url(../img/icon_file2.png) 0 -128px no-repeat;
  6580. }
  6581. .fileIcon_nwc{
  6582. background: url(../img/icon_file2.png) 0 -176px no-repeat;
  6583. }
  6584. .fileIcon_3dmax,.fileIcon_max{
  6585. background: url(../img/icon_file2.png) 0 -192px no-repeat;
  6586. }
  6587. .fileIcon_dxf{
  6588. background: url(../img/icon_file2.png) 0 -208px no-repeat;
  6589. }
  6590. .fileIcon_weizi{
  6591. background: url(../img/icon_file2.png) 0 -224px no-repeat;
  6592. }
  6593. .fileIcon_doc{
  6594. background: url(../img/icon_file2.png) 0 -304px no-repeat;
  6595. }
  6596. .fileIcon_pdf{
  6597. background: url(../img/icon_file2.png) 0 -272px no-repeat;
  6598. }
  6599. .fileIcon_ppt{
  6600. background: url(../img/icon_file2.png) 0 -288px no-repeat;
  6601. }
  6602. .fileIcon_excel{
  6603. background: url(../img/icon_file2.png) 0 -320px no-repeat;
  6604. }
  6605. .fileIcon_png,.fileIcon_jpg,.fileIcon_jpeg{
  6606. background: url(../img/icon_file2.png) 0 -336px no-repeat;
  6607. }
  6608. .fileIcon_other{
  6609. background: url(../img/icon_file2.png) 0 -352px no-repeat;
  6610. }
  6611. .noborderbtn .el-input-group__append{
  6612. border: 1px solid transparent;
  6613. color: #cccdd7;
  6614. background-color: rgba(244, 244, 246, 1);
  6615. }
  6616. .noborderbtn .el-input-group__append:hover{
  6617. color: #62626F;
  6618. }
  6619. .middiaHeight{
  6620. height: 300px;
  6621. overflow-y: auto;
  6622. }
  6623. .middiaHeight .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{
  6624. background-color: rgba(97, 97, 111, 0.12);
  6625. }
  6626. .middiaHeight .el-tree-node__content:hover{
  6627. background-color: #f0f7ff;
  6628. }
  6629. .color1{
  6630. color: #8c00ff;
  6631. }
  6632. .color2{
  6633. color: #0012ff;
  6634. }
  6635. .DevtopIcon{
  6636. position: absolute;
  6637. left: -40px;
  6638. top: 6px;
  6639. }
  6640. .orginoverflow{
  6641. overflow: inherit;
  6642. }
  6643. button.yiyuntitle.myFolderName{
  6644. font-size: 20px;
  6645. text-align: center;
  6646. line-height: 37px;
  6647. border: 0;
  6648. font-weight: 400;
  6649. font-family: PingFang SC;
  6650. cursor: pointer;
  6651. background-color: transparent;
  6652. padding: 0;
  6653. }
  6654. button.yiyuntitle.nowFolderName{
  6655. font-size: 20px;
  6656. border-radius: 4px;
  6657. background-color: rgba(255, 255, 255, 1);
  6658. /* box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2); */
  6659. text-align: center;
  6660. line-height: 37px;
  6661. padding: 0 16px;
  6662. border: 0;
  6663. font-weight: 400;
  6664. font-family: PingFang SC;
  6665. cursor: pointer;
  6666. margin-right: 11px;
  6667. position: relative;
  6668. top: 2px;
  6669. }
  6670. .shadowbtn{
  6671. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  6672. }
  6673. h3.defualth3{
  6674. color: #A7A8B7;
  6675. font-size: 18px;
  6676. float: left;
  6677. margin-right: 10px;
  6678. cursor: pointer;
  6679. line-height: 31px;
  6680. text-align: center;
  6681. transition: ease all 0.5s;
  6682. border-radius: 4px;
  6683. transition: 0.2s all linear;
  6684. padding: 0 10px;
  6685. font-weight: 400;
  6686. }
  6687. h3.defualth3:hover{
  6688. background-color: rgb(235,235,242);
  6689. }
  6690. .sectitle{
  6691. border: 0;
  6692. font-weight: 500;
  6693. font-family: PingFang SC;
  6694. max-width: 76px;
  6695. padding: 0 14px;
  6696. height: 28px;
  6697. border-radius: 4px;
  6698. background-color: rgba(250, 250, 250, 1);
  6699. color: rgba(136, 136, 136, 1);
  6700. font-size: 12px;
  6701. overflow: hidden;
  6702. text-overflow:ellipsis;
  6703. white-space: nowrap;
  6704. cursor: pointer;
  6705. }
  6706. .sectitle:hover{
  6707. color: rgb(140, 0, 255);
  6708. }
  6709. /* h3.defualth3::before {
  6710. content: "";
  6711. position: absolute;
  6712. top: 0;
  6713. left: 100%;
  6714. width: 0;
  6715. height: 100%;
  6716. background-color: rgb(235,235,242);
  6717. transition: 0.2s all linear;
  6718. }
  6719. h3.defualth3:hover::before {
  6720. width: 100%;
  6721. height: 100%;
  6722. top: 0;
  6723. left: 0;
  6724. background-color: rgb(255,255,255);
  6725. transition-delay: 0.1s;
  6726. z-index: -1;
  6727. }
  6728. h3.defualth3:hover ~ h3.defualth3::before {
  6729. left: 0;
  6730. } */
  6731. h3.curactive{
  6732. color: #000000;
  6733. background-color: rgba(204, 205, 215, 1);
  6734. }
  6735. .hands{
  6736. cursor: pointer;
  6737. margin-right: 20px;
  6738. }
  6739. .hands:hover{
  6740. color: #409EFF;
  6741. }
  6742. .tabtltlebox{
  6743. display: flex;
  6744. vertical-align: baseline;
  6745. }
  6746. .icon-icon_shouqi.zhankaiIcon{
  6747. transform: rotate(180deg);
  6748. -ms-transform:rotate(180deg); /* IE 9 */
  6749. -moz-transform:rotate(180deg); /* Firefox */
  6750. -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
  6751. -o-transform:rotate(180deg); /* Opera */
  6752. }
  6753. .closepageH{
  6754. height: 54px;
  6755. transition: ease all 0.5s;
  6756. }
  6757. .myselfupload .el-upload-dragger {
  6758. height: 30px;
  6759. }
  6760. .myselfupload .el-upload-dragger .el-icon-upload {
  6761. font-size: 24px;
  6762. margin: 0;
  6763. line-height: 28px;
  6764. float: left;
  6765. padding-left: 30px;
  6766. }
  6767. .myselfupload .el-upload-dragger .el-upload__text{
  6768. line-height: 28px;
  6769. }
  6770. .contextmenu {
  6771. margin: 0;
  6772. background: #fff;
  6773. z-index: 3000;
  6774. position: absolute;
  6775. list-style-type: none;
  6776. padding: 5px 0;
  6777. border-radius: 4px;
  6778. font-size: 12px;
  6779. font-weight: 400;
  6780. color: #333;
  6781. box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.3);
  6782. }
  6783. .rightMenu>li{
  6784. line-height: 36px;
  6785. font-size: 14px;
  6786. padding: 0 20px;
  6787. color: #606266;
  6788. }
  6789. .rightMenu>li:hover{
  6790. cursor: pointer;
  6791. background-color: #ecf5ff;
  6792. color: #66b1ff;
  6793. }
  6794. li.secondMenu:hover{
  6795. background-color: transparent;
  6796. }
  6797. li.secondMenu ul li{
  6798. padding-left: 10px;
  6799. }
  6800. li.secondMenu ul li:hover {
  6801. background-color: rgb(230, 235, 241);
  6802. cursor: pointer;
  6803. }
  6804. .appImgiconbox{
  6805. width: 70px;
  6806. height: 70px;
  6807. border-radius: 35px;
  6808. margin: 10px auto;
  6809. }
  6810. .appImgiconbox img{
  6811. width: 70px;
  6812. }
  6813. .centertext{
  6814. text-align: center;
  6815. }
  6816. .yyerrtip{
  6817. color: red;
  6818. font-weight: bold;
  6819. position: absolute;
  6820. right: 12px;
  6821. top: 19px;
  6822. z-index: 999;
  6823. }
  6824. .loginright_btn.nopadding{
  6825. padding: 0;
  6826. }
  6827. .visontext{
  6828. line-height: 13px;
  6829. color: #4a90e2;
  6830. font-size: 10px;
  6831. text-align: center;
  6832. padding: 0px 12px;
  6833. border-radius: 10px;
  6834. display: inline-block;
  6835. margin-top: 20px;
  6836. transition: ease all 0.5s;
  6837. font-weight: 400;
  6838. }
  6839. .yiyun_wenjian_list{
  6840. text-align: center;
  6841. }
  6842. .yiyun_wenjian_list:hover>.visontext{
  6843. color: rgb(255, 255, 255);
  6844. background-color: #4a90e2;
  6845. }
  6846. .width4{
  6847. width: 33.33%;
  6848. }
  6849. .nobianju{
  6850. margin: 0;
  6851. }
  6852. .wirtebtn{
  6853. border: 0;
  6854. line-height: 28px;
  6855. color: rgba(0, 0, 0, 1);
  6856. font-size: 14px;
  6857. text-align: center;
  6858. background-color: rgba(255, 255, 255, 1);
  6859. border-radius: 6px;
  6860. padding: 0px 8px;
  6861. margin: 0 16px;
  6862. cursor: pointer;
  6863. transition: ease all 0.5s;
  6864. }
  6865. .wirtebtn:hover{
  6866. color: #8b35f0;
  6867. }
  6868. .overflowinit{
  6869. overflow: initial;
  6870. }
  6871. .webuploader-element-invisible{
  6872. visibility: hidden;
  6873. }
  6874. .neibianju {
  6875. background-color: #fff;
  6876. padding-top: 2px;
  6877. min-height: 259px;
  6878. max-height: 300px;
  6879. border-radius: 16px 16px 0 0;
  6880. box-shadow: 0 -3px 11px 1px rgba(0,0,0,0.06);
  6881. overflow-y: auto;
  6882. position: absolute;
  6883. bottom: 0;
  6884. width: 100%;
  6885. box-sizing: border-box;
  6886. }
  6887. .neibianju1 {
  6888. background-color: #fff;
  6889. padding-top: 5px;
  6890. height: calc(100vh - 168px);
  6891. border-radius: 16px 16px 0 0;
  6892. box-shadow: 0 -3px 11px 1px rgba(0,0,0,0.06);
  6893. overflow-y: auto;
  6894. }
  6895. /* 意见反馈 */
  6896. .yijianfankui{
  6897. position: absolute;
  6898. right: 23px;
  6899. bottom: 30px;
  6900. border: 0px;
  6901. width: 22px;
  6902. border-radius: 16px;
  6903. background-color: rgba(255, 255, 255, 1);
  6904. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  6905. color: rgba(50, 50, 60, 1);
  6906. font-size: 12px;
  6907. text-align: left;
  6908. cursor: pointer;
  6909. overflow: hidden;
  6910. }
  6911. .putonganniu{
  6912. width: 22px;
  6913. text-align: center;
  6914. font-size: 11px;
  6915. border: 0;
  6916. background-color: #fff;
  6917. font-weight: 900;
  6918. color: #000;
  6919. overflow: hidden;
  6920. padding: 3px 0;
  6921. }
  6922. .putonganniu:hover{
  6923. color: #8c00ff;
  6924. }
  6925. .quanxuanbtn{
  6926. position: absolute;
  6927. right: 30px;
  6928. }
  6929. .quanxuanbtn .el-checkbox__label{
  6930. font-size: 13px;
  6931. }
  6932. .btnlabelTitle{
  6933. font-size: 15px;
  6934. }
  6935. .el-checkbox__inner::after {
  6936. border: 0px solid #FFF;
  6937. }
  6938. .el-checkbox__inner {
  6939. border: 1px solid #DCDFE6;
  6940. background-color: #fff0;
  6941. }
  6942. .defualtBtnInfo.quitBtn{
  6943. height: 32px;
  6944. border-radius: 8px;
  6945. border: 0;
  6946. background-color: rgba(255, 255, 255, 1);
  6947. box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  6948. font-size: 16px;
  6949. font-family: PingFang SC;
  6950. }
  6951. .yiyun_app_info_box li::after,.yiyun_yinyongname::after{
  6952. content: '';
  6953. display: block;
  6954. height: 1px;
  6955. background-color: #d8d8d8;
  6956. position: relative;
  6957. }
  6958. .yiyun_app_info_box li::after{
  6959. top: 43px;
  6960. }
  6961. .yiyun_yinyongname::after{
  6962. top: 10px;
  6963. }
  6964. .editnone .el-form{
  6965. padding: 0 16px;
  6966. }
  6967. .workbtn{
  6968. width: 28px;
  6969. height: 28px;
  6970. border-radius: 4px;
  6971. color: #ADADAD;
  6972. line-height: 28px;
  6973. text-align: center;
  6974. background-color: rgba(250, 250, 250, 1);
  6975. cursor: pointer;
  6976. font-size: 24px;
  6977. transition: ease all 0.5s;
  6978. }
  6979. .drakbg{
  6980. border-radius: 4px;
  6981. background-color: rgba(167, 168, 183, 1);
  6982. color: #fff;
  6983. }
  6984. .anniuweizhi{
  6985. position: absolute;
  6986. left: -40px;
  6987. top: 14px;
  6988. }
  6989. .workbtn:hover{
  6990. /* box-shadow: 0px -3px 10px 0px rgba(0, 0, 0, 0.2); */
  6991. color: rgba(140, 0, 255, 1);
  6992. }
  6993. .rota180{
  6994. display: inline-block;
  6995. -webkit-transform: rotate(180deg);
  6996. -moz-transform: rotate(180deg);
  6997. -o-transform: rotate(180deg);
  6998. -ms-transform: rotate(180deg);
  6999. transform: rotate(180deg);
  7000. }
  7001. .rota90{
  7002. display: inline-block;
  7003. -webkit-transform: rotate(90deg);
  7004. -moz-transform: rotate(90deg);
  7005. -o-transform: rotate(90deg);
  7006. -ms-transform: rotate(90deg);
  7007. transform: rotate(90deg);
  7008. }
  7009. .workderct{
  7010. position: relative;
  7011. top: 5px;
  7012. margin-left: 10px;
  7013. /* margin-top: 15px; */
  7014. }
  7015. /* .worktitlebox button+button{
  7016. margin: 0 8px;
  7017. } */
  7018. .worklink{
  7019. width: 100%;
  7020. height: calc(100vh - 114px);
  7021. display: flex;
  7022. align-items: center;
  7023. overflow-y: auto;
  7024. flex-direction: row;
  7025. }
  7026. .linkcenter{
  7027. justify-content: center;
  7028. }
  7029. .linkstart{
  7030. justify-content: start;
  7031. }
  7032. .worklinkBtngroup{
  7033. height: 54px;
  7034. overflow: hidden;
  7035. float: left;
  7036. max-width: 368px;
  7037. }
  7038. .worklinkBtngroup button{
  7039. margin: 0 8px;
  7040. }
  7041. .curbtn{
  7042. float: left;
  7043. margin-top: 7px;
  7044. }
  7045. .currworkbutton{
  7046. border: 1.5px solid rgba(140, 0, 255, 1);
  7047. width: 106px;
  7048. height: 48px;
  7049. border-radius: 4px;
  7050. background-color: rgba(255, 255, 255, 1);
  7051. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  7052. cursor: pointer;
  7053. }
  7054. .workbutton{
  7055. width: 106px;
  7056. height: 48px;
  7057. border-radius: 4px;
  7058. background-color: rgba(255, 255, 255, 1);
  7059. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  7060. border: 1.5px solid rgba(140, 0, 255, 0);
  7061. padding: 0 16px;
  7062. cursor: pointer;
  7063. overflow: hidden;
  7064. text-overflow: ellipsis;
  7065. white-space: nowrap;
  7066. }
  7067. .workbutton:hover{
  7068. border: 1.5px solid rgba(140, 0, 255, 1);
  7069. }
  7070. .workbutton.current{
  7071. border: 1.5px solid rgba(140, 0, 255, 1);
  7072. }
  7073. .linkline{
  7074. width: 42px;
  7075. height: 1px;
  7076. background-color: rgba(204, 205, 215, 1);
  7077. display: inline-block;
  7078. position: relative;
  7079. top: -4px;
  7080. }
  7081. .workend{
  7082. background-color: rgba(140, 0, 255, 1);
  7083. }
  7084. .workheight{
  7085. height: calc(100vh - 48px);
  7086. transition: ease all 0.5s;
  7087. background-color: #f0f0f0;
  7088. }
  7089. .workheightinit{
  7090. height: calc(0);
  7091. overflow: hidden;
  7092. transition: ease all 0.5s;
  7093. }
  7094. .bgwirte{
  7095. background-color: #fff;
  7096. }
  7097. .backwork{
  7098. height: 45px;
  7099. background-color: rgba(235, 235, 235, 0.57);
  7100. }
  7101. .worklinkHeight{
  7102. height: calc(100vh - 158px);
  7103. }
  7104. .warpbianju{
  7105. width: calc(100vw - 120px);
  7106. margin: 0 auto;
  7107. }
  7108. .largecheck .el-checkbox__inner {
  7109. width: 32px;
  7110. height: 32px;
  7111. border-radius: 16px;
  7112. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  7113. border: 5px solid #fff;
  7114. background-color: #fff;
  7115. }
  7116. .largecheck .el-checkbox__inner::after{
  7117. box-sizing: content-box;
  7118. content: "";
  7119. border: 2px solid #fff;
  7120. border-left: 0;
  7121. border-top: 0;
  7122. height: 16px;
  7123. height: 12px;
  7124. left: 7px;
  7125. position: absolute;
  7126. top: 2px;
  7127. transform: rotate(45deg) scaleY(0);
  7128. width: 6px;
  7129. transition: transform .15s ease-in .05s;
  7130. transform-origin: center;
  7131. }
  7132. .linedia .el-dialog__header{
  7133. text-align: left;
  7134. padding: 17px 16px;
  7135. border-bottom: 1px solid #dadbe2;
  7136. }
  7137. .linedia .el-dialog__headerbtn{
  7138. top: 9px;
  7139. }
  7140. .linedia .el-dialog__body{
  7141. padding: 16px;
  7142. }
  7143. .linedia .el-dialog{
  7144. border-radius: 8px;
  7145. }
  7146. .widthfile{
  7147. display: inline-block;
  7148. width: 300px;
  7149. }
  7150. .widthtext1{
  7151. display: inline-block;
  7152. width: 55px;
  7153. text-align: center;
  7154. }
  7155. .widthtext{
  7156. display: inline-block;
  7157. width: 180px;
  7158. }
  7159. .widthtext1.minitext,.widthtext.minitext{
  7160. text-align: center;
  7161. }
  7162. .largecheck .el-checkbox__input.is-checked .el-checkbox__inner,.largecheck .el-checkbox__input.is-indeterminate .el-checkbox__inner {
  7163. background-color: #8c00ff;
  7164. border: 5px solid #fff;
  7165. }
  7166. .largecheck .el-checkbox__input.is-focus .el-checkbox__input{
  7167. border: 5px solid #fff;
  7168. }
  7169. .loginright_btn.top0{
  7170. top: 0;
  7171. }
  7172. .midtext{
  7173. width: 252px;
  7174. color: rgba(0, 0, 0, 1);
  7175. font-size: 16px;
  7176. text-align: left;
  7177. margin-left: 30px;
  7178. line-height: 16px;
  7179. display: inline-block;
  7180. text-overflow: ellipsis;
  7181. overflow: hidden;
  7182. position: relative;
  7183. top: 2px;
  7184. }
  7185. .minitext{
  7186. color: rgba(98, 98, 111, 1);
  7187. font-size: 12px;
  7188. text-align: left;
  7189. }
  7190. .link{
  7191. text-decoration: none;
  7192. }
  7193. .link:hover{
  7194. color: #8c00ff;
  7195. }
  7196. .visionlist li{
  7197. line-height: 48px;
  7198. }
  7199. .visionlist li:hover{
  7200. background-color: #CCCDD7 ;
  7201. border-radius: 8px;
  7202. cursor: pointer;
  7203. }
  7204. .visionlistTitle{
  7205. color: rgba(140, 0, 255, 1);
  7206. font-size: 14px;
  7207. text-align: left;
  7208. margin-bottom: 12px;
  7209. display: block;
  7210. margin-top: 10px;
  7211. }
  7212. .linedia .el-dialog__title {
  7213. line-height: 24px;
  7214. font-size: 17px;
  7215. color: #303133;
  7216. font-weight: bolder;
  7217. }
  7218. .tankuangaodu{
  7219. height: 296px;
  7220. overflow-y: auto;
  7221. }
  7222. .yijianxietong{
  7223. display: block;
  7224. width: 20px;
  7225. height: 20px;
  7226. background-color: #CCCDD7;
  7227. color: #fff;
  7228. border-radius: 10px;
  7229. position: absolute;
  7230. left: 4px;
  7231. top: 4px;
  7232. }
  7233. .yijianIcon{
  7234. font-size: 24px;
  7235. left: -2px;
  7236. top: -3px;
  7237. position: relative;
  7238. }
  7239. .isonselect{
  7240. background-color: rgba(74, 226, 166, 1);
  7241. }
  7242. .isonselect_err{
  7243. background-color: rgba(214, 36, 58, 1);
  7244. }
  7245. .isonselect_update{
  7246. background-color: rgba(74, 144, 226, 1);
  7247. }
  7248. .tipMsg{
  7249. padding: 0px 2px;
  7250. background-color: #ED1B35;
  7251. border-radius: 10px;
  7252. font-size: 12px;
  7253. color: #fff;
  7254. font-style: normal;
  7255. margin-right: 6px;
  7256. }
  7257. .yiyun_wenjian_list .isonselect_defual{
  7258. opacity: 0;
  7259. transition: ease all 0.5s;
  7260. }
  7261. .yiyun_wenjian_list:hover .isonselect_defual{
  7262. opacity: 1;
  7263. }
  7264. .el-checkbox__label {
  7265. display: unset;
  7266. font-size: 13px;
  7267. }
  7268. .filestate{
  7269. position: absolute;
  7270. top: 35%;
  7271. left: 20%;
  7272. background-color: #E3E3E3;
  7273. padding: 3px 13px;
  7274. border-radius: 18px;
  7275. font-size: 16px;
  7276. }
  7277. .nobottom .el-form-item {
  7278. margin-bottom: 0px;
  7279. }
  7280. .flex_right_pain_body input[type="password"] {
  7281. letter-spacing: 0px;
  7282. font-size: 20px;
  7283. line-height: 10px;
  7284. }
  7285. input[type="password"]::-webkit-input-placeholder {
  7286. letter-spacing: 0;
  7287. font-size: 14px;
  7288. }
  7289. input[type="password"]:-moz-placeholder {
  7290. letter-spacing: 0;
  7291. font-size: 14px;
  7292. }
  7293. input[type="password"]::-moz-placeholder {
  7294. letter-spacing: 0;
  7295. font-size: 14px;
  7296. }
  7297. input[type="password"]:-ms-input-placeholder {
  7298. letter-spacing: 0;
  7299. font-size: 14px;
  7300. }
  7301. /* 上传进度 */
  7302. /* .shangchuandinwei{
  7303. position: absolute;
  7304. top: 25%;
  7305. left: 50%;
  7306. z-index: 9999;
  7307. max-height: 500px;
  7308. overflow-y: auto;
  7309. margin-left: -280px;
  7310. padding: 20px;
  7311. border: 0px;
  7312. width: 680px;
  7313. height: 254px;
  7314. border-radius: 8px!important;
  7315. background-color: rgba(255, 255, 255, 1);
  7316. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  7317. } */
  7318. i.iconmidle{
  7319. margin-top: 16px;
  7320. }
  7321. .bianjutop{
  7322. width: 15px;
  7323. }
  7324. .bianjutop2{
  7325. width: 14px;
  7326. }
  7327. .bianjutop{
  7328. position: relative;
  7329. top: 2px;
  7330. left: -1px;
  7331. }
  7332. .fulltreebox{
  7333. height: calc(100vh - 146px);
  7334. }
  7335. .project_gantetubox_warp{
  7336. margin-top: 5px;
  7337. }
  7338. .btn_double{
  7339. width: 343px;
  7340. background-color: rgba(255, 255, 255, 1);
  7341. margin: 0 auto;
  7342. border-radius: 8px;
  7343. box-shadow: 0 3px 6px 4px rgba(0,0,0,0.1);
  7344. overflow: hidden;
  7345. }
  7346. .btn_double button+button{
  7347. margin: 0;
  7348. }
  7349. .btn_doubleItem{
  7350. height: 38px;
  7351. border: 0;
  7352. background-color: #fff;
  7353. color: #000;
  7354. line-height: 38px;
  7355. font-size: 16px;
  7356. font-family: PingFang SC;
  7357. display: block;
  7358. text-align: center;
  7359. width: 100%;
  7360. cursor: pointer;
  7361. transition: ease all 0.5s;
  7362. }
  7363. .btn_doubleItem:hover{
  7364. color: #8C00FF;
  7365. }
  7366. .flex_rightheight2{
  7367. height: calc(100vh - 342px);
  7368. }
  7369. .flex_rightheight3{
  7370. height: calc(100vh - 282px);
  7371. }
  7372. .flex_rightheight1{
  7373. height: calc(100vh - 262px);
  7374. }
  7375. .flex_rightheight0{
  7376. height: calc(100vh - 320px);
  7377. }
  7378. .nomargin .longBtn{
  7379. margin: 8px auto;
  7380. }
  7381. .m-7-18{
  7382. margin-top: 7px;
  7383. margin-bottom: 18px;
  7384. }
  7385. .nostyle{
  7386. margin: 0;
  7387. margin-bottom: 26px;
  7388. text-align: left;
  7389. }
  7390. .largecheck .el-radio__inner::after {
  7391. width: 6px!important;
  7392. height: 12px!important;
  7393. display: block;
  7394. -webkit-box-sizing: content-box;
  7395. box-sizing: content-box;
  7396. content: "";
  7397. border: 2px solid #FFF;
  7398. border-left: 0;
  7399. border-top: 0;
  7400. height: 7px;
  7401. left: 9px;
  7402. position: absolute;
  7403. top: 10px;
  7404. -webkit-transform: rotate(45deg) scaleY(0);
  7405. transform: rotate(69deg);
  7406. width: 3px;
  7407. -webkit-transition: -webkit-transform 0s ease-in 0s;
  7408. transition: -webkit-transform 0s ease-in 0s;
  7409. transition: transform 0s ease-in 0s;
  7410. transition: transform 0s ease-in 0s, -webkit-transform 0s ease-in 0s;
  7411. transition: transform 0s ease-in 0s,-webkit-transform 0s ease-in 0s;
  7412. -webkit-transform-origin: center;
  7413. transform-origin: center;
  7414. background-color:transparent;
  7415. border-radius:0
  7416. }
  7417. .largecheck .el-radio__inner {
  7418. width: 32px!important;
  7419. height: 32px!important;
  7420. border-radius: 16px;
  7421. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  7422. border: 5px solid #fff;
  7423. background-color: #fff;
  7424. transform: rotate(45deg);
  7425. }
  7426. .largecheck .el-radio__input.is-checked .el-radio__inner {
  7427. border-color: #ffffff!important;
  7428. background: #8c00ff!important;
  7429. }
  7430. .fileItemlistBox li{
  7431. padding: 0 16px;
  7432. height: 44px;
  7433. line-height: 44px;
  7434. transition: ease all 0.5s;
  7435. }
  7436. .fileItemlistBox li .el-radio__label{
  7437. font-size: 15px;
  7438. line-height: 44px;
  7439. }
  7440. .fileItemlistBox li:hover{
  7441. background-color: #f2f2f2;
  7442. }
  7443. .dulihang .el-radio__label::after{
  7444. content: '';
  7445. height: 1px;
  7446. width: 292px;
  7447. display: block;
  7448. background-color: #d8d8d8;
  7449. margin-left: 44px;
  7450. }
  7451. .largeBtn.el-button{
  7452. width: 305px;
  7453. height: 32px;
  7454. border-radius: 8px;
  7455. }
  7456. .mb-15{
  7457. margin-bottom: 16px;
  7458. }
  7459. .footernobianju .el-dialog__footer{
  7460. padding: 10px 0;
  7461. }
  7462. .bianjubtn{
  7463. margin: 0 23px;
  7464. margin-bottom: 6px;
  7465. }
  7466. .eldialogheight .el-dialog{
  7467. height: 310px;
  7468. }
  7469. .DiacenterBox{
  7470. height: 130px;
  7471. }
  7472. .logoarea{
  7473. display: flex;
  7474. justify-content: center;
  7475. align-items: center;
  7476. position: absolute;
  7477. width: calc(100vw);
  7478. height: calc(100vh);
  7479. top: 0px;
  7480. background-color: transparent;
  7481. }
  7482. .logintitlefirst span{
  7483. display: block;
  7484. line-height: 67px;
  7485. }
  7486. .intentinput .el-input__inner{
  7487. text-indent: 16px;
  7488. }
  7489. .loginimgboxa{
  7490. position: relative;
  7491. height: 429px;
  7492. width: 369px;
  7493. clip-path: polygon(
  7494. 0 25%,
  7495. 50% 0,
  7496. 100% 25%,
  7497. 100% 75%,
  7498. 50% 100%,
  7499. 0 75%
  7500. );
  7501. background: #33333d;
  7502. display: flex;
  7503. justify-content: center;
  7504. align-items: center;
  7505. z-index: 1;
  7506. }
  7507. .loginimgbordera{
  7508. position: absolute;
  7509. width: 100%;
  7510. z-index: 3;
  7511. }
  7512. .loginimgboxImga{
  7513. position: absolute;
  7514. background-size: 100%;
  7515. max-width: 100%;
  7516. max-height: 100%;
  7517. z-index: 2;
  7518. }
  7519. .righttabs .el-tabs__item{
  7520. padding: 0;
  7521. height: 40px;
  7522. font-weight: 500;
  7523. color: #000;
  7524. width: 187px;
  7525. text-align: center;
  7526. }
  7527. .righttabs .el-tabs__header{
  7528. margin: 0;
  7529. }
  7530. .righttabs .el-tabs__content{
  7531. overflow: inherit;
  7532. }
  7533. .righttabs .el-tabs__item.is-active{
  7534. color: #ED1B35;
  7535. }
  7536. .eidtTip{
  7537. position: absolute;
  7538. left: 50%;
  7539. top: 33%;
  7540. width: 86px;
  7541. height: 28px;
  7542. color: rgba(0, 0, 0, 1);
  7543. font-size: 12px;
  7544. line-height: 28px;
  7545. border-radius: 21px;
  7546. text-align: center;
  7547. background-color: #E3E3E3;
  7548. display: block;
  7549. margin-left: -43px;
  7550. }
  7551. .tixinpage{
  7552. overflow: hidden;
  7553. }
  7554. .opitcy1{
  7555. opacity: 1;
  7556. }
  7557. .opitcy0{
  7558. opacity: 0.5;
  7559. }
  7560. .settingIcon.minisize{
  7561. font-size: 16px;
  7562. margin-right: 4px;
  7563. }
  7564. .finger{
  7565. cursor: pointer;
  7566. }
  7567. .filelist{
  7568. overflow: hidden;
  7569. padding: 6px 0;
  7570. }
  7571. .filelist:nth-child(2n){
  7572. padding-right: 0px;
  7573. }
  7574. .filelist:nth-child(2n+1){
  7575. padding-right: 10px;
  7576. }
  7577. .filelist>span{
  7578. font-size: 15px;
  7579. }
  7580. .icon-icon_yijianxietong{
  7581. font-size: 18px;
  7582. top: 0;
  7583. left: 0;
  7584. }
  7585. .redtext{
  7586. color: #ED1B35;
  7587. }
  7588. .yiyun_headerfr_item_r>div span.dulibianjuspan{
  7589. margin-left: 10px;
  7590. }
  7591. .linkbtngroup{
  7592. display: inline-block;
  7593. /* overflow: hidden; */
  7594. position: relative;
  7595. }
  7596. .appiframebox{
  7597. width: calc(100vw - 40px);
  7598. height: calc(100vh - 54px);
  7599. overflow-y: auto;
  7600. }
  7601. .fullscreenDia .el-dialog__header{
  7602. padding: 5px 20px 0px;
  7603. }
  7604. .fullscreenDia .el-dialog__body{
  7605. padding: 0px 20px;
  7606. }
  7607. .fullscreenDia .el-dialog{
  7608. border-radius: 0;
  7609. }
  7610. .fullscreenDia .el-dialog__headerbtn {
  7611. top: 0px;
  7612. }
  7613. .bottext{
  7614. color: rgba(74, 74, 74, 1);
  7615. font-size: 14px;
  7616. text-align: left;
  7617. font-family: PingFang SC;
  7618. }
  7619. .textcolor1{
  7620. color: #32323C;
  7621. font-family: PingFang SC;
  7622. }
  7623. .botbtnr{
  7624. position: absolute;
  7625. bottom: 0px;
  7626. right: 10px;
  7627. }
  7628. .introlisttitle{
  7629. padding: 0 16px;
  7630. }
  7631. .topprev{
  7632. top: 10px;
  7633. }
  7634. h5.dulilabel{
  7635. font-size: 15px;
  7636. font-weight: 500;
  7637. margin-top: 12px;
  7638. }
  7639. .el-tree-node__content .el-dropdown{
  7640. opacity: 0;
  7641. }
  7642. .el-tree-node__content:hover>.custom-tree-node .el-dropdown{
  7643. opacity: 1;
  7644. }
  7645. .rightdesc{
  7646. font-family: PingFang SC;
  7647. font-weight: 400;
  7648. font-size: 15px;
  7649. line-height: 30px;
  7650. margin-top: 20px;
  7651. }
  7652. .fixtable{
  7653. /* border: 1px solid #cdd; */
  7654. width: calc(100vw - 122px);
  7655. height: calc(100vh - 150px);
  7656. overflow: scroll;
  7657. position: relative;
  7658. float: left;
  7659. top: 0px;
  7660. left: 0px;
  7661. font-size: 12px;
  7662. }
  7663. .bg1 {
  7664. position: fixed;
  7665. z-index: 10001;
  7666. width: 100px;
  7667. left: auto;
  7668. top: auto;
  7669. }
  7670. .bg2 {
  7671. position: sticky;
  7672. top: 0px;
  7673. margin-left: 192px;
  7674. /* width: 500px; */
  7675. z-index: 1000;
  7676. }
  7677. .bg3 {
  7678. left: 0px;
  7679. float: left;
  7680. position: sticky;
  7681. z-index: 1000;
  7682. width: 100px;
  7683. }
  7684. .bg4 {
  7685. left: 192px;
  7686. /* width: 500px; */
  7687. position: absolute;
  7688. }
  7689. .bg1,.bg2,.bg3,.bg4{
  7690. border-collapse:collapse;
  7691. border:none;
  7692. }
  7693. .bg1 td,.bg2 td,.bg3 td,.bg4 td{
  7694. border:solid #cdcdcd 1px;
  7695. }
  7696. .row-w-60{
  7697. width: 60px;
  7698. text-align: center;
  7699. }
  7700. .col-h-30{
  7701. height: 30px;
  7702. line-height: 30px;
  7703. }
  7704. .col-h-60{
  7705. height: 60px;
  7706. line-height: 60px;
  7707. overflow: hidden;
  7708. }
  7709. .col-h-58{
  7710. height: 60px;
  7711. line-height: 60px;
  7712. text-align: center;
  7713. }
  7714. .row-w-130{
  7715. width: 130px;
  7716. overflow: hidden;
  7717. text-align: center;
  7718. }
  7719. .tdheight{
  7720. height: 58px;
  7721. overflow: hidden;
  7722. }
  7723. .bg_write{
  7724. background-color: #fff;
  7725. }
  7726. .bg_gray_th{
  7727. background-color: #e3e3e3;
  7728. }
  7729. .bg_gray_td{
  7730. background-color: #ebebeb;
  7731. }
  7732. .bg_druk{
  7733. background-color: #adadad;
  7734. }
  7735. .listTemplateList li:hover,.slected{
  7736. background-color: rgba(204, 205, 215, 1);
  7737. }
  7738. .listTemplateList li{
  7739. height: 48px;
  7740. border-radius: 8px;
  7741. margin: 8px 10px;
  7742. padding: 0 16px;
  7743. overflow: hidden;
  7744. line-height: 48px;
  7745. transition: ease all 0.5s;
  7746. cursor: pointer;
  7747. }
  7748. .listTemplateTextBig{
  7749. color: rgba(50, 50, 60, 1);
  7750. font-size: 18px;
  7751. width: 95px;
  7752. display: inline-block;
  7753. font-weight: 600;
  7754. }
  7755. .listTemplateText{
  7756. color: rgba(0, 0, 0, 1);
  7757. font-size: 15px;
  7758. text-align: left;
  7759. }
  7760. .diaTitle{
  7761. font-size: 17px;
  7762. }
  7763. .yuandian{
  7764. position: relative;
  7765. height: 0;
  7766. left: 0;
  7767. top: 0;
  7768. width: 158px;
  7769. text-align: left;
  7770. /* display: flex;
  7771. align-items: baseline;
  7772. justify-content: center; */
  7773. }
  7774. .upList{
  7775. top: 0;
  7776. }
  7777. .upList,.bottomlist{
  7778. position: absolute;
  7779. left: 8px;
  7780. }
  7781. .bottomlist{
  7782. position: absolute;
  7783. top: 22px;
  7784. }
  7785. .enterPoint,.outPoint{
  7786. position: absolute;
  7787. left: 7px;
  7788. }
  7789. .enterPoint{
  7790. bottom: 40px;
  7791. }
  7792. .outPoint{
  7793. top: 50px;
  7794. }
  7795. .enterPoint button,.outPoint button{
  7796. display: block;
  7797. margin-bottom: 16px;
  7798. }
  7799. .enterPoint .leftlinebox+.leftlinebox,.outPoint .leftlinebox+.leftlinebox{
  7800. margin: 0px;
  7801. margin-bottom: 10px;
  7802. }
  7803. .linkBtn1,.linkBtn2{
  7804. border: 1.5px dashed transparent;
  7805. height: 32px;
  7806. border-radius: 4px;
  7807. color: rgba(142, 144, 159, 1);
  7808. font-size: 13px;
  7809. font-family: PingFangSC-Regular;
  7810. transition: ease all 0.5s;
  7811. cursor: pointer;
  7812. padding: 0 10px;
  7813. }
  7814. .linkBtn1:hover,.linkBtn2:hover{
  7815. border-color:#4A90E2 ;
  7816. color: #4A90E2;
  7817. }
  7818. .linkBtn1{
  7819. background-color: rgba(255, 255, 255, 1);
  7820. }
  7821. .linkBtn2{
  7822. background-color: rgba(227, 227, 227, 1);
  7823. min-width: 72px;
  7824. max-width: 120px;
  7825. }
  7826. .enterLine{
  7827. width: 1px;
  7828. height: 20px;
  7829. background-color: rgba(204, 205, 215, 1);
  7830. position: absolute;
  7831. left: 0;
  7832. bottom: 0px;
  7833. }
  7834. .outLine{
  7835. position: relative;
  7836. width: 1px;
  7837. height: 20px;
  7838. background-color: rgba(204, 205, 215, 1);
  7839. top: 17px;
  7840. left: -7px;
  7841. }
  7842. .bottomenter{
  7843. position: absolute;
  7844. bottom: -6px;
  7845. left: -10px;
  7846. color: #CCCDD7;
  7847. font-size: 20px;
  7848. }
  7849. .leftlinebox{
  7850. position: relative;
  7851. display: block;
  7852. line-height: 30px;
  7853. margin-bottom: 11px;
  7854. }
  7855. .leftline{
  7856. position: absolute;
  7857. display: block;
  7858. width: 8px;
  7859. height: 1px;
  7860. position: absolute;
  7861. left: -8px;
  7862. top: 50%;
  7863. background-color: rgba(204, 205, 215, 1);
  7864. }
  7865. .leftline::after{
  7866. content: '';
  7867. height: 48px;
  7868. width: 1px;
  7869. position: absolute;
  7870. left: -1px;
  7871. top: 50%;
  7872. background-color: rgba(204, 205, 215, 1);
  7873. }
  7874. .worllistt2{
  7875. display: -webkit-box;
  7876. -webkit-box-orient: vertical;
  7877. -webkit-line-clamp: 1;
  7878. overflow: hidden;
  7879. }
  7880. .leftlin2{
  7881. height: 40px;
  7882. width: 1px;
  7883. position: relative;
  7884. background-color: rgba(204, 205, 215, 1);
  7885. left: 0;
  7886. top: 30px;
  7887. }
  7888. .conterpoint{
  7889. position: relative;
  7890. width: 157px;
  7891. }
  7892. .worningalert{
  7893. position: relative;
  7894. width: 355px;
  7895. height: 22px;
  7896. border-radius: 4px;
  7897. background-color: rgba(214, 36, 58, 1);
  7898. top: -14px;
  7899. text-indent: 16px;
  7900. color: #fff;
  7901. }
  7902. .EC_searchBox .el-input-group__prepend {
  7903. background-color: #ffffff;
  7904. vertical-align: middle;
  7905. display: table-cell;
  7906. position: relative;
  7907. border: 0px solid #ffffff;
  7908. white-space: nowrap;
  7909. position: absolute;
  7910. left: 7px;
  7911. padding: 0;
  7912. width: 0;
  7913. }
  7914. #bigbody{
  7915. height: calc(100vh - 47px);
  7916. overflow-y: auto;
  7917. }
  7918. .scorllbaron{
  7919. background-color: #fff;
  7920. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  7921. }
  7922. .tinylabel{
  7923. font-size: 12px;
  7924. display: block;
  7925. line-height: 20px;
  7926. color: #888;
  7927. }
  7928. .newapplay li{
  7929. height: 59px;
  7930. border-bottom: 1px solid #cccdd7;
  7931. margin: 0 16px;
  7932. padding: 0;
  7933. }
  7934. .searchPagebox{
  7935. width: calc(100vw - 60px);
  7936. height: calc(100vh - 75px);
  7937. }
  7938. .searchPagebox2{
  7939. width: calc(100vw - 120px);
  7940. margin: 0 auto;
  7941. }
  7942. .bj_label{
  7943. font-size: 14px;
  7944. color: #8e909f;
  7945. }
  7946. /* 适配 */
  7947. @media(max-width:1600px) {
  7948. .yiyun-col-md-4{
  7949. width: 33.3%
  7950. }
  7951. }
  7952. @media(max-width:1337px) {
  7953. .yiyun-col-md-4{
  7954. width: 33.3%
  7955. }
  7956. .yiyun_headerce>span {
  7957. padding: 13px 15px;
  7958. }
  7959. .LoginTitleWel{
  7960. top: 60px;
  7961. }
  7962. .loginbox{
  7963. bottom: 60px;
  7964. }
  7965. }
  7966. @media(max-width:1025px) {
  7967. .yiyun-col-sm-6{
  7968. width: 50%
  7969. }
  7970. .bottomdialog {
  7971. width: calc(100vw - 20px);
  7972. left: calc(-50vw + 10px);
  7973. }
  7974. .yiyun_dialog_left {
  7975. margin-left: 20px;
  7976. }
  7977. .yiyun_dialog_right{
  7978. right: 20px;
  7979. }
  7980. .yiyun_headerce>span {
  7981. padding: 13px 9px;
  7982. }
  7983. .LoginTitleWel {
  7984. top: 30px;
  7985. font-size: 39px;
  7986. }
  7987. .logintitlefirst span {
  7988. line-height: 45px;
  7989. }
  7990. .loginlabel {
  7991. font-size: 22px;
  7992. }
  7993. .loginbox {
  7994. bottom: 30px;
  7995. }
  7996. }
  7997. @media(max-width:768px) {
  7998. .yiyun-col-ty-12{
  7999. width: 100%
  8000. }
  8001. .yiyun_headerce>span {
  8002. padding: 13px 8px;
  8003. font-size: 16px;
  8004. }
  8005. }
  8006. .drop_areabox{
  8007. position: fixed;
  8008. z-index: 999;
  8009. width: 480px;
  8010. height: 300px;
  8011. background-color: #ccc;
  8012. top: 50%;
  8013. left: 50%;
  8014. margin-left: -240px;
  8015. margin-top: -150px;
  8016. border: 1px dashed #8c00ff;
  8017. background-color: #ebebf2;
  8018. color: #8c00ff;
  8019. display: flex;
  8020. flex-direction: column;
  8021. justify-content: center;
  8022. align-items: center;
  8023. border-radius: 10px;
  8024. }
  8025. .yywenjiantitle{
  8026. display: inline-block;
  8027. width: 92px;
  8028. height: 31px;
  8029. color: #a7a8b7;
  8030. font-size: 18px;
  8031. line-height:31px;
  8032. margin-right: 16px;
  8033. border-radius: 4px;
  8034. background-color: transparent;
  8035. text-align: center;
  8036. cursor: pointer;
  8037. }
  8038. .yywenjiantitle.yyactive,.yywenjiantitle:hover{
  8039. color: #32323c;
  8040. background:#CCCDD7;
  8041. }
  8042. .fuzeren{
  8043. overflow: hidden;
  8044. padding-bottom: 11px;
  8045. border-bottom: 1px solid #8e909f;
  8046. }
  8047. .el-icon-warning::before{
  8048. content: "";
  8049. display: inline-block;
  8050. width: 28px;
  8051. height: 28px;
  8052. background-color: #ccc;
  8053. background: url(/static/img/icon_pic_01.png) no-repeat -180px 0px;
  8054. }
  8055. .selfupdate .webuploader-pick{
  8056. width: 120px
  8057. }
  8058. .right-algin{
  8059. text-align: right
  8060. }
  8061. .downloadIcon{
  8062. position: absolute;
  8063. width: 48px;
  8064. height: 48px;
  8065. left: 50%;
  8066. top:33%;
  8067. margin-left: -24px;
  8068. margin-top: -24px;
  8069. }
  8070. .uploadText{
  8071. position: relative;
  8072. top: 40px;
  8073. left: 30px;
  8074. font-size: 13px
  8075. }
  8076. .minifont{
  8077. font-size: 11px;
  8078. color: #71717d;
  8079. margin-top: 2px
  8080. }
  8081. .largeicon{
  8082. color: #000;
  8083. font-size: 22px
  8084. }
  8085. .titlebar_head{
  8086. display: flex;
  8087. justify-content: space-between;
  8088. }
  8089. .toumin{
  8090. opacity: 0.5;
  8091. }