You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.css 147 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727
  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 30px 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: 259px;
  3672. max-height: 275px;
  3673. overflow-y: auto;
  3674. }
  3675. .neibianju1 .fifleBox{
  3676. height: calc(100vh - 210px);
  3677. overflow-y: auto;
  3678. }
  3679. .yiyun_title_label{
  3680. text-align: center;
  3681. font-size: 20px;
  3682. margin: 0 0px;
  3683. cursor: pointer;
  3684. font-weight: 400;
  3685. font-family: Pingfang SC;
  3686. line-height: 48px;
  3687. display: -webkit-box;
  3688. -webkit-box-orient: vertical;
  3689. -webkit-line-clamp: 1;
  3690. }
  3691. .toplefttext{
  3692. font-size: 17px;
  3693. line-height: 48px;
  3694. font-weight: 300;
  3695. }
  3696. .icon-icon_shezhi-weijihuo{
  3697. position: relative;
  3698. right: -8px;
  3699. top: 5px;
  3700. }
  3701. /* 头部标题文本end */
  3702. /* 云盘文件start */
  3703. .yinyun_file_row{
  3704. position: relative;
  3705. margin: 0 34px;
  3706. }
  3707. .yiyun_file_box{
  3708. margin: 0 6px;
  3709. }
  3710. .yiyun_cloud_fileList li{
  3711. margin: 0 24px;
  3712. width: 180px;
  3713. height: 258px;
  3714. float: left;
  3715. position: relative;
  3716. }
  3717. .yiyun_cloud_fileList.middle-icon li{
  3718. margin: 0 16px;
  3719. width: 136px;
  3720. height: 200px;
  3721. border-radius: 12px;
  3722. float: left;
  3723. position: relative;
  3724. transition: ease all 0.5s;
  3725. }
  3726. .yiyun_cloud_fileList.middle-icon li:hover{
  3727. background-color: #32323c;
  3728. }
  3729. .font-set{
  3730. color: #fff;
  3731. font-size: 16px;
  3732. }
  3733. .tip_icon_set{
  3734. position: absolute;
  3735. top: 6px;
  3736. right: 6px;
  3737. opacity: 0;
  3738. transform: ease all 0.5s;
  3739. }
  3740. .yiyun_cloud_fileList.middle-icon>li:hover .tip_icon_set{
  3741. opacity: 1;
  3742. }
  3743. .yiyun_cloud_fileList li .bghover{
  3744. display: block;
  3745. width: 180px;
  3746. height: 180px;
  3747. border-radius: 20px;
  3748. cursor: pointer;
  3749. transition: ease all 0.5s;
  3750. }
  3751. .yiyun_cloud_fileList li .bghover-mid{
  3752. display: block;
  3753. width: 136px;
  3754. height: 136px;
  3755. border-radius: 12px;
  3756. cursor: pointer;
  3757. transition: ease all 0.5s;
  3758. }
  3759. .webuploader-pick {
  3760. margin-top: 0px;
  3761. }
  3762. .yiyun_cloud_fileList li:hover>.deleteBtnFlie {
  3763. display: block;
  3764. }
  3765. .yiyun_cloud_fileList li:hover>.downloadBtn_yiyun {
  3766. display: block;
  3767. }
  3768. .yiyun_cloud_fileList li:hover>.bghover{
  3769. background-color: #32323c;
  3770. }
  3771. /* 云盘文件end */
  3772. /* 协作文件start */
  3773. .bg_color_company{
  3774. height: 54px;
  3775. line-height: 54px;
  3776. background-color: #f0f0f0;
  3777. }
  3778. .bottomBloder{
  3779. border-bottom: 1px solid rgb(204,205,215);
  3780. }
  3781. .yiyun_Headtitle_center{
  3782. margin:0 24px;
  3783. }
  3784. .font-line-text{
  3785. line-height: 54px!important;
  3786. }
  3787. /* 协作文件end */
  3788. /* 矩阵模板start */
  3789. .table1 td {
  3790. border: 1px solid black;
  3791. }
  3792. .table1 td:hover {
  3793. color: aliceblue;
  3794. cursor:pointer
  3795. }
  3796. /* 矩阵模板end */
  3797. /* 2019-06-04 workspace界面 */
  3798. .yiyun_line_border{
  3799. width: 100%;
  3800. height: 1px;
  3801. background-color: #d8d8d8
  3802. }
  3803. .newbtn img.wenjian_bg_img{
  3804. display: block;
  3805. width: 86px;
  3806. height: 86px;
  3807. margin: 10px auto;
  3808. margin-top: 40px;
  3809. }
  3810. .newbtn{
  3811. text-align: center;
  3812. }
  3813. .yiyun_wenjian_list:hover > .newbtn{
  3814. background-color: transparent;
  3815. }
  3816. .newbtn_label{
  3817. color: #32323C;
  3818. font-size: 14px;
  3819. }
  3820. .duiqi{
  3821. display: inline-block;
  3822. position: relative;
  3823. top: 4px;
  3824. left: 10px;
  3825. cursor: pointer;
  3826. }
  3827. .yiyun_btnnew_info .yiyun_btnnew_infolabel{
  3828. margin-left: 10px;
  3829. font-size: 14px;
  3830. position: relative;
  3831. top: -7px;
  3832. }
  3833. .newfiledialog{
  3834. position: fixed;
  3835. top: 130px;
  3836. left: 50%;
  3837. width: 680px;
  3838. margin-left: -340px;
  3839. background-color: rgba(50, 50, 60, 0);
  3840. overflow-y: auto;
  3841. z-index: 11;
  3842. }
  3843. .dia_8{
  3844. width: 100%;
  3845. height:100%;
  3846. position:fixed;
  3847. left: 0px;
  3848. top: 0px;
  3849. background-color: rgba(50, 50, 60, 0.42);
  3850. z-index: 10;
  3851. overflow-y: auto;
  3852. }
  3853. .el-message-box__wrapper{
  3854. background-color: rgba(50, 50, 60, 0.42);
  3855. }
  3856. .dragareaBox{
  3857. width: 680px;
  3858. margin-right: auto;
  3859. margin-left: auto;
  3860. margin-bottom: 50px;
  3861. }
  3862. .dragarea_top{
  3863. width: 100%;
  3864. height: 100px;
  3865. border-radius: 10px;
  3866. background-color: rgba(255, 255, 255, 1);
  3867. text-align: center;
  3868. cursor: pointer;
  3869. }
  3870. .yiyong_list_dalog{
  3871. margin-left: 10px;
  3872. }
  3873. .yiyong_list_dalog li{
  3874. float: left;
  3875. margin:10px 20px;
  3876. text-align: center;
  3877. cursor:pointer;
  3878. position: relative;
  3879. top: 0;
  3880. transition:ease all 0.5s;
  3881. }
  3882. .yiyong_list_dalog li:hover{
  3883. top: -5px;
  3884. }
  3885. .appfileImgIcon.dulicard{
  3886. /* height: 164px; */
  3887. position: relative;
  3888. }
  3889. .houzuidinwei{
  3890. position: absolute;
  3891. top: 132px;
  3892. font-size: 26px;
  3893. text-align: center;
  3894. right: 48px;
  3895. }
  3896. .dulicard img{
  3897. max-height: 148px;
  3898. display: block;
  3899. margin: 0 auto;
  3900. margin-top: 16px;
  3901. filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.3));
  3902. max-width: 148px;
  3903. }
  3904. .cardlistbox li{
  3905. float: left;
  3906. margin:15px 5px;
  3907. text-align: center;
  3908. cursor:pointer;
  3909. }
  3910. .creatbox_mid{
  3911. width: 100%;
  3912. overflow: hidden;
  3913. border-radius: 10px;
  3914. background-color: rgba(255, 255, 255, 1);
  3915. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  3916. padding-bottom: 20px;
  3917. }
  3918. .mt-10{
  3919. margin-top: 10px;
  3920. }
  3921. .spanImg{
  3922. display: block;
  3923. width: 70px;
  3924. }
  3925. .appItemlist{
  3926. clear: both;
  3927. cursor:pointer;
  3928. }
  3929. .diahead{
  3930. padding:19px 16px;
  3931. padding-bottom: 0;
  3932. overflow: hidden;
  3933. }
  3934. .colosbtn{
  3935. background: url(../img/yiyunicon.png) no-repeat -194px -28px;
  3936. display: block;
  3937. width: 28px;
  3938. height: 28px;
  3939. cursor: pointer;
  3940. /* transition: ease all 0.5s; */
  3941. }
  3942. .colosbtn:hover{
  3943. background: url(../img/yiyunicon.png) no-repeat -194px -84px;
  3944. }
  3945. .spanTitle{
  3946. font-size: 13px;
  3947. color: rgba(0, 0, 0, 1);
  3948. font-size: 13px;
  3949. }
  3950. .rtbtn{
  3951. padding: 0 10px;
  3952. border-radius: 10px;
  3953. color: rgba(167, 168, 183, 1);
  3954. font-size: 12px;
  3955. border: 1px solid #A7A8B7;
  3956. cursor: pointer;
  3957. }
  3958. .dragarea_area{
  3959. /* line-height: 100px; */
  3960. text-align: center;
  3961. color: rgba(0, 0, 0, 1);
  3962. font-size: 16px;
  3963. }
  3964. .xiangdui{
  3965. position: relative;
  3966. }
  3967. .xiangdui .fl_icon{
  3968. position: absolute;
  3969. left: -30px;
  3970. }
  3971. .layerout_H2{
  3972. height: calc(100vh - 406px);
  3973. overflow-y: auto;
  3974. transition: ease all 0.5s;
  3975. background-color: #f6f6f6;
  3976. }
  3977. .layerout_H3{
  3978. min-height: 150px;
  3979. }
  3980. .layerout_H2::-webkit-scrollbar,.layerout_H2::-webkit-scrollbar {
  3981. width: 0px;
  3982. /*其他样式,比如圆角等*/
  3983. }
  3984. .file_Imgbox{
  3985. position: absolute;
  3986. width: 132px;
  3987. height: 90px;
  3988. top: 42px;
  3989. left: 24px;
  3990. overflow: hidden;
  3991. vertical-align: middle;
  3992. text-align: center;
  3993. margin: 0 auto;
  3994. background-color: #fff;
  3995. display: flex;
  3996. justify-content: center;
  3997. align-items: center;
  3998. }
  3999. .file_Imgbox-mid{
  4000. position: absolute;
  4001. width: 100px;
  4002. height: 69px;
  4003. top: 36px;
  4004. left: 18px;
  4005. overflow: hidden;
  4006. vertical-align: middle;
  4007. text-align: center;
  4008. margin: 0 auto;
  4009. background-color: #fff;
  4010. display: flex;
  4011. justify-content: center;
  4012. align-items: center;
  4013. }
  4014. .file_Img{
  4015. max-width: 100%;
  4016. max-height: 100%;
  4017. }
  4018. .searchsize{
  4019. font-size: 24px;
  4020. }
  4021. /* .scollbarBox{
  4022. min-height: 423px;
  4023. overflow: hidden;
  4024. overflow-y: auto;
  4025. } */
  4026. .mt-5{
  4027. margin-top: 5px;
  4028. }
  4029. .mt-0{
  4030. margin-top: 0px;
  4031. }
  4032. .mt-32{
  4033. margin-top: 32px;
  4034. }
  4035. .mt-48{
  4036. margin-top: 48px;
  4037. }
  4038. .mt-50{
  4039. margin-top: 50px;
  4040. }
  4041. .mt-54{
  4042. margin-top: 54px;
  4043. }
  4044. .listfilewarp{
  4045. min-height: calc(100vh - 48px);
  4046. overflow: hidden;
  4047. /* overflow-y: auto; */
  4048. background-color: #f0f0f0;
  4049. }
  4050. .listfilewarp1{
  4051. min-height: calc(100vh - 48px);
  4052. overflow: hidden;
  4053. overflow-y: auto;
  4054. background-color: #f0f0f0;
  4055. }
  4056. .btn_group button{
  4057. background-color: #fff;
  4058. border: 0;
  4059. padding: 5px 7px 6px 8px;
  4060. cursor: pointer;
  4061. color: rgba(98, 98, 111, 1);
  4062. font-size: 14px;
  4063. text-align: center;
  4064. }
  4065. .btn_group{
  4066. border-radius:5px;
  4067. height: 28px;
  4068. line-height: 28px;
  4069. background-color: #fff;
  4070. overflow: hidden;
  4071. }
  4072. .zongjianbox{
  4073. height: 55px;
  4074. background-color: rgba(235, 235, 235, 0.57);
  4075. }
  4076. .yiyun_section2{
  4077. width: calc(100vw - 120px);
  4078. margin: 0 auto
  4079. }
  4080. .zongjianbox .yiyuntitle{
  4081. line-height: 55px;
  4082. }
  4083. .btn_group button+button{
  4084. margin: 0
  4085. }
  4086. .mt-16{
  4087. margin-top: 16px;
  4088. }
  4089. .program{
  4090. background-color: #8C00FF !important;
  4091. padding: 5px 12px !important;
  4092. color: #fff!important;
  4093. }
  4094. .jindutiao{
  4095. width: 340px;
  4096. margin:0 auto;
  4097. height: 26px;
  4098. border-radius: 18px;
  4099. background-color: rgba(234, 199, 142, 1);
  4100. overflow: hidden;
  4101. position: relative;
  4102. }
  4103. div.mt-16{
  4104. margin-top: 16px;
  4105. }
  4106. .jindu{
  4107. width: 40px;
  4108. height: 26px;
  4109. background-color: rgba(226, 169, 75, 1);
  4110. position: absolute;
  4111. top: 0;
  4112. z-index: 2;
  4113. }
  4114. .jindulabel{
  4115. position: absolute;
  4116. right: 10px;
  4117. line-height: 28px;
  4118. }
  4119. .mt-7{
  4120. margin-top: 7px;
  4121. }
  4122. .row_painfr h5{
  4123. font-size: 18px;
  4124. }
  4125. .top_optionBar{
  4126. position: absolute;
  4127. right: 10px;
  4128. top: 4px;
  4129. /*background: #ccc;*/
  4130. display: block;
  4131. width: 16px;
  4132. height: 16px;
  4133. }
  4134. .el-icon-reseting{
  4135. background: url(../img/icon_16.png) no-repeat 0 -16px;
  4136. display: block;
  4137. width: 16px;
  4138. height: 16px;
  4139. }
  4140. .dropdownList{
  4141. display: block;
  4142. }
  4143. .mt-20{
  4144. margin-top: 20px;
  4145. }
  4146. .el-dropdown-menu{
  4147. padding: 0
  4148. }
  4149. .el-dropdown-menu__item--divided{
  4150. margin-top: 0
  4151. }
  4152. .yiyun_text_line{
  4153. line-height: 30px;
  4154. }
  4155. .wrate{
  4156. background-color: #5498ff;
  4157. background: -webkit-linear-gradient(#c3c3c3, black);
  4158. color: #fff;
  4159. line-height: 30px;
  4160. text-align: center;
  4161. }
  4162. .blue {
  4163. background: #fdee27;
  4164. color: #88690f;
  4165. }
  4166. .gray{
  4167. background:#e2e9f1;
  4168. }
  4169. /* 探索者UI */
  4170. .LoginTitleWel{
  4171. position: fixed;
  4172. top: 120px;
  4173. left: 100px;
  4174. font-size: 48px;
  4175. font-weight: 500;
  4176. color: #fff;
  4177. z-index: 2;
  4178. }
  4179. .tinyLabel{
  4180. font-size: 12px;
  4181. line-height: 16px;
  4182. width: 52px;
  4183. border-radius: 8px;
  4184. background-color: #8C00FF;
  4185. display: block;
  4186. text-align: center;
  4187. color:#fff;
  4188. margin-bottom: 7px;
  4189. }
  4190. .yiyun_btn_new{
  4191. border: 0;
  4192. color: #fff;
  4193. width: 120px;
  4194. height: 32px;
  4195. font-size: 14px;
  4196. border-radius: 21px;
  4197. background-color: rgba(140, 0, 255, 1);
  4198. cursor: pointer;
  4199. transition: ease all 0.5s;
  4200. font-family: PingFang SC;
  4201. }
  4202. .yiyun_btn_new:hover{
  4203. box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  4204. }
  4205. .PaincenterBox .el-form-item__label{
  4206. color: #EBEBF2;
  4207. font-size: 15px;
  4208. }
  4209. .PaincenterBox .bg_w .el-input__inner {
  4210. background-color: #32323c;
  4211. border-radius: 5px;
  4212. height: 44px;
  4213. line-height: 44px;
  4214. color: #fff;
  4215. border-bottom: 0;
  4216. border: 0;
  4217. box-shadow: 0 0 0;
  4218. }
  4219. .yiyunPlusmini{
  4220. display: inline-block;
  4221. width: 20px;
  4222. height: 20px;
  4223. background: url(../img/Plus_mini.png) 0 0 no-repeat;
  4224. position: relative;
  4225. top: 1px;
  4226. cursor: pointer;
  4227. }
  4228. .self_newitem{
  4229. position: relative;
  4230. }
  4231. .bianji_input{
  4232. padding-left: 0;
  4233. width: 100%;
  4234. text-indent: 16px;
  4235. }
  4236. .selfoptiongroup{
  4237. position: absolute;
  4238. z-index: 1;
  4239. right: 10px;
  4240. top: 16px;
  4241. }
  4242. .blockcheckbox .el-checkbox{
  4243. display: block;
  4244. margin: 10px 0;
  4245. font-size: 15px;
  4246. color: #000;
  4247. }
  4248. .blockcheckbox .el-checkbox+.el-checkbox{
  4249. margin-left: 0;
  4250. }
  4251. .blockcheckbox{
  4252. margin-left: 0px;
  4253. margin-top: 10px;
  4254. }
  4255. .qustionimgbox{
  4256. width: 79px;
  4257. height: 82px;
  4258. border-radius: 10px;
  4259. border: 1px solid rgba(216, 216, 216, 1);
  4260. margin-right: 10px;
  4261. overflow: hidden;
  4262. display: inline-block;
  4263. position: relative;
  4264. margin-top: 6px;
  4265. }
  4266. .qustionimgbox img{
  4267. width: 100%;
  4268. height: 100%;
  4269. cursor: pointer;
  4270. }
  4271. .guanbi{
  4272. position: absolute;
  4273. z-index: 9;
  4274. top: 6px;
  4275. right: 8px;
  4276. color: #8c00ff;
  4277. }
  4278. .noborder{
  4279. border: 0
  4280. }
  4281. .dibubtn{
  4282. position: absolute;
  4283. margin: 16px;
  4284. bottom: 0px;
  4285. left: 0px;
  4286. }
  4287. .dibubtn .el-button {
  4288. padding: 8px 20px;
  4289. width: 343px;
  4290. border-radius: 8px;
  4291. display: block;
  4292. border: 0;
  4293. font-size: 16px;
  4294. font-family: PingFang SC;
  4295. }
  4296. .pxline{
  4297. height: 1px;
  4298. background-color: #CCCDD7;
  4299. }
  4300. .user_info_role .el-input--suffix .el-input__inner {
  4301. padding-right: 0px;
  4302. background-color: transparent;
  4303. box-shadow: 0;
  4304. border-radius: 0px;
  4305. border: 0px solid rgba(227, 227, 227, 1);
  4306. color: rgba(255,255,255,1);
  4307. font-size: 12px;
  4308. }
  4309. .nobg .el-input--suffix .el-input__inner{
  4310. background: transparent;
  4311. box-shadow: 0 0 0;
  4312. border: 1px solid #ccc;
  4313. color: #fff;
  4314. }
  4315. .user_info_role .el-select .el-input .el-select__caret {
  4316. font-size: 0px;
  4317. }
  4318. .nomidline .bg_text_wirte .el-collapse,.nomidline .el-collapse{
  4319. border-top: 0px solid #62626f;
  4320. border-bottom: 0px solid #62626f;
  4321. }
  4322. .fulldialog{
  4323. width: calc(100vw);
  4324. height: calc(100vh);
  4325. position: fixed;
  4326. background: #fff;
  4327. z-index: 999;
  4328. left: 0;
  4329. top: 0;
  4330. overflow-y: auto;
  4331. }
  4332. .questionwarp{
  4333. width: 668px;
  4334. margin: 0 auto;
  4335. margin-top: 20px;
  4336. }
  4337. .dibulongbtn{
  4338. margin: 50px 0;
  4339. overflow: hidden;
  4340. }
  4341. .widt50{
  4342. width: 48%;
  4343. }
  4344. .widt50 .el-button--default{
  4345. width: 100%;
  4346. border-radius: 24px;
  4347. }
  4348. .guanbiques{
  4349. position: fixed;
  4350. right: 30px;
  4351. top: 22px;
  4352. }
  4353. .tianjiaxiezuorenBox .el-button {
  4354. padding: 3px 23px 2px 23px;
  4355. border: 0;
  4356. }
  4357. .tianjiaxiezuorenBox .el-button:focus,.tianjiaxiezuorenBox .el-button:hover {
  4358. color: #ffffff;
  4359. border-color: #8c00ff;
  4360. background-color: #8c00ff;
  4361. }
  4362. .texttips{
  4363. color: rgba(155, 155, 155, 1);
  4364. font-size: 14px;
  4365. }
  4366. .el-input__inner::-webkit-input-placeholder {
  4367. color: rgba(136, 136, 136, 1);
  4368. font-size: 15px;
  4369. }
  4370. .el-input__inner::-moz-placeholder {
  4371. color: rgba(136, 136, 136, 1);
  4372. font-size: 15px;
  4373. }
  4374. .el-input__inner::-ms-input-placeholder {
  4375. color: rgba(136, 136, 136, 1);
  4376. font-size: 15px;
  4377. }
  4378. .appImg{
  4379. width: 32px;
  4380. height: 32px;
  4381. margin-right: 10px;
  4382. background-color: #ccc;
  4383. margin-top: 6px;
  4384. margin-bottom: 6px;
  4385. }
  4386. .appNameBox{
  4387. width: 300px;
  4388. float: right;
  4389. line-height: 40px;
  4390. border-bottom: 1px solid #cccdd7;
  4391. }
  4392. .el-checkbox__inner::after {
  4393. height: 0px;
  4394. left: -5px;
  4395. top: 1px;
  4396. width: 0px;
  4397. }
  4398. .maxlongBtn{
  4399. height: 44px;
  4400. border-radius: 5px;
  4401. border: 1px solid rgba(167, 168, 183, 1);
  4402. color:rgba(167, 168, 183, 1);
  4403. line-height: 44px;
  4404. font-size: 18px;
  4405. cursor: pointer;
  4406. position: relative;
  4407. text-align: center;
  4408. transition: ease all 0.5s;
  4409. }
  4410. .rightIcon{
  4411. transform: rotate(180deg);
  4412. position: absolute;
  4413. right: 20px;
  4414. top: 0px;
  4415. font-size: 21px;
  4416. }
  4417. .maxlongBtn:hover{
  4418. color: #fff;
  4419. border: 1px solid #fff;
  4420. }
  4421. .edit120.el-button.is-round{
  4422. padding: 7px;
  4423. }
  4424. .midIcon{
  4425. position: relative;
  4426. top: 5px;
  4427. width: 55px;
  4428. }
  4429. .yiyun_row_recyle_warp{
  4430. width: 100%;
  4431. padding: 0 22px;
  4432. position: relative;
  4433. left: -44px;
  4434. }
  4435. .bghover:hover .top_optionBar{
  4436. opacity: 1;
  4437. }
  4438. .helpNodeDetailBox{
  4439. min-height: calc(100vh - 300px);
  4440. overflow-y: auto;
  4441. }
  4442. .helpNodeDetailBox p{
  4443. text-align: justify;
  4444. }
  4445. .helpNodeDetailBox p span{
  4446. font-size: 14px!important;
  4447. line-height: 30px;
  4448. text-align: justify;
  4449. display: block;
  4450. text-indent: 30px;
  4451. }
  4452. .appbg{
  4453. background: transparent;
  4454. }
  4455. .appbg .file_Imgbox{
  4456. width: 116px;
  4457. height: 116px;
  4458. border-radius: 16px;
  4459. background-color: #ccc;
  4460. left: 32px;
  4461. top: 32px;
  4462. }
  4463. .appbg .file_Imgbox img{
  4464. width: 100%;
  4465. height: 100%;
  4466. transform: scale(1.23);
  4467. }
  4468. .updateImg .webuploader-pick{
  4469. width: 79px;
  4470. height: 79px;
  4471. border-radius: 0!important;
  4472. border: 0!important;
  4473. background: url(../img/newadd.png) 0 0 no-repeat;
  4474. background-size: 100%;
  4475. background-color: transparent !important;
  4476. position: absolute;
  4477. top: -3px;
  4478. left: 0;
  4479. }
  4480. .selfaddbtn > span{
  4481. position: relative;
  4482. top: 10px;
  4483. }
  4484. .el-date-editor.el-input--suffix .el-input__inner {
  4485. text-indent: 6px;
  4486. }
  4487. .el-form-item__content >span{
  4488. display: -webkit-box;
  4489. -webkit-box-orient: vertical;
  4490. -webkit-line-clamp: 1;
  4491. overflow: hidden;
  4492. font-size: 15px;
  4493. }
  4494. .el-button--text:hover,.el-button--text:focus{
  4495. background-color: transparent;
  4496. }
  4497. .yiyun_section1{
  4498. width: calc(100vw - 120px);
  4499. margin: 0 auto;
  4500. height: calc(100vh - 128px);
  4501. }
  4502. /* 2019-07-25 UI */
  4503. .title_section{
  4504. width: calc(100vw - 120px);
  4505. margin: 0 auto;
  4506. overflow: hidden;
  4507. }
  4508. .EC_searchBox{
  4509. width: 300px;
  4510. margin: 20px auto;
  4511. }
  4512. .el-table--border::after, .el-table--group::after, .el-table::before {
  4513. z-index: -1;
  4514. }
  4515. .cutimgBox{
  4516. width: 77px;
  4517. height: 77px;
  4518. overflow: hidden;
  4519. position: relative;
  4520. float: left;
  4521. margin-right: 9px;
  4522. margin-bottom: 9px;
  4523. border-radius: 10px;
  4524. border: 1px solid rgba(216, 216, 216, 1);
  4525. margin-top: 10px;
  4526. }
  4527. .cutimgBox img{
  4528. width: 100%;
  4529. height: 100%;
  4530. }
  4531. .guanbibtn{
  4532. position: absolute;
  4533. top: 7px;
  4534. right: 9px;
  4535. }
  4536. .guanbibtn:hover{
  4537. color: #8C00FF;
  4538. }
  4539. .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
  4540. background-color: #8E909F;
  4541. border-radius: 5px;
  4542. }
  4543. .yiyun_headerfr>a.textgray{
  4544. color: #adadad;
  4545. width: 100px;
  4546. overflow: hidden;
  4547. text-overflow: ellipsis;
  4548. white-space: nowrap;
  4549. }
  4550. .yiyun_headerfr>a.textblock{
  4551. color: #000
  4552. }
  4553. /* 2019-07-25 探索者UI规范 */
  4554. /*公共默认样式*/
  4555. body{
  4556. margin : 0 ;
  4557. padding : 0 ;
  4558. overflow: hidden;
  4559. }
  4560. .fl{
  4561. float: left;
  4562. }
  4563. .fr{
  4564. float: right;
  4565. }
  4566. .clear{
  4567. clear: both;
  4568. }
  4569. .el-form-itemBox{
  4570. margin: 0 10px;
  4571. overflow: hidden;
  4572. /* max-height: 50px; */
  4573. }
  4574. .mlr-10{
  4575. margin: 0 10px;
  4576. }
  4577. .mlr-16{
  4578. margin-left: 16px;
  4579. margin-right: 16px;
  4580. }
  4581. .mt-8{
  4582. margin-top: 8px;
  4583. }
  4584. .secondListTitle{
  4585. font-size: 16px;
  4586. }
  4587. .yiyunTable_list_item div.textlabelgray .el-form-item__label{
  4588. color: #808080!important;
  4589. font-weight: 500
  4590. }
  4591. .yiyunTable_list_item div.textlabelblock .el-form-item__label{
  4592. color: #000!important;
  4593. font-weight: 600
  4594. }
  4595. div.textlabelgray .el-form-item__content{
  4596. font-size: 15px;
  4597. font-weight: 600;
  4598. }
  4599. .el-table,.el-table thead{
  4600. color: #000;
  4601. font-weight: 600;
  4602. }
  4603. .el-table-column--selection .cell{
  4604. padding: 0;
  4605. }
  4606. .largecontentBox{
  4607. height: calc(100vh - 240px);
  4608. overflow-y: auto;
  4609. position: relative;
  4610. }
  4611. /*边距*/
  4612. .mt-10{
  4613. margin-top: 10px;
  4614. }
  4615. .mb-10{
  4616. margin-bottom: 10px;
  4617. }
  4618. .ml-10{
  4619. margin-left:10px;
  4620. }
  4621. .mr-10{
  4622. margin-right:10px;
  4623. }
  4624. .mt-15{
  4625. margin-top: 15px;
  4626. }
  4627. .ml-15{
  4628. margin-left: 15px;
  4629. }
  4630. .mt-20{
  4631. margin-top: 20px;
  4632. }
  4633. .mb-20{
  4634. margin-bottom: 20px;
  4635. }
  4636. .ml-20{
  4637. margin-left: 20px;
  4638. }
  4639. .mr-20{
  4640. margin-right: 20px;
  4641. }
  4642. .mlr-20{
  4643. margin: 0 20px;
  4644. }
  4645. .mlr_30{
  4646. margin: 0 30px;
  4647. }
  4648. .mt-26{
  4649. margin-top: 26px;
  4650. }
  4651. .line_H60{
  4652. line-height: 60px;
  4653. }
  4654. /* 滚动条 */
  4655. .flex_right_pain_body::-webkit-scrollbar ,.largecontentBox::-webkit-scrollbar,.scollbarBox::-webkit-scrollbar,.middiaHeight::-webkit-scrollbar,
  4656. .tankuangaodu::-webkit-scrollbar,.listfilewarp::-webkit-scrollbar,.jsmind-inner::-webkit-scrollbar,.newfiledialog::-webkit-scrollbar,.scollBar::-webkit-scrollbar,.fixtable::-webkit-scrollbar
  4657. ,.worklink::-webkit-scrollbar,#bigbody::-webkit-scrollbar,.fulldialog::-webkit-scrollbar,.appiframebox::-webkit-scrollbar,.appiframebox::-webkit-scrollbar,.listfilewarp1::-webkit-scrollbar{
  4658. width: 8px;
  4659. height: 8px;
  4660. }
  4661. .translatescoall::-webkit-scrollbar,.neibianju::-webkit-scrollbar,.neibianju1::-webkit-scrollbar,.fifleBox::-webkit-scrollbar{
  4662. width: 0;
  4663. }
  4664. .flex_right_pain_body::-webkit-scrollbar-track ,.largecontentBox::-webkit-scrollbar-track,.scollbarBox::-webkit-scrollbar-track,.middiaHeight::-webkit-scrollbar-track,
  4665. .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
  4666. ,.worklink::-webkit-scrollbar-track,#bigbody::-webkit-scrollbar-track,.fulldialog::-webkit-scrollbar-track,.appiframebox::-webkit-scrollbar-track,.appiframebox::-webkit-scrollbar-track,.listfilewarp1::-webkit-scrollbar-track{
  4667. background-color:transparent;
  4668. -webkit-border-radius: 2em;
  4669. -moz-border-radius: 2em;
  4670. border-radius:2em;
  4671. }
  4672. .flex_right_pain_body::-webkit-scrollbar-thumb,.largecontentBox::-webkit-scrollbar-thumb,.scollbarBox::-webkit-scrollbar-thumb,.middiaHeight::-webkit-scrollbar-thumb,
  4673. .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
  4674. ,.worklink::-webkit-scrollbar-thumb,#bigbody::-webkit-scrollbar-thumb,.fulldialog::-webkit-scrollbar-thumb,.appiframebox::-webkit-scrollbar-thumb,.appiframebox::-webkit-scrollbar-thumb,.listfilewarp1::-webkit-scrollbar-thumb{
  4675. background-color:#adadad;
  4676. -webkit-border-radius: 2em;
  4677. -moz-border-radius: 2em;
  4678. border-radius:2em;
  4679. }
  4680. /*网格布局 24网格*/
  4681. .EC_col_1{
  4682. width: 4.166%;
  4683. float: left;
  4684. }
  4685. .EC_col_2{
  4686. width: 8.33%;
  4687. float: left;
  4688. }
  4689. .EC_col_3{
  4690. width: 12.5%;
  4691. float: left;
  4692. }
  4693. .EC_col_4{
  4694. width: 16.66%;
  4695. float: left;
  4696. }.EC_col_5{
  4697. width: 20.833%;
  4698. float: left;
  4699. }
  4700. .EC_col_6{
  4701. width: 25%;
  4702. float: left;
  4703. }
  4704. .EC_col_7{
  4705. width: 29.166%;
  4706. float: left;
  4707. }
  4708. .EC_col_8{
  4709. width: 33.33%;
  4710. float: left;
  4711. }
  4712. .EC_col_9{
  4713. width: 37.5%;
  4714. float: left;
  4715. }
  4716. .EC_col_10{
  4717. width: 41.66%;
  4718. float: left;
  4719. }
  4720. .EC_col_11{
  4721. width: 45.83%;
  4722. float: left;
  4723. }
  4724. .EC_col_12{
  4725. width: 50%;
  4726. float: left;
  4727. }
  4728. .EC_col_13{
  4729. width: 54.166%;
  4730. float: left;
  4731. }
  4732. .EC_col_14{
  4733. width: 58.33%;
  4734. float: left;
  4735. }
  4736. .EC_col_15{
  4737. width: 62.5%;
  4738. float: left;
  4739. }
  4740. .EC_col_16{
  4741. width: 66.66%;
  4742. float: left;
  4743. }
  4744. .EC_col_17{
  4745. width: 70.833%;
  4746. float: left;
  4747. }
  4748. .EC_col_18{
  4749. width: 75%;
  4750. float: left;
  4751. }
  4752. .EC_col_19{
  4753. width: 79.166%;
  4754. float: left;
  4755. }
  4756. .EC_col_20{
  4757. width: 83.33%;
  4758. float: left;
  4759. }
  4760. .EC_col_21{
  4761. width: 87.5%;
  4762. float: left;
  4763. }
  4764. .EC_col_22{
  4765. width: 91.66%;
  4766. float: left;
  4767. }
  4768. .EC_col_23{
  4769. width: 95.83%;
  4770. float: left;
  4771. }
  4772. .EC_col_24{
  4773. width: 100%;
  4774. float: left;
  4775. }
  4776. /*按钮开始*/
  4777. button + button{
  4778. margin:0 5px;
  4779. }
  4780. .topOption .page_button{
  4781. margin: 0
  4782. }
  4783. button:last-child{
  4784. margin-right: 0;
  4785. }
  4786. .EC_button{
  4787. border: 0.5px solid transparent;
  4788. font-size: 14px;
  4789. border-radius: 4px;
  4790. color: #fff;
  4791. padding: 4px 31px 6px 31px;
  4792. cursor: pointer;
  4793. transition: ease all 0.5s;
  4794. outline: none;
  4795. }
  4796. .cicle{
  4797. border-radius: 15px;
  4798. }
  4799. .normal{
  4800. color: #32323c;
  4801. background-color: #fff;
  4802. border-color: #d4d4d4;
  4803. }
  4804. .dark{
  4805. background-color: #62626F;
  4806. }
  4807. .dark:hover,.normal:hover,.normal:focus,.dark:focus{
  4808. color: #fff;
  4809. border-color: #8C00FF;
  4810. background-color: #8C00FF
  4811. }
  4812. .textborder:focus{
  4813. border-color: #8C00FF;
  4814. color: #8C00FF
  4815. }
  4816. button:hover:disabled,button:disabled{
  4817. color: #ADADAD;
  4818. background-color: #e3e3e3;
  4819. border-color: #e3e3e3;
  4820. cursor: not-allowed;
  4821. }
  4822. .strong{
  4823. background-color: #8C00FF;
  4824. color: #fff;
  4825. border-color: #8C00FF;
  4826. }
  4827. .strong:hover{
  4828. background-color: #a02dff;
  4829. }
  4830. .text{
  4831. border-color: transparent;
  4832. background-color: transparent;
  4833. color: #000;
  4834. }
  4835. .text:hover,.text:focus{
  4836. color: #8C00FF;
  4837. background-color: transparent;
  4838. border: transparent;
  4839. }
  4840. .textborder{
  4841. border-color: #D4D4D4;
  4842. background-color: transparent;
  4843. color: #000;
  4844. }
  4845. .textborder:hover{
  4846. border-color: #8C00FF;
  4847. color: #8C00FF;
  4848. }
  4849. .textStrong{
  4850. border-color: transparent;
  4851. background-color: transparent;
  4852. color: #8C00FF;
  4853. }
  4854. .shadow{
  4855. box-shadow: 0 1px 2px #848484;
  4856. border-color: #e8e8e8;
  4857. }
  4858. .strong.shadow{
  4859. border-color: #8C00FF;
  4860. }
  4861. .gradient{
  4862. color:#32323c;
  4863. border:0;
  4864. background: -webkit-linear-gradient(#E1E2E8,#B0B0B7); /* Safari 5.1 - 6.0 */
  4865. background: -o-linear-gradient(#E1E2E8,#B0B0B7); /* Opera 11.1 - 12.0 */
  4866. background: -moz-linear-gradient(#E1E2E8,#B0B0B7); /* Firefox 3.6 - 15 */
  4867. background: linear-gradient(#E1E2E8,#B0B0B7); /* 标准的语法 */
  4868. }
  4869. .gradient:hover,.gradient:focus{
  4870. background: #8C00FF;
  4871. color: #FFF;
  4872. }
  4873. .long{
  4874. display: block;
  4875. width: 100%;
  4876. padding: 5px 0;
  4877. margin: 0;
  4878. text-align: center;
  4879. }
  4880. /*
  4881. *按钮尺寸:大【bt_large】,中【bt_middle】,小【bt_small】,mini【bt_mini】,微小 【bt_tiny】
  4882. */
  4883. .bt_large{
  4884. font-size: 16px;
  4885. border-radius: 8px;
  4886. }
  4887. .bt_middle{
  4888. font-size: 14px;
  4889. }
  4890. .bt_small{
  4891. font-size: 13px;
  4892. padding: 2px 27px 4px;
  4893. }
  4894. .bt_small_24{
  4895. font-size: 13px;
  4896. padding: 3px 17px;
  4897. font-weight: 400;
  4898. color: #000;
  4899. background-color: #fff;
  4900. border-color: #e3e3e3;
  4901. }
  4902. .bt_small_20{
  4903. font-size: 13px;
  4904. padding: 1px 23px 1px 23px;
  4905. font-weight: 400;
  4906. color: #000;
  4907. background-color: #fff;
  4908. border-color: #e3e3e3;
  4909. }
  4910. .primaryBtn{
  4911. background-color: #8C00FF;
  4912. color: #fff;
  4913. border-color: #8C00FF;
  4914. }
  4915. .primaryBtn:hover{
  4916. background-color: #8C00FF;
  4917. color: #fff!important;
  4918. border-color: #8C00FF;
  4919. }
  4920. .bt_small_20:hover{
  4921. color: #8C00FF;
  4922. border-color: #8C00FF;
  4923. }
  4924. .bt_mini{
  4925. font-size: 12px;
  4926. padding: 2px 14px 3px;
  4927. }
  4928. .bt_tiny{
  4929. font-size: 11px;
  4930. padding: 1px 3px 2px;
  4931. }
  4932. /*开关*/
  4933. .el-switch__core:after {
  4934. top: -6px;
  4935. left: -7px;
  4936. width: 28px;
  4937. height: 28px;
  4938. background-color: #FFF;
  4939. border-radius: 18px;
  4940. box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  4941. }
  4942. .el-switch__core {
  4943. width: 38px!important;
  4944. box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  4945. }
  4946. /* /*按钮结束 */
  4947. /* 用户后台2019-08-05 */
  4948. .wirteBg{
  4949. background-color: rgba(255, 255, 255, 1)!important;
  4950. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  4951. }
  4952. .companylogoBox,.messageBoxlarge{
  4953. height: 255px;
  4954. background-color: rgba(235, 235, 242, 1);
  4955. }
  4956. .companylogoBox{
  4957. height: 255px;
  4958. margin: 30px;
  4959. overflow: hidden;
  4960. }
  4961. .companylogoImgBox{
  4962. width: 180px;
  4963. height: 180px;
  4964. margin: 0 auto;
  4965. margin-top: 35px;
  4966. display: flex;
  4967. justify-content: center;
  4968. align-items: center;
  4969. }
  4970. .companylogoImgBox img{
  4971. max-width: 100%
  4972. }
  4973. .messageBoxlarge{
  4974. height: 182px;
  4975. margin: 5px 0;
  4976. border-top: 1px solid transparent;
  4977. border-radius: 5px;
  4978. }
  4979. .desclabel label{
  4980. color: #808080;
  4981. font-weight: 500;
  4982. display: inline-block;
  4983. width: 80px;
  4984. }
  4985. .desclabel label,.desclabel span{
  4986. font-size: 15px;
  4987. line-height: 40px;
  4988. }
  4989. .desclabel span{
  4990. color: #000;
  4991. font-weight: 500;
  4992. }
  4993. .titleChapter{
  4994. color: rgba(0, 0, 0, 1);
  4995. font-size: 15px;
  4996. vertical-align: baseline
  4997. }
  4998. .labtips{
  4999. color: rgba(140, 0, 255, 1);
  5000. font-size: 12px;
  5001. vertical-align: baseline
  5002. }
  5003. .scanlargeBtn{
  5004. text-decoration: none;
  5005. color: rgba(140, 0, 255, 1);
  5006. font-size: 14px;
  5007. line-height: 44px;
  5008. }
  5009. .ml-23{
  5010. margin-left: 23px;
  5011. }
  5012. .m-20{
  5013. margin: 20px;
  5014. }
  5015. .mt-40{
  5016. margin-top: 40px;
  5017. }
  5018. .mt-5{
  5019. margin-top: 5px;
  5020. }
  5021. .m10{
  5022. margin: 10px;
  5023. }
  5024. .chapter{
  5025. color: rgba(155, 155, 155, 1);
  5026. font-size: 14px;
  5027. }
  5028. .chapterWarp{
  5029. width: 920px;
  5030. margin-left:auto ;
  5031. margin-right: auto
  5032. }
  5033. .page_button{
  5034. font-size: 12px;
  5035. }
  5036. .massagecontentBox img{
  5037. max-width: 100%;
  5038. display: block;
  5039. margin: 0 auto;
  5040. }
  5041. .massagecontentBox{
  5042. color: rgba(0, 0, 0, 1);
  5043. font-size: 14px;
  5044. text-align: justify;
  5045. margin: 10px;
  5046. }
  5047. .chapterbox{
  5048. border-radius: 10px;
  5049. padding-bottom: 20px;
  5050. margin-bottom: 20px;
  5051. overflow: hidden;
  5052. min-height: calc(100vh - 300px);
  5053. }
  5054. .clearboth {
  5055. clear: both;
  5056. overflow: hidden;
  5057. }
  5058. .ProjTitleLabel>div>span{
  5059. cursor: pointer;
  5060. }
  5061. .ProjTitleLabel{
  5062. -moz-user-select: none; /*火狐*/
  5063. -webkit-user-select: none; /*webkit浏览器*/
  5064. -ms-user-select: none; /*IE10*/
  5065. -khtml-user-select: none; /*早期浏览器*/
  5066. user-select: none;
  5067. }
  5068. .Icon_EC{
  5069. width: 20px;
  5070. height: 20px;
  5071. display: block;
  5072. }
  5073. .EC_wornning{
  5074. background: url(../img/icon_pic_01.png) 0 0 no-repeat
  5075. }
  5076. .formtextlabelgray .el-form-item__label{
  5077. color: #9B9B9B;
  5078. font-weight: 400;
  5079. }
  5080. .formtextlabelblack .el-form-item__label{
  5081. color: #000;
  5082. font-weight: 400;
  5083. }
  5084. .formtextlabelgray .el-form-item{
  5085. margin-bottom: 0;
  5086. }
  5087. .formtextlabelblack .el-form-item{
  5088. margin-bottom: 10px;
  5089. }
  5090. .beizhutext{
  5091. color: #888;
  5092. font-weight: 400
  5093. }
  5094. .height100{
  5095. clear: both;
  5096. width: 100%;
  5097. height: 100px;
  5098. }
  5099. .dibuBtn{
  5100. position: absolute;
  5101. bottom: 0px;
  5102. left: 10px;
  5103. }
  5104. .ECaddicon{
  5105. width: 14px;
  5106. height: 14px;
  5107. background: url(/static/img/icon_pic_01.png) 0 -44px no-repeat;
  5108. overflow: hidden;
  5109. padding: 0;
  5110. }
  5111. .ECaddiconUser{
  5112. width: 14px;
  5113. height: 14px;
  5114. background: url(/static/img/icon_pic_01.png) -28px -44px no-repeat;
  5115. overflow: hidden;
  5116. padding: 0;
  5117. display: block;
  5118. margin-top: 1px;
  5119. }
  5120. .ECaddiconcard{
  5121. width: 14px;
  5122. height: 14px;
  5123. background: url(/static/img/icon_pic_01.png) -42px -44px no-repeat;
  5124. overflow: hidden;
  5125. padding: 0;
  5126. display: block;
  5127. margin-top: 1px;
  5128. }
  5129. .Ecdel{
  5130. margin-left: 14px;
  5131. cursor: pointer;
  5132. }
  5133. .Ecdel:hover {
  5134. border-radius: 50%;
  5135. color: #ffffff;
  5136. background-color: #f00;
  5137. }
  5138. .addInput .el-input-group__append{
  5139. border-color: transparent
  5140. }
  5141. .UserItem{
  5142. display: inline-block;
  5143. padding: 3px 7px;
  5144. border-radius: 4px;
  5145. background-color: rgba(167, 168, 183, 1);
  5146. color: #fff;
  5147. font-size: 12px;
  5148. overflow: hidden;
  5149. margin-right: 4px;
  5150. }
  5151. .usertext{
  5152. display:block;
  5153. float: left;
  5154. margin-left: 6px;
  5155. }
  5156. .selectuserBox{
  5157. padding: 8px 0 4px 8px;
  5158. border-radius: 4px;
  5159. background-color: rgba(244, 244, 246, 1);
  5160. position: relative;
  5161. min-height: 28px;
  5162. margin-top: 5px;
  5163. }
  5164. .inputactived{
  5165. background-color: rgba(204, 205, 215, 1);
  5166. }
  5167. .inputactived .UserItem{
  5168. background-color: rgba(140, 0, 255, 1);
  5169. }
  5170. .inputactived .ECaddicon{
  5171. background: url(/static/img/icon_pic_01.png) 0px -58px no-repeat;
  5172. }
  5173. .ECIcondingwei{
  5174. position: absolute;
  5175. top: 13px;
  5176. right: 7px;
  5177. cursor: pointer;
  5178. }
  5179. .selctspan span{
  5180. cursor: pointer;
  5181. margin-left: 12px;
  5182. font-size: 22px!important;
  5183. }
  5184. .no-mlr{
  5185. margin-left: 0;
  5186. margin-right: 0;
  5187. }
  5188. .dialogIcon{
  5189. position: absolute;
  5190. top: 20px;
  5191. }
  5192. .diaTitle{
  5193. font-size: 18px;
  5194. /* line-height: 54px; */
  5195. text-align: center;
  5196. color: #000;
  5197. margin-bottom: 20px;
  5198. }
  5199. .centerfooter{
  5200. display: block;
  5201. text-align:center
  5202. }
  5203. .wornningDia .el-dialog{
  5204. width: 460px!important;
  5205. border-radius: 20px;
  5206. }
  5207. .centerfooter .el-button.is-round {
  5208. padding: 7px 84px;
  5209. }
  5210. .ECclockText{
  5211. color: rgba(136, 136, 136, 1);
  5212. font-size: 12px;
  5213. }
  5214. .ECclock{
  5215. display: inline-block;
  5216. width: 24px;
  5217. height: 24px;
  5218. background: url(/static/img/icon_pic_01.png) -24px -20px no-repeat;
  5219. }
  5220. .el-ecclock{
  5221. display: inline-block;
  5222. width: 20px;
  5223. height: 20px;
  5224. background: url(/static/img/icon_pic_01.png) -60px 0px no-repeat;
  5225. }
  5226. .el-ecclock-o{
  5227. display: inline-block;
  5228. width: 20px;
  5229. height: 20px;
  5230. background: url(/static/img/icon_pic_01.png) -140px 0px no-repeat;
  5231. }
  5232. .clockPostion{
  5233. position: relative;
  5234. top: 7px;
  5235. margin-left: 5px;
  5236. }
  5237. .Treenavbox{
  5238. overflow: hidden;
  5239. }
  5240. .treeNav{
  5241. margin: 0 px;
  5242. }
  5243. .treeNav li{
  5244. line-height:44px;
  5245. color: rgba(255, 255, 255, 1);
  5246. font-size: 17px;
  5247. padding-left: 16px;
  5248. cursor: pointer;
  5249. }
  5250. .treeNav li:hover{
  5251. transition: ease all 0.5s;
  5252. border-radius: 4px;
  5253. background-color: rgba(141, 143, 159, 0.1411764705882353);
  5254. }
  5255. .contentNav{
  5256. transition: ease all 0.5s;
  5257. border-radius: 4px;
  5258. background-color: rgba(167, 168, 183, 1);
  5259. }
  5260. .comlogoBox{
  5261. text-align: center;
  5262. width: 340px;
  5263. height: 255px;
  5264. line-height: 255px;
  5265. background-color: rgba(235, 235, 242, 1);
  5266. color: rgba(0, 0, 0, 1);
  5267. font-size: 17px;
  5268. cursor: pointer;
  5269. position: relative;
  5270. display: flex;
  5271. justify-content: center;
  5272. align-items: center;
  5273. }
  5274. .uploadImg{
  5275. position: absolute;
  5276. left: 50px;
  5277. }
  5278. .xindinwei{
  5279. top: 106px;
  5280. left: 195px;
  5281. }
  5282. .comlogoImgBox{
  5283. margin: 10px 0;
  5284. overflow: hidden;
  5285. }
  5286. .labelbiaoshi{
  5287. color: rgba(155, 155, 155, 1);
  5288. font-size: 14px;
  5289. display: block;
  5290. margin-bottom: 10px;
  5291. }
  5292. .bzInfo{
  5293. position: absolute;
  5294. bottom: 0px;
  5295. left: 10px;
  5296. }
  5297. .labelTosize{
  5298. color: rgba(173, 173, 173, 1);
  5299. font-size: 16px;
  5300. }
  5301. .yiyunTable_list_item{
  5302. overflow: hidden;
  5303. }
  5304. .liulanqiImgBox,
  5305. .shoujiImgBox{
  5306. display: table;
  5307. vertical-align: middle;
  5308. text-align: center;
  5309. color: rgba(0, 0, 0, 1);
  5310. font-size: 17px;
  5311. height: 240px;
  5312. background-color: rgba(235, 235, 242, 1);
  5313. }
  5314. .liulanqiImgBox{
  5315. width: 340px;
  5316. }
  5317. .shoujiImgBox{
  5318. width: 135px;
  5319. }
  5320. .el-radio__input.is-checked+.el-radio__label {
  5321. color: #000;
  5322. }
  5323. .topyichu::before{
  5324. content: '';
  5325. }
  5326. .ECvh_row_2{
  5327. min-height: calc(50vh - 130px);
  5328. }
  5329. .bgblack{
  5330. background-color: #ccc;
  5331. }
  5332. .el-progress-bar__outer ,.el-progress-bar__inner{
  5333. border-radius: 4px;
  5334. }
  5335. .el-input--suffix .el-input__inner {
  5336. padding-right: 30px;
  5337. background-color: #fff;
  5338. box-shadow: 0 2px 2px #cacaca;
  5339. border-radius: 4px;
  5340. border: 0.5px solid rgba(227, 227, 227, 1);
  5341. color: rgba(140, 0, 255, 1);
  5342. font-size: 15px;
  5343. }
  5344. .el-select .el-input .el-select__caret {
  5345. font-size: 26px;
  5346. }
  5347. .el-form-item__content {
  5348. overflow: initial;
  5349. }
  5350. /* 模板与应用 */
  5351. .layout_warp_4{
  5352. width: calc(100vw - 80px);
  5353. overflow: hidden;
  5354. margin: 0 auto
  5355. }
  5356. .appListBox{
  5357. padding: 0;
  5358. margin: 0;
  5359. }
  5360. .appListBox li{
  5361. margin: 10px 20px;
  5362. padding: 0;
  5363. text-align: center;
  5364. list-style: none;
  5365. float: left;
  5366. cursor: pointer;
  5367. }
  5368. .appImgIcon{
  5369. position: relative;
  5370. width: 130px;
  5371. height: 130px;
  5372. }
  5373. .appmark{
  5374. position: absolute;
  5375. width: 32px;
  5376. height: 32px;
  5377. border-radius: 50%;
  5378. top: 10px;
  5379. left: 10px;
  5380. color: rgb(140, 0, 255);
  5381. background-color: #fff;
  5382. font-size: 30px;
  5383. box-shadow: 0 3px 10px rgba(0, 0, 0, 0.32);
  5384. }
  5385. .Appname{
  5386. text-align: center;
  5387. line-height: 21px;
  5388. color: rgba(0, 0, 0, 1);
  5389. font-size: 16px;
  5390. }
  5391. .mark_disable{
  5392. background: url(/static/img/icon_pic_01.png) -100px 0px no-repeat;
  5393. }
  5394. .mark_able{
  5395. background: url(/static/img/icon_pic_01.png) -20px 0px no-repeat;
  5396. }
  5397. .mark_openclock{
  5398. background: url(/static/img/icon_pic_01.png) -80px 0px no-repeat;
  5399. }
  5400. .mark_normal{
  5401. opacity: 0;
  5402. }
  5403. .templateBoxItem{
  5404. margin: 20px;
  5405. height: 119px;
  5406. border-radius: 8px;
  5407. background-color: rgba(255, 255, 255, 1);
  5408. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  5409. position: relative;
  5410. border-top: 1px solid transparent;
  5411. }
  5412. .primaryText{
  5413. color: rgba(140, 0, 255, 1);
  5414. font-size: 12px;
  5415. }
  5416. .card_title{
  5417. color: rgba(0, 0, 0, 1);
  5418. font-size: 17px;
  5419. }
  5420. .cardBoxItemInner{
  5421. margin: 16px 17px 10px 20px;
  5422. }
  5423. .optionBtnlabel .primaryText{
  5424. position: absolute;
  5425. bottom: 13px;
  5426. }
  5427. .optionBtnlabel .primaryopBtn{
  5428. position: absolute;
  5429. right: 17px;
  5430. bottom: 10px;
  5431. }
  5432. .noshadow{
  5433. background-color: transparent;
  5434. box-shadow: 0 0 0 0;
  5435. }
  5436. .disadbled{
  5437. color: rgba(172, 172, 172, 1);
  5438. font-size: 13px;
  5439. background-color: rgba(227, 227, 227, 1);
  5440. border: 0.5px solid rgba(212, 212, 212, 1);
  5441. }
  5442. .disadbled:hover{
  5443. color: rgba(172, 172, 172, 1);
  5444. background-color: rgba(227, 227, 227, 1);
  5445. border: 0.5px solid rgba(212, 212, 212, 1);
  5446. }
  5447. .disadbledText{
  5448. color: rgba(136, 136, 136, 1);
  5449. }
  5450. .addlebel{
  5451. color: rgba(136, 136, 136, 1);
  5452. font-size: 12px;
  5453. display: block;
  5454. text-align: center;
  5455. }
  5456. .redText{
  5457. color: #D6243A ;
  5458. }
  5459. .addpicImg_large{
  5460. display: block;
  5461. width: 50px;
  5462. height: 50px;
  5463. margin: 23px auto 17px auto;
  5464. background: url(/static/img/icon_pic_01.png) 0px -70px no-repeat;
  5465. }
  5466. .cuspinter{
  5467. cursor: pointer;
  5468. box-shadow: 0 0 0 0;
  5469. border-radius: 8px;
  5470. border: 1px solid rgba(216, 216, 216, 1);
  5471. overflow: hidden;
  5472. height: 118px;
  5473. }
  5474. .appImgBox{
  5475. display: block;
  5476. width: 180px;
  5477. height: 180px;
  5478. margin: 50px auto;
  5479. text-align: center;
  5480. line-height: 180px;
  5481. }
  5482. .applistInfo{
  5483. color: rgba(235, 235, 242, 1);
  5484. font-size: 16px;
  5485. line-height: 40px;
  5486. border-bottom: 1px solid #8E909F;
  5487. }
  5488. .applistInfo:last-child{
  5489. border-bottom: 0px solid #8E909F;
  5490. }
  5491. .applistInfo p{
  5492. font-size: 16px;
  5493. line-height: 24px;
  5494. }
  5495. .hid{
  5496. height: 40px;
  5497. }
  5498. .appListBox li:hover{
  5499. border-radius: 20px;
  5500. background-color: rgba(227, 227, 227, 0.86);
  5501. transition: ease all 0.5s;
  5502. }
  5503. .marketcardItem{
  5504. margin:20px;
  5505. height: 120px;
  5506. border-radius: 8px;
  5507. background-color: rgba(255, 255, 255, 1);
  5508. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  5509. }
  5510. .minitext{
  5511. width: 300px;
  5512. line-height: 20px;
  5513. color: rgba(136, 136, 136, 1);
  5514. font-size: 13px;
  5515. }
  5516. .appDesc{
  5517. margin: 20px 25px 20px 10px;
  5518. height: 119px;
  5519. border-bottom: 1px solid #CCCDD7;
  5520. }
  5521. .addprimaryopBtn.el-button.is-round{
  5522. padding: 5px 27px;
  5523. }
  5524. .selctIcon{
  5525. width: 24px;
  5526. height: 24px;
  5527. display: block;
  5528. background: url(/static/img/icon_pic_01.png) 0px -20px no-repeat;
  5529. cursor: pointer;
  5530. }
  5531. .topBtngroup{
  5532. width: 86px!important;
  5533. transform-origin: center top;
  5534. z-index: 2102;
  5535. position: absolute;
  5536. top: 86px;
  5537. left: 59px;
  5538. }
  5539. .el-popover{
  5540. min-width: auto;
  5541. border-radius:4px;
  5542. }
  5543. .popoverNav li{
  5544. color: rgba(50, 50, 60, 1);
  5545. font-size: 14px;
  5546. padding: 10px 15px;
  5547. }
  5548. .Icon_size_128{
  5549. width: 128px;
  5550. height: 128px;
  5551. }
  5552. .Icon_size_108{
  5553. width: 108px;
  5554. height: 108px;
  5555. }
  5556. .Icon_size_62{
  5557. width: 62px;
  5558. height: 62px;
  5559. }
  5560. .Icon_size_32{
  5561. width: 32px;
  5562. height: 32px;
  5563. }
  5564. .IconBg{
  5565. border: 1px solid transparent
  5566. }
  5567. .IconBg:hover{
  5568. border: 1px dashed #7a7a88;
  5569. cursor: pointer;
  5570. transition: all ease 0.5s;
  5571. }
  5572. .AppIcon_group{
  5573. position: relative;
  5574. width: 338px;
  5575. margin: 0 auto;
  5576. margin-top: 106px;
  5577. }
  5578. .IconBg img{
  5579. width: 100%;
  5580. }
  5581. .center{
  5582. text-align: center;
  5583. }
  5584. .beizhu_11{
  5585. color: rgba(209, 209, 209, 1);
  5586. font-size: 11px;
  5587. }
  5588. .label_primary{
  5589. color: rgba(140, 0, 255, 1);
  5590. }
  5591. .label_danger{
  5592. color: rgba(214, 36, 58, 1);
  5593. }
  5594. .appFileBox{
  5595. list-style: none;
  5596. margin: 0;
  5597. padding: 0;
  5598. overflow: hidden;
  5599. }
  5600. .appFileBox li{
  5601. margin: 20px;
  5602. padding: 0;
  5603. float: left;
  5604. border-radius: 20px;
  5605. cursor: pointer;
  5606. position: relative;
  5607. transition: ease all 0.5s;
  5608. }
  5609. .appFileBox li:hover{
  5610. background-color: rgba(227, 227, 227, 0.86);
  5611. }
  5612. .appFileBox li>.appfileBtn{
  5613. opacity: 0;
  5614. }
  5615. .appFileBox li:hover>.appfileBtn{
  5616. opacity: 1;
  5617. }
  5618. .appfileImgIcon{
  5619. width: 180px;
  5620. height: 180px;
  5621. display: flex;
  5622. justify-items: center;
  5623. align-items: center;
  5624. }
  5625. .appfileImgIconItem{
  5626. display: block;
  5627. width: 180px;
  5628. height: 180px;;
  5629. }
  5630. .defualtappImg{
  5631. background: url(/static/img/appFileImg.png) -1800px 0px no-repeat;
  5632. }
  5633. .appImgIcon_{
  5634. background: url(/static/img/appFileImg.png) -1440px 0px no-repeat;
  5635. }
  5636. .appImgIcon_dwg{
  5637. background: url(/static/img/appFileImg.png) 0px 0px no-repeat;
  5638. }
  5639. .appImgIcon_zip{
  5640. background: url(/static/img/appFileImg.png) -180px 0px no-repeat;
  5641. }
  5642. .appImgIcon_skr{
  5643. background: url(/static/img/appFileImg.png) -360px 0px no-repeat;
  5644. }
  5645. .appImgIcon_rvt{
  5646. background: url(/static/img/appFileImg.png) -540px 0px no-repeat;
  5647. }
  5648. .appImgIcon_rar{
  5649. background: url(/static/img/appFileImg.png) -720px 0px no-repeat;
  5650. }
  5651. .appImgIcon_nwc{
  5652. background: url(/static/img/appFileImg.png) -900px 0px no-repeat;
  5653. }
  5654. .appImgIcon_3dmax{
  5655. background: url(/static/img/appFileImg.png) -1080px 0px no-repeat;
  5656. }
  5657. .appImgIcon_dxf{
  5658. background: url(/static/img/appFileImg.png) -1260px 0px no-repeat;
  5659. }
  5660. .mt-4{
  5661. margin-top: 4px;
  5662. }
  5663. .mb-6{
  5664. margin-bottom: 6px;
  5665. }
  5666. .appfileBtn{
  5667. width: 16px;
  5668. height: 16px;
  5669. overflow: hidden;
  5670. position: absolute;
  5671. top: 20px;
  5672. right: 20px;
  5673. }
  5674. .IconSetting{
  5675. display: block;
  5676. width: 17px;
  5677. height: 17px;
  5678. background: url(/static/img/icon_16.png) 0px -32px no-repeat;
  5679. }
  5680. .el-table--enable-row-hover .el-table__body tr:hover>td {
  5681. background-color: #f0f0f0;
  5682. }
  5683. .addUpfile{
  5684. width: 106px;
  5685. height: 106px;
  5686. margin: 0 auto;
  5687. }
  5688. .addUpfile .webuploader-pick{
  5689. display: block;
  5690. width: 106px;
  5691. height: 106px;
  5692. background: url(/static/img/newadd.png) 0 0 no-repeat;
  5693. background-color: transparent!important;
  5694. border: 0!important;
  5695. }
  5696. .addUpfile .webuploader-pick~div{
  5697. left: 0!important;
  5698. }
  5699. .searchInput{
  5700. float:right;
  5701. width: auto
  5702. }
  5703. .searchInput.el-input--suffix .el-input__inner{
  5704. box-shadow: 0 0 0 ;
  5705. background-color: #eee;
  5706. border-radius: 15px;
  5707. border: 1px solid transparent
  5708. }
  5709. .searchInput .el-input-group__prepend{
  5710. border: 0;
  5711. padding: 0;
  5712. }
  5713. .searchInputzhankai{
  5714. position: relative;
  5715. }
  5716. .searchInputzhankai i{
  5717. color: rgb(166,167,182);
  5718. line-height: 30px;
  5719. float: left;
  5720. margin-right: 5px;
  5721. cursor: pointer;
  5722. }
  5723. .searchInputzhankai i:focus{
  5724. color: rgb(0,0,0);
  5725. }
  5726. .searchInputzhankai input{
  5727. width: 200px;
  5728. height: 30px;
  5729. border: 0;
  5730. background-color: #eee;
  5731. border-radius: 15px;
  5732. text-indent: 0px;
  5733. }
  5734. .biaoqianweizhi1{
  5735. position: absolute;
  5736. bottom: 50px;
  5737. left: 20px;
  5738. }
  5739. .biaoqianweizhi2{
  5740. position: absolute;
  5741. bottom: 15px;
  5742. left: 20px;
  5743. cursor:pointer;
  5744. }
  5745. h4.biaoqianweizhi2{
  5746. color: rgba(255, 255, 255, 1);
  5747. font-size: 25px;
  5748. text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  5749. font-weight: 500;
  5750. display: -webkit-box;
  5751. -webkit-box-orient: vertical;
  5752. -webkit-line-clamp: 1;
  5753. overflow: hidden;
  5754. }
  5755. .deletIocn{
  5756. font-size: 30px;
  5757. }
  5758. .juzhongtext{
  5759. padding: 100px 0;
  5760. text-align: center;
  5761. }
  5762. .el-form-item__error {
  5763. color: #F56C6C;
  5764. font-size: 12px;
  5765. line-height: 1;
  5766. padding-top: 4px;
  5767. position: absolute;
  5768. top: 28%;
  5769. left: auto;
  5770. right: 10px;
  5771. background-color: #fff;
  5772. }
  5773. .card_box_pane{
  5774. width: 260px;
  5775. height: 120px;
  5776. border-radius: 10px;
  5777. background-color: #fff;
  5778. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  5779. margin-top: 40px;
  5780. margin-bottom: 55px;
  5781. overflow: hidden;
  5782. position: relative;
  5783. float: left;
  5784. margin-right: 40px;
  5785. cursor: pointer;
  5786. }
  5787. .card_box_pane>img{
  5788. width: 100%;
  5789. height: 100%;
  5790. }
  5791. .icontree{
  5792. display: block
  5793. }
  5794. .tree-icon {
  5795. display:inline-block;
  5796. }
  5797. .el-tree-node__expand-icon.is-leaf {
  5798. color: transparent;
  5799. cursor: default;
  5800. width: 0;
  5801. }
  5802. .treeItembox i{
  5803. margin-right: 5px;
  5804. }
  5805. .treeItembox{
  5806. display: block;
  5807. width: 100%;
  5808. }
  5809. .el-icon-models{
  5810. background: url("../img/AdminImg/icon_model.png") 0 0;
  5811. width: 16px;
  5812. height: 16px;
  5813. margin-right: 0px;
  5814. }
  5815. .wenjianjialiebiao{
  5816. position: relative;
  5817. }
  5818. .mianbaoxiedinwei{
  5819. position: absolute;
  5820. top: 5px;
  5821. left: 5px;
  5822. z-index: 6;
  5823. }
  5824. .backprevIcon{
  5825. display: inline-block;
  5826. width: 17px;
  5827. height: 17px;
  5828. border-radius: 8px;
  5829. overflow: hidden;
  5830. text-align: center;
  5831. line-height: 16px;
  5832. background-color: rgba(255, 255, 255, 1);
  5833. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  5834. position: relative;
  5835. top: 3px;
  5836. margin-left: 7px;
  5837. margin-right: 10px;
  5838. }
  5839. .el-breadcrumb__item:last-child .el-breadcrumb__inner{
  5840. color: #000
  5841. }
  5842. .el-breadcrumb__inner{
  5843. line-height: 24px;
  5844. }
  5845. .el-breadcrumb__separator {
  5846. color: rgba(156, 0, 255, 1);
  5847. }
  5848. .el-form-item {
  5849. margin-bottom: 10px;
  5850. }
  5851. .kapian_card{
  5852. margin: 0 10px;
  5853. height: 120px;
  5854. border-radius: 10px;
  5855. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  5856. position: relative;
  5857. overflow: hidden;
  5858. }
  5859. .kapian_card img{
  5860. display: block;
  5861. width: 100%;
  5862. height: 100%;
  5863. cursor: pointer;
  5864. }
  5865. .cl_card{
  5866. margin: 0 20px 0 10px;
  5867. }
  5868. .ce_card{
  5869. margin: 0 20px 0 20px;
  5870. }
  5871. .cr_card{
  5872. margin: 0 10px 0 20px;
  5873. }
  5874. .el-tree-node__expand-icon{
  5875. font-size: 18px;
  5876. }
  5877. .el-tree-node__content>.el-tree-node__expand-icon {
  5878. padding: 1px;
  5879. }
  5880. .filebox{
  5881. width: 70px;
  5882. height: 100px;
  5883. overflow: hidden;
  5884. box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  5885. cursor: pointer;
  5886. }
  5887. .listimg{
  5888. width: 100px;
  5889. height: 100px;
  5890. overflow: hidden;
  5891. position: relative;
  5892. display: flex;
  5893. cursor: pointer;
  5894. filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.3));
  5895. justify-content: center;
  5896. align-items: center;
  5897. }
  5898. .listimg img{
  5899. max-width: 100px;
  5900. max-height: 100px;
  5901. }
  5902. .listimg .houzuidinwei{
  5903. font-size: 18px;
  5904. top: 71px;
  5905. right: 23px;
  5906. }
  5907. .wordicon{
  5908. background: url(/static/img/appfiletapy.png) 0 0;
  5909. }
  5910. .excelicon{
  5911. background: url(/static/img/appfiletapy.png) -70px 0;
  5912. }
  5913. .pdficon{
  5914. background: url(/static/img/appfiletapy.png) -140px 0;
  5915. }
  5916. .dwgicon{
  5917. background: url(/static/img/appfiletapy.png) -210px 0;
  5918. }
  5919. .dxficon{
  5920. background: url(/static/img/appfiletapy.png) -280px 0;
  5921. }
  5922. .maxicon{
  5923. background: url(/static/img/appfiletapy.png) -350px 0;
  5924. }
  5925. .nwcicon{
  5926. background: url(/static/img/appfiletapy.png) -420px 0;
  5927. }
  5928. .raricon{
  5929. background: url(/static/img/appfiletapy.png) -490px 0;
  5930. }
  5931. .rvticon{
  5932. background: url(/static/img/appfiletapy.png) -560px 0;
  5933. }
  5934. .skpicon{
  5935. background: url(/static/img/appfiletapy.png) -630px 0;
  5936. }
  5937. .zipicon{
  5938. background: url(/static/img/appfiletapy.png) -700px 0;
  5939. }
  5940. .abcicon{
  5941. background: url(/static/img/appfiletapy.png) -770px 0;
  5942. }
  5943. .addUpfile2 .webuploader-pick {
  5944. display: block;
  5945. width: 680px;
  5946. line-height: 100px;
  5947. height: 100px;
  5948. background-color: #fff!important;
  5949. border: 0!important;
  5950. border-radius: 10px!important;
  5951. text-indent: 58px;
  5952. }
  5953. .addUpfile2 .webuploader-pick:hover{
  5954. color: #323232!important
  5955. }
  5956. .addUpfile2 .webuploader-pick~div{
  5957. content: '点击上传';
  5958. position: absolute;
  5959. top: 0px;
  5960. left: 0px;
  5961. width: 680px;
  5962. height: 106px;
  5963. overflow: hidden;
  5964. bottom: auto;
  5965. right: auto;
  5966. }
  5967. .uploadBtn{
  5968. position: relative;
  5969. }
  5970. .uploadBtnImg{
  5971. position: absolute;
  5972. left: 37%;
  5973. top: 26%;
  5974. z-index: 1;
  5975. }
  5976. .dragbox .shangchuandinwei{
  5977. width: 400px;
  5978. /* height: 120px; */
  5979. background-color: rgba(255,255,255,1);
  5980. border: 0;
  5981. }
  5982. /* .updatebox li{
  5983. background-color: #fff;
  5984. } */
  5985. .redlabel{
  5986. color: rgba(156, 0, 255, 1);
  5987. font-size: 13px;
  5988. text-align: left;
  5989. }
  5990. .gundontiao{
  5991. width: calc(100vw - 120px);
  5992. height: calc(100vh - 120px);
  5993. overflow-x: auto;
  5994. overflow-y: auto;
  5995. }
  5996. .searhNodeNameconcenter{
  5997. width: 300px;
  5998. margin: 0 auto;
  5999. }
  6000. .el-message-box {
  6001. border-radius: 8px;
  6002. }
  6003. .ecload.yiyunfile-Uploader .webuploader-pick {
  6004. border-radius: 4px !important;
  6005. font-size: 13px;
  6006. font-weight: 500;
  6007. width: 112px;
  6008. height: 19px;
  6009. line-height: 20px;
  6010. background: #fff!important;
  6011. color: #323232;
  6012. cursor: pointer;
  6013. border: 0.5px solid #e3e3e3!important;
  6014. box-shadow: 0 0 0 0;
  6015. display: inline-block;
  6016. font-family: Yahei
  6017. }
  6018. .ecload.yiyunfile-Uploader:hover .webuploader-pick {
  6019. color: #8C00FF!important;
  6020. border: 0.5px solid #8C00FF!important;
  6021. }
  6022. .ecBtngroup_Item{
  6023. display: inline-block;
  6024. margin-right: 5px;
  6025. }
  6026. .ecload{
  6027. position: relative;
  6028. top: 5px;
  6029. }
  6030. .meassageyichu{
  6031. height: 20px;
  6032. overflow: hidden;
  6033. }
  6034. /* 提示框 */
  6035. .el-message-box__status+.el-message-box__message {
  6036. padding-left: 50px;
  6037. padding-right: 50px;
  6038. padding-top: 14px;
  6039. padding-bottom: 32px;
  6040. text-align: center;
  6041. }
  6042. .el-message-box__status.el-icon-warning {
  6043. color: #F8D12A;
  6044. }
  6045. .el-message-box__status {
  6046. position: absolute;
  6047. top: -22px;
  6048. -webkit-transform: translateY(-50%);
  6049. transform: translateY(-50%);
  6050. font-size: 28px!important;
  6051. }
  6052. .el-message-box {
  6053. box-shadow: 0px 12px 14px 0px rgba(0, 0, 0, 0.2);
  6054. width: 460px;
  6055. }
  6056. .el-message-box__message p {
  6057. margin: 0;
  6058. line-height: 24px;
  6059. font-size: 18px;
  6060. color: #000;
  6061. }
  6062. .el-message-box .el-message-box__btns .el-button{
  6063. width: 210px;
  6064. height: 30px;
  6065. padding: 7px 20px;
  6066. border-radius: 30px;
  6067. font-size: 14px;
  6068. }
  6069. .el-message-box__content {
  6070. padding: 40px 15px;
  6071. }
  6072. .el-dialog {
  6073. border-radius: 30px;
  6074. box-shadow: 0px 12px 14px 0px rgba(0, 0, 0, 0.2);
  6075. }
  6076. .el-dialog__header {
  6077. padding: 30px 20px 0px;
  6078. text-align: center;
  6079. }
  6080. .el-dialog__footer .el-button{
  6081. width: 200px;
  6082. height: 30px;
  6083. padding: 7px 20px;
  6084. border-radius: 30px;
  6085. font-size: 14px;
  6086. }
  6087. .el-dialog__headerbtn,.el-message-box__headerbtn {
  6088. font-size: 28px;
  6089. }
  6090. .el-message-box__header {
  6091. position: relative;
  6092. text-align: center;
  6093. }
  6094. .el-message-box__header {
  6095. padding: 40px 15px 10px;
  6096. }
  6097. .el-message-box__btns {
  6098. padding: 5px 15px 8px;
  6099. }
  6100. .el-dialog--center .el-dialog__body {
  6101. overflow: hidden;
  6102. }
  6103. .longform .el-cascader{
  6104. width: 410px;
  6105. }
  6106. /* 层级树 */
  6107. .avtarface{
  6108. width: 60px;
  6109. height: 60px;
  6110. border-radius: 30px;
  6111. /* background-color: rgba(235, 235, 242, 1); */
  6112. cursor: pointer;
  6113. overflow: hidden;
  6114. position: relative;
  6115. }
  6116. .avtarface img{
  6117. width: 100%;
  6118. height: 100%;
  6119. }
  6120. .avtarface:hover>.eiditIconimgBox{
  6121. position: absolute;
  6122. top: 0;
  6123. left: 0;
  6124. width: 100%;
  6125. height: 100%;
  6126. text-align: center;
  6127. background-color: rgba(0,0,0,.5);
  6128. transition: ease all 0.5s;
  6129. }
  6130. .eiditIconimg{
  6131. font-size: 26px;
  6132. width: 32px;
  6133. height: 32px;
  6134. border-radius: 16px;
  6135. background-color: #fff;
  6136. display: block;
  6137. margin: 0 auto;
  6138. margin-top: 14px;
  6139. line-height: 32px;
  6140. color: #8c00ff;
  6141. }
  6142. .vhLine{
  6143. width: 1px;
  6144. height: 24px;
  6145. background-color: rgba(50, 50, 60, 1);
  6146. margin-top: 20px
  6147. }
  6148. .Text_tiny{
  6149. font-size: 12px;
  6150. }
  6151. .firstPeople{
  6152. width: 60px;
  6153. overflow: hidden;
  6154. text-align: center;
  6155. }
  6156. .ECworkerList{
  6157. text-align: center;
  6158. margin-left: 6px;
  6159. }
  6160. .ECworkerList li{
  6161. float: left;
  6162. margin: 0 12px;
  6163. cursor: pointer;
  6164. margin-bottom: 10px;
  6165. position: relative
  6166. }
  6167. .largeaddEC{
  6168. line-height: 60px;
  6169. font-size: 32px;
  6170. color: rgba(50, 50, 60, 0.82);
  6171. }
  6172. .addBtn_new{
  6173. text-align: center;
  6174. transition: ease all 0.5s;
  6175. color: rgba(235, 235, 242, 1);
  6176. width: 20px;
  6177. height: 60px;
  6178. background-color: rgba(235, 235, 242, 1);
  6179. border-radius: 10px;
  6180. }
  6181. .middleaddEC{
  6182. line-height: 60px;
  6183. font-size: 16px;
  6184. color: rgb(80, 82, 92);
  6185. cursor: pointer;
  6186. }
  6187. .addBtn_new:hover{
  6188. background-color: rgb(248, 209, 42);
  6189. }
  6190. .ec_number{
  6191. font-style: normal;
  6192. }
  6193. .tinyText_wirte{
  6194. color: rgba(255, 255, 255, 1);
  6195. font-weight: 200;
  6196. font-size: 12px;
  6197. margin-top: 8px;
  6198. width: 62px;
  6199. display: -webkit-box;
  6200. -webkit-box-orient: vertical;
  6201. -webkit-line-clamp: 1;
  6202. overflow: hidden;
  6203. }
  6204. .chengyuanbox{
  6205. width: 82%;
  6206. }
  6207. .eidtrepFirst{
  6208. position: relative;
  6209. }
  6210. .eidtrepFirstIconBox{
  6211. position: absolute;
  6212. left: 0;
  6213. top: 0;
  6214. width: 60px;
  6215. height: 60px;
  6216. z-index: 2;
  6217. overflow: hidden;
  6218. border-radius: 30px;
  6219. background-color: rgba(0, 0, 0, 0.4);
  6220. cursor: pointer;
  6221. transition: ease all 0.5s;
  6222. overflow: hidden;
  6223. opacity: 0;
  6224. }
  6225. .eidtrepFirst:hover .eidtrepFirstIconBox{
  6226. opacity: 1;
  6227. }
  6228. .eidtrepFirstIcon {
  6229. width: 32px;
  6230. height: 32px;
  6231. text-align: center;
  6232. line-height: 32px;
  6233. background-color: #ffffffdb;
  6234. font-size: 20px;
  6235. padding: 0;
  6236. border-radius: 32px;
  6237. color: #8c00ff;
  6238. display: block;
  6239. margin: 0 auto;
  6240. margin-top: 15px
  6241. }
  6242. .shenlvbiox{
  6243. width: 144px;
  6244. height: 60px;
  6245. }
  6246. .morePeople{
  6247. float: left;
  6248. width: 32px;
  6249. height: 32px;
  6250. overflow: hidden;
  6251. border-radius: 16px;
  6252. margin: 14px 4px;
  6253. background-color: #fff;
  6254. }
  6255. .morePeople img{
  6256. width: 100%;
  6257. height: 100%;
  6258. }
  6259. .morePeopleBox{
  6260. width: 120px;
  6261. margin: 0 auto
  6262. }
  6263. .EC_searchBox .el-input--suffix .el-input__inner{
  6264. box-shadow: 0 0 0 ;
  6265. border: 1px solid transparent;
  6266. text-indent: 20px;
  6267. }
  6268. .EC_searchBox .el-input--suffix .el-input__inner:hover{
  6269. border: 1px solid rgba(140, 0, 255, 1);
  6270. }
  6271. .EC_searchBox .el-input__suffix{
  6272. top:5px;
  6273. width: 20px;
  6274. height: 20px;
  6275. border-radius: 10px;
  6276. background-color:rgba(214, 36, 58, 1);
  6277. background: url(../img/icon_pic_01.png) -120px 0 no-repeat
  6278. }
  6279. .EC_searchBox .el-input__suffix i,.searchInput .el-input__suffix i{
  6280. opacity: 0
  6281. }
  6282. .searchInput .el-input__suffix{
  6283. top: 3px;
  6284. width: 20px;
  6285. height: 20px;
  6286. border-radius: 10px;
  6287. background-color:rgba(214, 36, 58, 1);
  6288. background: url(../img/icon_pic_01.png) -120px 0 no-repeat
  6289. }
  6290. .huangguan{
  6291. display: block;
  6292. background: url(../img/huangguan.png) 0 -19px no-repeat;
  6293. width: 26px;
  6294. height: 19px;
  6295. float: left;
  6296. margin-top: 7px;
  6297. margin-right: 8px;
  6298. }
  6299. .huangguanactive{
  6300. display: block;
  6301. background: url(../img/huangguan.png) 0 0px no-repeat;
  6302. width: 26px;
  6303. height: 19px;
  6304. float: left;
  6305. margin-top: 7px;
  6306. margin-right: 8px;
  6307. }
  6308. .zhangkai_up{
  6309. display: block;
  6310. width: 58px;
  6311. height: 58px;
  6312. background: url(../img/updown.png) 0 0 no-repeat;
  6313. margin-left: 3px;
  6314. }
  6315. .zhangkai_down{
  6316. display: block;
  6317. width: 58px;
  6318. height: 58px;
  6319. background: url(../img/updown.png) 0 -58px no-repeat;
  6320. margin-left: 3px;
  6321. }
  6322. .newweizhi{
  6323. position: absolute;
  6324. left: 85px;
  6325. top: 0px;
  6326. }
  6327. .xiezuobox>div{
  6328. margin-bottom: 20px;
  6329. }
  6330. .large_huangguan{
  6331. display: block;
  6332. width: 60px;
  6333. height: 60px;
  6334. color: #878787;
  6335. font-size: 32px;
  6336. background-color: #EBEBF2;
  6337. text-align: center;
  6338. line-height: 60px;
  6339. }
  6340. .ec_dialog{
  6341. width: 100%;
  6342. height: 100%;
  6343. position: fixed;
  6344. top: 0;
  6345. background-color: rgba(0,0,0,0.0);
  6346. z-index: 999;
  6347. }
  6348. .ec_dialogBox{
  6349. width: 800px;
  6350. height: 500px;
  6351. border-radius: 8px;
  6352. background-color: rgba(255, 255, 255, 1);
  6353. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  6354. margin: 0 auto;
  6355. margin-top: 150px;
  6356. }
  6357. .ec_dialogBoxBody{
  6358. height: 360px;
  6359. }
  6360. .line{
  6361. clear: both;
  6362. height: 1px;
  6363. background-color: #EBEEF5;
  6364. }
  6365. .ec_dialogBoxHeadTitle{
  6366. margin-left: 16px;
  6367. line-height: 60px;
  6368. }
  6369. .ec_dialogBoxHeadclose{
  6370. line-height: 60px;
  6371. margin-right: 20px;
  6372. }
  6373. .ec_dialogBoxBody .el-cascader-panel.is-bordered {
  6374. width: 768px;
  6375. height: 344px;
  6376. border-radius: 8px;
  6377. background-color: rgba(246, 246, 246, 1);
  6378. border: 1px solid rgba(227, 227, 227, 1);
  6379. overflow-x: auto;
  6380. margin: 12px auto;
  6381. }
  6382. .ec_dialogBoxBody .el-cascader-menu__wrap{
  6383. height: 344px;
  6384. overflow-y: auto
  6385. }
  6386. .ec_dialogBoxBody .el-cascader-node{
  6387. padding: 0 20px 0 0;
  6388. }
  6389. .ec_dialogBoxBody .el-cascader-menu__list {
  6390. padding: 6px 16px;
  6391. }
  6392. .ec_dialogBoxBody .el-cascader-node__prefix {
  6393. position: absolute;
  6394. left: -10px;
  6395. }
  6396. .ec_dialogBoxBody .el-radio__inner {
  6397. border: 1px solid #62626F;
  6398. background-color: #62626F;
  6399. }
  6400. .ec_dialogBoxfooter .el-button {
  6401. display: inline-block;
  6402. transition: .1s;
  6403. font-weight: 500;
  6404. -moz-user-select: none;
  6405. font-size: 16px;
  6406. border-radius: 4px;
  6407. width: 369px;
  6408. height: 32px;
  6409. border-radius: 8px;
  6410. border: 0;
  6411. background-color: #fff;
  6412. margin: 10px;
  6413. box-shadow: 0 3px 7px 2px #d6d6d8;
  6414. padding: 0!important;
  6415. margin-top: 15px;
  6416. cursor: pointer;
  6417. }
  6418. .ec_dialogBoxBody .el-cascader-panel.is-bordered::-webkit-scrollbar {
  6419. width: 5px;
  6420. height: 5px;
  6421. }
  6422. .ec_dialogBoxBody .el-cascader-panel.is-bordered::-webkit-scrollbar-track {
  6423. background-color:transparent;
  6424. -webkit-border-radius: 2em;
  6425. -moz-border-radius: 2em;
  6426. border-radius:2em;
  6427. }
  6428. .ec_dialogBoxBody .el-cascader-panel.is-bordered::-webkit-scrollbar-thumb {
  6429. background-color:#adadad;
  6430. -webkit-border-radius: 2em;
  6431. -moz-border-radius: 2em;
  6432. border-radius:2em;
  6433. }
  6434. .mini_typeBtn.el-button {
  6435. padding: 2px 20px;
  6436. }
  6437. .tianjiaxiezuorenBox>.tianjiaxiezuorenBox{
  6438. padding-left: 25px;
  6439. }
  6440. .hand{
  6441. cursor: pointer;
  6442. transition: ease all 0.5s;
  6443. }
  6444. .diaform .el-form-item__label{
  6445. color: #606266;
  6446. }
  6447. .ECupload .el-upload-dragger {
  6448. width: 420px;
  6449. height: 32px;
  6450. }
  6451. .ECupload .el-upload-dragger .el-icon-upload {
  6452. font-size: 28px;
  6453. margin: -10px 21px 0px;
  6454. float: left;
  6455. }
  6456. .ECupload .el-upload-dragger .el-upload__text {
  6457. font-size: 12px;
  6458. float: left;
  6459. line-height: 30px;
  6460. }
  6461. .longUploder .webuploader-pick{
  6462. width: 100%;
  6463. }
  6464. .main_workerBox{
  6465. width: 380px;
  6466. height: 192px;
  6467. border-radius: 4px;
  6468. border: 1px solid rgba(255, 210, 50, 1);
  6469. }
  6470. .largehuangguan{
  6471. font-size: 48px;
  6472. color: rgba(248, 209, 42, 1);
  6473. margin-left: 10px;
  6474. margin-top: 10px;
  6475. display: inline-block;
  6476. }
  6477. .rentou_alrge{
  6478. width: 120px;
  6479. height: 120px;
  6480. margin: 0 auto;
  6481. background:url(../img/huangguan.png) 0 -98px no-repeat;
  6482. position: relative;
  6483. top: -26px;
  6484. }
  6485. .middlehuangguan{
  6486. font-size: 49px;
  6487. color: #FFD232;
  6488. position: relative;
  6489. top: -10px;
  6490. margin-right: 10px;
  6491. }
  6492. .mainpeople_H{
  6493. height: 26px;
  6494. border-radius: 4px;
  6495. border: 1px solid rgba(255, 210, 50, 1);
  6496. padding: 20px 10px;
  6497. }
  6498. .mainpeople_H.user_info_item .user_info_faceImg{
  6499. margin-top: 0;
  6500. }
  6501. .largeclose{
  6502. font-size: 16px;
  6503. position: relative;
  6504. top: -6px;
  6505. }
  6506. .diaTip{
  6507. width: 348px;
  6508. color: rgba(235, 235, 242, 1);
  6509. font-size: 14px;
  6510. text-align: left;
  6511. margin: 0 auto;
  6512. margin-top: 16px;
  6513. }
  6514. .self_slider .el-slider__runway,.self_slider .el-slider__bar{
  6515. height: 1px;
  6516. background-color: #D8D8D8 ;
  6517. }
  6518. .self_slider .el-slider__button{
  6519. width: 24px;
  6520. height: 24px;
  6521. border-radius: 50%;
  6522. background: rgba(255, 255, 255, 1);
  6523. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  6524. }
  6525. .self_slider .el-slider__button-wrapper{
  6526. top: -18px;
  6527. }
  6528. .midupload .webuploader-pick{
  6529. width: 80px;
  6530. height: 20px;
  6531. border-radius: 4px!important;
  6532. border: 0.5px solid rgba(227, 227, 227, 1)!important;
  6533. background-color: #fff!important;
  6534. line-height: 18px;
  6535. color: rgba(0, 0, 0, 1);
  6536. font-size: 13px;
  6537. text-align: center;
  6538. box-shadow: 0 1px 2px #848484;
  6539. transition: ease all 0.5s;
  6540. }
  6541. .midupload .webuploader-pick:hover{
  6542. color: #8C00FF!important;
  6543. border-color: #8C00FF!important;
  6544. }
  6545. .derect_right{
  6546. display: inline-block;
  6547. width: 16px;
  6548. height: 16px;
  6549. background: url(../img/icon_file2.png) 0 -80px no-repeat;
  6550. }
  6551. .fileIcon_16{
  6552. display: inline-block;
  6553. width: 16px;
  6554. height: 16px;
  6555. position: relative;
  6556. top: 3px;
  6557. background: url(../img/icon_file2.png) 0 -240px no-repeat;
  6558. }
  6559. .fileIcon_word{
  6560. background: url(../img/icon_file2.png) 0 -16px no-repeat;
  6561. }
  6562. .fileIcon_jpg,.fileIcon_png{
  6563. background: url(../img/icon_file2.png) 0 -16px no-repeat;
  6564. }
  6565. .fileIcon_dwg{
  6566. background: url(../img/icon_file2.png) 0 -96px no-repeat;
  6567. }
  6568. .fileIcon_rar{
  6569. background: url(../img/icon_file2.png) 0 -112px no-repeat;
  6570. }
  6571. .fileIcon_skp{
  6572. background: url(../img/icon_file2.png) 0 -128px no-repeat;
  6573. }
  6574. .fileIcon_rvt{
  6575. background: url(../img/icon_file2.png) 0 -144px no-repeat;
  6576. }
  6577. .fileIcon_zip{
  6578. background: url(../img/icon_file2.png) 0 -128px no-repeat;
  6579. }
  6580. .fileIcon_nwc{
  6581. background: url(../img/icon_file2.png) 0 -176px no-repeat;
  6582. }
  6583. .fileIcon_3dmax,.fileIcon_max{
  6584. background: url(../img/icon_file2.png) 0 -192px no-repeat;
  6585. }
  6586. .fileIcon_dxf{
  6587. background: url(../img/icon_file2.png) 0 -208px no-repeat;
  6588. }
  6589. .fileIcon_weizi{
  6590. background: url(../img/icon_file2.png) 0 -224px no-repeat;
  6591. }
  6592. .fileIcon_doc{
  6593. background: url(../img/icon_file2.png) 0 -304px no-repeat;
  6594. }
  6595. .fileIcon_pdf{
  6596. background: url(../img/icon_file2.png) 0 -272px no-repeat;
  6597. }
  6598. .fileIcon_ppt{
  6599. background: url(../img/icon_file2.png) 0 -288px no-repeat;
  6600. }
  6601. .fileIcon_excel{
  6602. background: url(../img/icon_file2.png) 0 -320px no-repeat;
  6603. }
  6604. .fileIcon_png,.fileIcon_jpg,.fileIcon_jpeg{
  6605. background: url(../img/icon_file2.png) 0 -336px no-repeat;
  6606. }
  6607. .fileIcon_other{
  6608. background: url(../img/icon_file2.png) 0 -352px no-repeat;
  6609. }
  6610. .noborderbtn .el-input-group__append{
  6611. border: 1px solid transparent;
  6612. color: #cccdd7;
  6613. background-color: rgba(244, 244, 246, 1);
  6614. }
  6615. .noborderbtn .el-input-group__append:hover{
  6616. color: #62626F;
  6617. }
  6618. .middiaHeight{
  6619. height: 300px;
  6620. overflow-y: auto;
  6621. }
  6622. .middiaHeight .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{
  6623. background-color: rgba(97, 97, 111, 0.12);
  6624. }
  6625. .middiaHeight .el-tree-node__content:hover{
  6626. background-color: #f0f7ff;
  6627. }
  6628. .color1{
  6629. color: #8c00ff;
  6630. }
  6631. .color2{
  6632. color: #0012ff;
  6633. }
  6634. .DevtopIcon{
  6635. position: absolute;
  6636. left: -40px;
  6637. top: 6px;
  6638. }
  6639. .orginoverflow{
  6640. overflow: inherit;
  6641. }
  6642. button.yiyuntitle.myFolderName{
  6643. font-size: 20px;
  6644. text-align: center;
  6645. line-height: 37px;
  6646. border: 0;
  6647. font-weight: 400;
  6648. font-family: PingFang SC;
  6649. cursor: pointer;
  6650. background-color: transparent;
  6651. padding: 0;
  6652. }
  6653. button.yiyuntitle.nowFolderName{
  6654. font-size: 20px;
  6655. border-radius: 4px;
  6656. background-color: rgba(255, 255, 255, 1);
  6657. /* box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2); */
  6658. text-align: center;
  6659. line-height: 37px;
  6660. padding: 0 16px;
  6661. border: 0;
  6662. font-weight: 400;
  6663. font-family: PingFang SC;
  6664. cursor: pointer;
  6665. margin-right: 11px;
  6666. position: relative;
  6667. top: 2px;
  6668. }
  6669. .shadowbtn{
  6670. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  6671. }
  6672. h3.defualth3{
  6673. color: #A7A8B7;
  6674. font-size: 18px;
  6675. float: left;
  6676. margin-right: 10px;
  6677. cursor: pointer;
  6678. line-height: 31px;
  6679. text-align: center;
  6680. transition: ease all 0.5s;
  6681. border-radius: 4px;
  6682. transition: 0.2s all linear;
  6683. padding: 0 10px;
  6684. font-weight: 400;
  6685. }
  6686. h3.defualth3:hover{
  6687. background-color: rgb(235,235,242);
  6688. }
  6689. .sectitle{
  6690. border: 0;
  6691. font-weight: 500;
  6692. font-family: PingFang SC;
  6693. max-width: 76px;
  6694. padding: 0 14px;
  6695. height: 28px;
  6696. border-radius: 4px;
  6697. background-color: rgba(250, 250, 250, 1);
  6698. color: rgba(136, 136, 136, 1);
  6699. font-size: 12px;
  6700. overflow: hidden;
  6701. text-overflow:ellipsis;
  6702. white-space: nowrap;
  6703. cursor: pointer;
  6704. }
  6705. .sectitle:hover{
  6706. color: rgb(140, 0, 255);
  6707. }
  6708. /* h3.defualth3::before {
  6709. content: "";
  6710. position: absolute;
  6711. top: 0;
  6712. left: 100%;
  6713. width: 0;
  6714. height: 100%;
  6715. background-color: rgb(235,235,242);
  6716. transition: 0.2s all linear;
  6717. }
  6718. h3.defualth3:hover::before {
  6719. width: 100%;
  6720. height: 100%;
  6721. top: 0;
  6722. left: 0;
  6723. background-color: rgb(255,255,255);
  6724. transition-delay: 0.1s;
  6725. z-index: -1;
  6726. }
  6727. h3.defualth3:hover ~ h3.defualth3::before {
  6728. left: 0;
  6729. } */
  6730. h3.curactive{
  6731. color: #000000;
  6732. background-color: rgba(204, 205, 215, 1);
  6733. }
  6734. .hands{
  6735. cursor: pointer;
  6736. margin-right: 20px;
  6737. }
  6738. .hands:hover{
  6739. color: #409EFF;
  6740. }
  6741. .tabtltlebox{
  6742. display: flex;
  6743. vertical-align: baseline;
  6744. }
  6745. .icon-icon_shouqi.zhankaiIcon{
  6746. transform: rotate(180deg);
  6747. -ms-transform:rotate(180deg); /* IE 9 */
  6748. -moz-transform:rotate(180deg); /* Firefox */
  6749. -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
  6750. -o-transform:rotate(180deg); /* Opera */
  6751. }
  6752. .closepageH{
  6753. height: 54px;
  6754. transition: ease all 0.5s;
  6755. }
  6756. .myselfupload .el-upload-dragger {
  6757. height: 30px;
  6758. }
  6759. .myselfupload .el-upload-dragger .el-icon-upload {
  6760. font-size: 24px;
  6761. margin: 0;
  6762. line-height: 28px;
  6763. float: left;
  6764. padding-left: 30px;
  6765. }
  6766. .myselfupload .el-upload-dragger .el-upload__text{
  6767. line-height: 28px;
  6768. }
  6769. .contextmenu {
  6770. margin: 0;
  6771. background: #fff;
  6772. z-index: 3000;
  6773. position: absolute;
  6774. list-style-type: none;
  6775. padding: 5px 0;
  6776. border-radius: 4px;
  6777. font-size: 12px;
  6778. font-weight: 400;
  6779. color: #333;
  6780. box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.3);
  6781. }
  6782. .rightMenu>li{
  6783. line-height: 36px;
  6784. font-size: 14px;
  6785. padding: 0 20px;
  6786. color: #606266;
  6787. }
  6788. .rightMenu>li:hover{
  6789. cursor: pointer;
  6790. background-color: #ecf5ff;
  6791. color: #66b1ff;
  6792. }
  6793. li.secondMenu:hover{
  6794. background-color: transparent;
  6795. }
  6796. li.secondMenu ul li{
  6797. padding-left: 10px;
  6798. }
  6799. li.secondMenu ul li:hover {
  6800. background-color: rgb(230, 235, 241);
  6801. cursor: pointer;
  6802. }
  6803. .appImgiconbox{
  6804. width: 70px;
  6805. height: 70px;
  6806. border-radius: 35px;
  6807. margin: 10px auto;
  6808. }
  6809. .appImgiconbox img{
  6810. width: 70px;
  6811. }
  6812. .centertext{
  6813. text-align: center;
  6814. }
  6815. .yyerrtip{
  6816. color: red;
  6817. font-weight: bold;
  6818. position: absolute;
  6819. right: 12px;
  6820. top: 19px;
  6821. z-index: 999;
  6822. }
  6823. .loginright_btn.nopadding{
  6824. padding: 0;
  6825. }
  6826. .visontext{
  6827. line-height: 13px;
  6828. color: #4a90e2;
  6829. font-size: 10px;
  6830. text-align: center;
  6831. padding: 0px 12px;
  6832. border-radius: 10px;
  6833. display: inline-block;
  6834. margin-top: 20px;
  6835. transition: ease all 0.5s;
  6836. font-weight: 400;
  6837. }
  6838. .yiyun_wenjian_list{
  6839. text-align: center;
  6840. }
  6841. .yiyun_wenjian_list:hover>.visontext{
  6842. color: rgb(255, 255, 255);
  6843. background-color: #4a90e2;
  6844. }
  6845. .width4{
  6846. width: 33.33%;
  6847. }
  6848. .nobianju{
  6849. margin: 0;
  6850. }
  6851. .wirtebtn{
  6852. border: 0;
  6853. line-height: 28px;
  6854. color: rgba(0, 0, 0, 1);
  6855. font-size: 14px;
  6856. text-align: center;
  6857. background-color: rgba(255, 255, 255, 1);
  6858. border-radius: 6px;
  6859. padding: 0px 8px;
  6860. margin: 0 16px;
  6861. cursor: pointer;
  6862. transition: ease all 0.5s;
  6863. }
  6864. .wirtebtn:hover{
  6865. color: #8b35f0;
  6866. }
  6867. .overflowinit{
  6868. overflow: initial;
  6869. }
  6870. .webuploader-element-invisible{
  6871. visibility: hidden;
  6872. }
  6873. .neibianju {
  6874. background-color: #fff;
  6875. padding-top: 2px;
  6876. min-height: 259px;
  6877. max-height: 300px;
  6878. border-radius: 16px 16px 0 0;
  6879. box-shadow: 0 -3px 11px 1px rgba(0,0,0,0.06);
  6880. overflow-y: auto;
  6881. }
  6882. .neibianju1 {
  6883. background-color: #fff;
  6884. padding-top: 5px;
  6885. height: calc(100vh - 168px);
  6886. border-radius: 16px 16px 0 0;
  6887. box-shadow: 0 -3px 11px 1px rgba(0,0,0,0.06);
  6888. overflow-y: auto;
  6889. }
  6890. /* 意见反馈 */
  6891. .yijianfankui{
  6892. position: absolute;
  6893. right: 23px;
  6894. bottom: 30px;
  6895. border: 0px;
  6896. width: 22px;
  6897. border-radius: 16px;
  6898. background-color: rgba(255, 255, 255, 1);
  6899. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  6900. color: rgba(50, 50, 60, 1);
  6901. font-size: 12px;
  6902. text-align: left;
  6903. cursor: pointer;
  6904. overflow: hidden;
  6905. }
  6906. .putonganniu{
  6907. width: 22px;
  6908. text-align: center;
  6909. font-size: 11px;
  6910. border: 0;
  6911. background-color: #fff;
  6912. font-weight: 900;
  6913. color: #000;
  6914. overflow: hidden;
  6915. padding: 3px 0;
  6916. }
  6917. .putonganniu:hover{
  6918. color: #8c00ff;
  6919. }
  6920. .quanxuanbtn{
  6921. position: absolute;
  6922. right: 30px;
  6923. }
  6924. .quanxuanbtn .el-checkbox__label{
  6925. font-size: 13px;
  6926. }
  6927. .btnlabelTitle{
  6928. font-size: 15px;
  6929. }
  6930. .el-checkbox__inner::after {
  6931. border: 0px solid #FFF;
  6932. }
  6933. .el-checkbox__inner {
  6934. border: 1px solid #DCDFE6;
  6935. background-color: #fff0;
  6936. }
  6937. .defualtBtnInfo.quitBtn{
  6938. height: 32px;
  6939. border-radius: 8px;
  6940. border: 0;
  6941. background-color: rgba(255, 255, 255, 1);
  6942. box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  6943. font-size: 16px;
  6944. font-family: PingFang SC;
  6945. }
  6946. .yiyun_app_info_box li::after,.yiyun_yinyongname::after{
  6947. content: '';
  6948. display: block;
  6949. height: 1px;
  6950. background-color: #d8d8d8;
  6951. position: relative;
  6952. }
  6953. .yiyun_app_info_box li::after{
  6954. top: 43px;
  6955. }
  6956. .yiyun_yinyongname::after{
  6957. top: 10px;
  6958. }
  6959. .editnone .el-form{
  6960. padding: 0 16px;
  6961. }
  6962. .workbtn{
  6963. width: 28px;
  6964. height: 28px;
  6965. border-radius: 4px;
  6966. color: #ADADAD;
  6967. line-height: 28px;
  6968. text-align: center;
  6969. background-color: rgba(250, 250, 250, 1);
  6970. cursor: pointer;
  6971. font-size: 24px;
  6972. transition: ease all 0.5s;
  6973. }
  6974. .drakbg{
  6975. border-radius: 4px;
  6976. background-color: rgba(167, 168, 183, 1);
  6977. color: #fff;
  6978. }
  6979. .anniuweizhi{
  6980. position: absolute;
  6981. left: -40px;
  6982. top: 14px;
  6983. }
  6984. .workbtn:hover{
  6985. /* box-shadow: 0px -3px 10px 0px rgba(0, 0, 0, 0.2); */
  6986. color: rgba(140, 0, 255, 1);
  6987. }
  6988. .rota180{
  6989. display: inline-block;
  6990. -webkit-transform: rotate(180deg);
  6991. -moz-transform: rotate(180deg);
  6992. -o-transform: rotate(180deg);
  6993. -ms-transform: rotate(180deg);
  6994. transform: rotate(180deg);
  6995. }
  6996. .rota90{
  6997. display: inline-block;
  6998. -webkit-transform: rotate(90deg);
  6999. -moz-transform: rotate(90deg);
  7000. -o-transform: rotate(90deg);
  7001. -ms-transform: rotate(90deg);
  7002. transform: rotate(90deg);
  7003. }
  7004. .workderct{
  7005. position: relative;
  7006. top: 5px;
  7007. margin-left: 10px;
  7008. /* margin-top: 15px; */
  7009. }
  7010. /* .worktitlebox button+button{
  7011. margin: 0 8px;
  7012. } */
  7013. .worklink{
  7014. width: 100%;
  7015. height: calc(100vh - 114px);
  7016. display: flex;
  7017. align-items: center;
  7018. overflow-y: auto;
  7019. flex-direction: row;
  7020. }
  7021. .linkcenter{
  7022. justify-content: center;
  7023. }
  7024. .linkstart{
  7025. justify-content: start;
  7026. }
  7027. .worklinkBtngroup{
  7028. height: 54px;
  7029. overflow: hidden;
  7030. float: left;
  7031. max-width: 368px;
  7032. }
  7033. .worklinkBtngroup button{
  7034. margin: 0 8px;
  7035. }
  7036. .curbtn{
  7037. float: left;
  7038. margin-top: 7px;
  7039. }
  7040. .currworkbutton{
  7041. border: 1.5px solid rgba(140, 0, 255, 1);
  7042. width: 106px;
  7043. height: 48px;
  7044. border-radius: 4px;
  7045. background-color: rgba(255, 255, 255, 1);
  7046. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  7047. cursor: pointer;
  7048. }
  7049. .workbutton{
  7050. width: 106px;
  7051. height: 48px;
  7052. border-radius: 4px;
  7053. background-color: rgba(255, 255, 255, 1);
  7054. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  7055. border: 1.5px solid rgba(140, 0, 255, 0);
  7056. padding: 0 16px;
  7057. cursor: pointer;
  7058. overflow: hidden;
  7059. text-overflow: ellipsis;
  7060. white-space: nowrap;
  7061. }
  7062. .workbutton:hover{
  7063. border: 1.5px solid rgba(140, 0, 255, 1);
  7064. }
  7065. .workbutton.current{
  7066. border: 1.5px solid rgba(140, 0, 255, 1);
  7067. }
  7068. .linkline{
  7069. width: 42px;
  7070. height: 1px;
  7071. background-color: rgba(204, 205, 215, 1);
  7072. display: inline-block;
  7073. position: relative;
  7074. top: -4px;
  7075. }
  7076. .workend{
  7077. background-color: rgba(140, 0, 255, 1);
  7078. }
  7079. .workheight{
  7080. height: calc(100vh - 48px);
  7081. transition: ease all 0.5s;
  7082. background-color: #f0f0f0;
  7083. }
  7084. .workheightinit{
  7085. height: calc(0);
  7086. overflow: hidden;
  7087. transition: ease all 0.5s;
  7088. }
  7089. .bgwirte{
  7090. background-color: #fff;
  7091. }
  7092. .backwork{
  7093. height: 45px;
  7094. background-color: rgba(235, 235, 235, 0.57);
  7095. }
  7096. .worklinkHeight{
  7097. height: calc(100vh - 158px);
  7098. }
  7099. .warpbianju{
  7100. width: calc(100vw - 120px);
  7101. margin: 0 auto;
  7102. }
  7103. .largecheck .el-checkbox__inner {
  7104. width: 32px;
  7105. height: 32px;
  7106. border-radius: 16px;
  7107. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  7108. border: 5px solid #fff;
  7109. background-color: #fff;
  7110. }
  7111. .largecheck .el-checkbox__inner::after{
  7112. box-sizing: content-box;
  7113. content: "";
  7114. border: 2px solid #fff;
  7115. border-left: 0;
  7116. border-top: 0;
  7117. height: 16px;
  7118. height: 12px;
  7119. left: 7px;
  7120. position: absolute;
  7121. top: 2px;
  7122. transform: rotate(45deg) scaleY(0);
  7123. width: 6px;
  7124. transition: transform .15s ease-in .05s;
  7125. transform-origin: center;
  7126. }
  7127. .linedia .el-dialog__header{
  7128. text-align: left;
  7129. padding: 17px 16px;
  7130. border-bottom: 1px solid #dadbe2;
  7131. }
  7132. .linedia .el-dialog__headerbtn{
  7133. top: 9px;
  7134. }
  7135. .linedia .el-dialog__body{
  7136. padding: 16px;
  7137. }
  7138. .linedia .el-dialog{
  7139. border-radius: 8px;
  7140. }
  7141. .widthfile{
  7142. display: inline-block;
  7143. width: 300px;
  7144. }
  7145. .widthtext1{
  7146. display: inline-block;
  7147. width: 55px;
  7148. text-align: center;
  7149. }
  7150. .widthtext{
  7151. display: inline-block;
  7152. width: 180px;
  7153. }
  7154. .widthtext1.minitext,.widthtext.minitext{
  7155. text-align: center;
  7156. }
  7157. .largecheck .el-checkbox__input.is-checked .el-checkbox__inner,.largecheck .el-checkbox__input.is-indeterminate .el-checkbox__inner {
  7158. background-color: #8c00ff;
  7159. border: 5px solid #fff;
  7160. }
  7161. .largecheck .el-checkbox__input.is-focus .el-checkbox__input{
  7162. border: 5px solid #fff;
  7163. }
  7164. .loginright_btn.top0{
  7165. top: 0;
  7166. }
  7167. .midtext{
  7168. width: 252px;
  7169. color: rgba(0, 0, 0, 1);
  7170. font-size: 16px;
  7171. text-align: left;
  7172. margin-left: 30px;
  7173. line-height: 16px;
  7174. display: inline-block;
  7175. text-overflow: ellipsis;
  7176. overflow: hidden;
  7177. position: relative;
  7178. top: 2px;
  7179. }
  7180. .minitext{
  7181. color: rgba(98, 98, 111, 1);
  7182. font-size: 12px;
  7183. text-align: left;
  7184. }
  7185. .link{
  7186. text-decoration: none;
  7187. }
  7188. .link:hover{
  7189. color: #8c00ff;
  7190. }
  7191. .visionlist li{
  7192. line-height: 48px;
  7193. }
  7194. .visionlist li:hover{
  7195. background-color: #CCCDD7 ;
  7196. border-radius: 8px;
  7197. cursor: pointer;
  7198. }
  7199. .visionlistTitle{
  7200. color: rgba(140, 0, 255, 1);
  7201. font-size: 14px;
  7202. text-align: left;
  7203. margin-bottom: 12px;
  7204. display: block;
  7205. margin-top: 10px;
  7206. }
  7207. .linedia .el-dialog__title {
  7208. line-height: 24px;
  7209. font-size: 17px;
  7210. color: #303133;
  7211. font-weight: bolder;
  7212. }
  7213. .tankuangaodu{
  7214. height: 296px;
  7215. overflow-y: auto;
  7216. }
  7217. .yijianxietong{
  7218. display: block;
  7219. width: 20px;
  7220. height: 20px;
  7221. background-color: #CCCDD7;
  7222. color: #fff;
  7223. border-radius: 10px;
  7224. position: absolute;
  7225. left: 4px;
  7226. top: 4px;
  7227. }
  7228. .yijianIcon{
  7229. font-size: 24px;
  7230. left: -2px;
  7231. top: -3px;
  7232. position: relative;
  7233. }
  7234. .isonselect{
  7235. background-color: rgba(74, 226, 166, 1);
  7236. }
  7237. .isonselect_err{
  7238. background-color: rgba(214, 36, 58, 1);
  7239. }
  7240. .isonselect_update{
  7241. background-color: rgba(74, 144, 226, 1);
  7242. }
  7243. .tipMsg{
  7244. padding: 0px 2px;
  7245. background-color: #ED1B35;
  7246. border-radius: 10px;
  7247. font-size: 12px;
  7248. color: #fff;
  7249. font-style: normal;
  7250. margin-right: 6px;
  7251. }
  7252. .yiyun_wenjian_list .isonselect_defual{
  7253. opacity: 0;
  7254. transition: ease all 0.5s;
  7255. }
  7256. .yiyun_wenjian_list:hover .isonselect_defual{
  7257. opacity: 1;
  7258. }
  7259. .el-checkbox__label {
  7260. display: unset;
  7261. font-size: 13px;
  7262. }
  7263. .filestate{
  7264. position: absolute;
  7265. top: 35%;
  7266. left: 20%;
  7267. background-color: #E3E3E3;
  7268. padding: 3px 13px;
  7269. border-radius: 18px;
  7270. font-size: 16px;
  7271. }
  7272. .nobottom .el-form-item {
  7273. margin-bottom: 0px;
  7274. }
  7275. .flex_right_pain_body input[type="password"] {
  7276. letter-spacing: 0px;
  7277. font-size: 20px;
  7278. line-height: 10px;
  7279. }
  7280. input[type="password"]::-webkit-input-placeholder {
  7281. letter-spacing: 0;
  7282. font-size: 14px;
  7283. }
  7284. input[type="password"]:-moz-placeholder {
  7285. letter-spacing: 0;
  7286. font-size: 14px;
  7287. }
  7288. input[type="password"]::-moz-placeholder {
  7289. letter-spacing: 0;
  7290. font-size: 14px;
  7291. }
  7292. input[type="password"]:-ms-input-placeholder {
  7293. letter-spacing: 0;
  7294. font-size: 14px;
  7295. }
  7296. /* 上传进度 */
  7297. /* .shangchuandinwei{
  7298. position: absolute;
  7299. top: 25%;
  7300. left: 50%;
  7301. z-index: 9999;
  7302. max-height: 500px;
  7303. overflow-y: auto;
  7304. margin-left: -280px;
  7305. padding: 20px;
  7306. border: 0px;
  7307. width: 680px;
  7308. height: 254px;
  7309. border-radius: 8px!important;
  7310. background-color: rgba(255, 255, 255, 1);
  7311. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  7312. } */
  7313. i.iconmidle{
  7314. margin-top: 16px;
  7315. }
  7316. .bianjutop{
  7317. width: 15px;
  7318. }
  7319. .bianjutop2{
  7320. width: 14px;
  7321. }
  7322. .bianjutop{
  7323. position: relative;
  7324. top: 2px;
  7325. left: -1px;
  7326. }
  7327. .fulltreebox{
  7328. height: calc(100vh - 146px);
  7329. }
  7330. .project_gantetubox_warp{
  7331. margin-top: 5px;
  7332. }
  7333. .btn_double{
  7334. width: 343px;
  7335. background-color: rgba(255, 255, 255, 1);
  7336. margin: 0 auto;
  7337. border-radius: 8px;
  7338. box-shadow: 0 3px 6px 4px rgba(0,0,0,0.1);
  7339. overflow: hidden;
  7340. }
  7341. .btn_double button+button{
  7342. margin: 0;
  7343. }
  7344. .btn_doubleItem{
  7345. height: 38px;
  7346. border: 0;
  7347. background-color: #fff;
  7348. color: #000;
  7349. line-height: 38px;
  7350. font-size: 16px;
  7351. font-family: PingFang SC;
  7352. display: block;
  7353. text-align: center;
  7354. width: 100%;
  7355. cursor: pointer;
  7356. transition: ease all 0.5s;
  7357. }
  7358. .btn_doubleItem:hover{
  7359. color: #8C00FF;
  7360. }
  7361. .flex_rightheight2{
  7362. height: calc(100vh - 342px);
  7363. }
  7364. .flex_rightheight3{
  7365. height: calc(100vh - 282px);
  7366. }
  7367. .flex_rightheight1{
  7368. height: calc(100vh - 262px);
  7369. }
  7370. .flex_rightheight0{
  7371. height: calc(100vh - 320px);
  7372. }
  7373. .nomargin .longBtn{
  7374. margin: 8px auto;
  7375. }
  7376. .m-7-18{
  7377. margin-top: 7px;
  7378. margin-bottom: 18px;
  7379. }
  7380. .nostyle{
  7381. margin: 0;
  7382. margin-bottom: 26px;
  7383. text-align: left;
  7384. }
  7385. .largecheck .el-radio__inner::after {
  7386. width: 6px!important;
  7387. height: 12px!important;
  7388. display: block;
  7389. -webkit-box-sizing: content-box;
  7390. box-sizing: content-box;
  7391. content: "";
  7392. border: 2px solid #FFF;
  7393. border-left: 0;
  7394. border-top: 0;
  7395. height: 7px;
  7396. left: 9px;
  7397. position: absolute;
  7398. top: 10px;
  7399. -webkit-transform: rotate(45deg) scaleY(0);
  7400. transform: rotate(69deg);
  7401. width: 3px;
  7402. -webkit-transition: -webkit-transform 0s ease-in 0s;
  7403. transition: -webkit-transform 0s ease-in 0s;
  7404. transition: transform 0s ease-in 0s;
  7405. transition: transform 0s ease-in 0s, -webkit-transform 0s ease-in 0s;
  7406. transition: transform 0s ease-in 0s,-webkit-transform 0s ease-in 0s;
  7407. -webkit-transform-origin: center;
  7408. transform-origin: center;
  7409. background-color:transparent;
  7410. border-radius:0
  7411. }
  7412. .largecheck .el-radio__inner {
  7413. width: 32px!important;
  7414. height: 32px!important;
  7415. border-radius: 16px;
  7416. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
  7417. border: 5px solid #fff;
  7418. background-color: #fff;
  7419. transform: rotate(45deg);
  7420. }
  7421. .largecheck .el-radio__input.is-checked .el-radio__inner {
  7422. border-color: #ffffff!important;
  7423. background: #8c00ff!important;
  7424. }
  7425. .fileItemlistBox li{
  7426. padding: 0 16px;
  7427. height: 44px;
  7428. line-height: 44px;
  7429. transition: ease all 0.5s;
  7430. }
  7431. .fileItemlistBox li .el-radio__label{
  7432. font-size: 15px;
  7433. line-height: 44px;
  7434. }
  7435. .fileItemlistBox li:hover{
  7436. background-color: #f2f2f2;
  7437. }
  7438. .dulihang .el-radio__label::after{
  7439. content: '';
  7440. height: 1px;
  7441. width: 292px;
  7442. display: block;
  7443. background-color: #d8d8d8;
  7444. margin-left: 44px;
  7445. }
  7446. .largeBtn.el-button{
  7447. width: 305px;
  7448. height: 32px;
  7449. border-radius: 8px;
  7450. }
  7451. .mb-15{
  7452. margin-bottom: 16px;
  7453. }
  7454. .footernobianju .el-dialog__footer{
  7455. padding: 10px 0;
  7456. }
  7457. .bianjubtn{
  7458. margin: 0 23px;
  7459. margin-bottom: 6px;
  7460. }
  7461. .eldialogheight .el-dialog{
  7462. height: 310px;
  7463. }
  7464. .DiacenterBox{
  7465. height: 130px;
  7466. }
  7467. .logoarea{
  7468. display: flex;
  7469. justify-content: center;
  7470. align-items: center;
  7471. position: absolute;
  7472. width: calc(100vw);
  7473. height: calc(100vh);
  7474. top: 0px;
  7475. background-color: transparent;
  7476. }
  7477. .logintitlefirst span{
  7478. display: block;
  7479. line-height: 67px;
  7480. }
  7481. .intentinput .el-input__inner{
  7482. text-indent: 16px;
  7483. }
  7484. .loginimgboxa{
  7485. position: relative;
  7486. height: 429px;
  7487. width: 369px;
  7488. clip-path: polygon(
  7489. 0 25%,
  7490. 50% 0,
  7491. 100% 25%,
  7492. 100% 75%,
  7493. 50% 100%,
  7494. 0 75%
  7495. );
  7496. background: #33333d;
  7497. display: flex;
  7498. justify-content: center;
  7499. align-items: center;
  7500. z-index: 1;
  7501. }
  7502. .loginimgbordera{
  7503. position: absolute;
  7504. width: 100%;
  7505. z-index: 3;
  7506. }
  7507. .loginimgboxImga{
  7508. position: absolute;
  7509. background-size: 100%;
  7510. max-width: 100%;
  7511. max-height: 100%;
  7512. z-index: 2;
  7513. }
  7514. .righttabs .el-tabs__item{
  7515. padding: 0;
  7516. height: 40px;
  7517. font-weight: 500;
  7518. color: #000;
  7519. width: 187px;
  7520. text-align: center;
  7521. }
  7522. .righttabs .el-tabs__header{
  7523. margin: 0;
  7524. }
  7525. .righttabs .el-tabs__content{
  7526. overflow: inherit;
  7527. }
  7528. .righttabs .el-tabs__item.is-active{
  7529. color: #ED1B35;
  7530. }
  7531. .eidtTip{
  7532. position: absolute;
  7533. left: 50%;
  7534. top: 33%;
  7535. width: 86px;
  7536. height: 28px;
  7537. color: rgba(0, 0, 0, 1);
  7538. font-size: 12px;
  7539. line-height: 28px;
  7540. border-radius: 21px;
  7541. text-align: center;
  7542. background-color: #E3E3E3;
  7543. display: block;
  7544. margin-left: -43px;
  7545. }
  7546. .tixinpage{
  7547. overflow: hidden;
  7548. }
  7549. .opitcy1{
  7550. opacity: 1;
  7551. }
  7552. .opitcy0{
  7553. opacity: 0.5;
  7554. }
  7555. .settingIcon.minisize{
  7556. font-size: 16px;
  7557. margin-right: 4px;
  7558. }
  7559. .finger{
  7560. cursor: pointer;
  7561. }
  7562. .filelist{
  7563. overflow: hidden;
  7564. padding: 6px 0;
  7565. }
  7566. .filelist:nth-child(2n){
  7567. padding-right: 0px;
  7568. }
  7569. .filelist:nth-child(2n+1){
  7570. padding-right: 10px;
  7571. }
  7572. .filelist>span{
  7573. font-size: 15px;
  7574. }
  7575. .icon-icon_yijianxietong{
  7576. font-size: 18px;
  7577. top: 0;
  7578. left: 0;
  7579. }
  7580. .redtext{
  7581. color: #ED1B35;
  7582. }
  7583. .yiyun_headerfr_item_r>div span.dulibianjuspan{
  7584. margin-left: 10px;
  7585. }
  7586. .linkbtngroup{
  7587. display: inline-block;
  7588. /* overflow: hidden; */
  7589. position: relative;
  7590. }
  7591. .appiframebox{
  7592. width: calc(100vw - 40px);
  7593. height: calc(100vh - 54px);
  7594. overflow-y: auto;
  7595. }
  7596. .fullscreenDia .el-dialog__header{
  7597. padding: 5px 20px 0px;
  7598. }
  7599. .fullscreenDia .el-dialog__body{
  7600. padding: 0px 20px;
  7601. }
  7602. .fullscreenDia .el-dialog{
  7603. border-radius: 0;
  7604. }
  7605. .fullscreenDia .el-dialog__headerbtn {
  7606. top: 0px;
  7607. }
  7608. .bottext{
  7609. color: rgba(74, 74, 74, 1);
  7610. font-size: 14px;
  7611. text-align: left;
  7612. font-family: PingFang SC;
  7613. }
  7614. .textcolor1{
  7615. color: #32323C;
  7616. font-family: PingFang SC;
  7617. }
  7618. .botbtnr{
  7619. position: absolute;
  7620. bottom: 0px;
  7621. right: 10px;
  7622. }
  7623. .introlisttitle{
  7624. padding: 0 16px;
  7625. }
  7626. .topprev{
  7627. top: 10px;
  7628. }
  7629. h5.dulilabel{
  7630. font-size: 15px;
  7631. font-weight: 500;
  7632. margin-top: 12px;
  7633. }
  7634. .el-tree-node__content .el-dropdown{
  7635. opacity: 0;
  7636. }
  7637. .el-tree-node__content:hover>.custom-tree-node .el-dropdown{
  7638. opacity: 1;
  7639. }
  7640. .rightdesc{
  7641. font-family: PingFang SC;
  7642. font-weight: 400;
  7643. font-size: 15px;
  7644. line-height: 30px;
  7645. margin-top: 20px;
  7646. }
  7647. .fixtable{
  7648. /* border: 1px solid #cdd; */
  7649. width: calc(100vw - 122px);
  7650. height: calc(100vh - 150px);
  7651. overflow: scroll;
  7652. position: relative;
  7653. float: left;
  7654. top: 0px;
  7655. left: 0px;
  7656. font-size: 12px;
  7657. }
  7658. .bg1 {
  7659. position: fixed;
  7660. z-index: 10001;
  7661. width: 100px;
  7662. left: auto;
  7663. top: auto;
  7664. }
  7665. .bg2 {
  7666. position: sticky;
  7667. top: 0px;
  7668. margin-left: 192px;
  7669. /* width: 500px; */
  7670. z-index: 1000;
  7671. }
  7672. .bg3 {
  7673. left: 0px;
  7674. float: left;
  7675. position: sticky;
  7676. z-index: 1000;
  7677. width: 100px;
  7678. }
  7679. .bg4 {
  7680. left: 192px;
  7681. /* width: 500px; */
  7682. position: absolute;
  7683. }
  7684. .bg1,.bg2,.bg3,.bg4{
  7685. border-collapse:collapse;
  7686. border:none;
  7687. }
  7688. .bg1 td,.bg2 td,.bg3 td,.bg4 td{
  7689. border:solid #cdcdcd 1px;
  7690. }
  7691. .row-w-60{
  7692. width: 60px;
  7693. text-align: center;
  7694. }
  7695. .col-h-30{
  7696. height: 30px;
  7697. line-height: 30px;
  7698. }
  7699. .col-h-60{
  7700. height: 60px;
  7701. line-height: 60px;
  7702. overflow: hidden;
  7703. }
  7704. .col-h-58{
  7705. height: 60px;
  7706. line-height: 60px;
  7707. text-align: center;
  7708. }
  7709. .row-w-130{
  7710. width: 130px;
  7711. overflow: hidden;
  7712. text-align: center;
  7713. }
  7714. .tdheight{
  7715. height: 58px;
  7716. overflow: hidden;
  7717. }
  7718. .bg_write{
  7719. background-color: #fff;
  7720. }
  7721. .bg_gray_th{
  7722. background-color: #e3e3e3;
  7723. }
  7724. .bg_gray_td{
  7725. background-color: #ebebeb;
  7726. }
  7727. .bg_druk{
  7728. background-color: #adadad;
  7729. }
  7730. .listTemplateList li:hover,.slected{
  7731. background-color: rgba(204, 205, 215, 1);
  7732. }
  7733. .listTemplateList li{
  7734. height: 48px;
  7735. border-radius: 8px;
  7736. margin: 8px 10px;
  7737. padding: 0 16px;
  7738. overflow: hidden;
  7739. line-height: 48px;
  7740. transition: ease all 0.5s;
  7741. cursor: pointer;
  7742. }
  7743. .listTemplateTextBig{
  7744. color: rgba(50, 50, 60, 1);
  7745. font-size: 18px;
  7746. width: 95px;
  7747. display: inline-block;
  7748. font-weight: 600;
  7749. }
  7750. .listTemplateText{
  7751. color: rgba(0, 0, 0, 1);
  7752. font-size: 15px;
  7753. text-align: left;
  7754. }
  7755. .diaTitle{
  7756. font-size: 17px;
  7757. }
  7758. .yuandian{
  7759. position: relative;
  7760. height: 0;
  7761. left: 0;
  7762. top: 0;
  7763. width: 158px;
  7764. text-align: left;
  7765. /* display: flex;
  7766. align-items: baseline;
  7767. justify-content: center; */
  7768. }
  7769. .upList{
  7770. top: 0;
  7771. }
  7772. .upList,.bottomlist{
  7773. position: absolute;
  7774. left: 8px;
  7775. }
  7776. .bottomlist{
  7777. position: absolute;
  7778. top: 22px;
  7779. }
  7780. .enterPoint,.outPoint{
  7781. position: absolute;
  7782. left: 7px;
  7783. }
  7784. .enterPoint{
  7785. bottom: 40px;
  7786. }
  7787. .outPoint{
  7788. top: 50px;
  7789. }
  7790. .enterPoint button,.outPoint button{
  7791. display: block;
  7792. margin-bottom: 16px;
  7793. }
  7794. .enterPoint .leftlinebox+.leftlinebox,.outPoint .leftlinebox+.leftlinebox{
  7795. margin: 0px;
  7796. margin-bottom: 10px;
  7797. }
  7798. .linkBtn1,.linkBtn2{
  7799. border: 1.5px dashed transparent;
  7800. height: 32px;
  7801. border-radius: 4px;
  7802. color: rgba(142, 144, 159, 1);
  7803. font-size: 13px;
  7804. font-family: PingFangSC-Regular;
  7805. transition: ease all 0.5s;
  7806. cursor: pointer;
  7807. padding: 0 10px;
  7808. }
  7809. .linkBtn1:hover,.linkBtn2:hover{
  7810. border-color:#4A90E2 ;
  7811. color: #4A90E2;
  7812. }
  7813. .linkBtn1{
  7814. background-color: rgba(255, 255, 255, 1);
  7815. }
  7816. .linkBtn2{
  7817. background-color: rgba(227, 227, 227, 1);
  7818. min-width: 72px;
  7819. max-width: 120px;
  7820. }
  7821. .enterLine{
  7822. width: 1px;
  7823. height: 20px;
  7824. background-color: rgba(204, 205, 215, 1);
  7825. position: absolute;
  7826. left: 0;
  7827. bottom: 0px;
  7828. }
  7829. .outLine{
  7830. position: relative;
  7831. width: 1px;
  7832. height: 20px;
  7833. background-color: rgba(204, 205, 215, 1);
  7834. top: 17px;
  7835. left: -7px;
  7836. }
  7837. .bottomenter{
  7838. position: absolute;
  7839. bottom: -6px;
  7840. left: -10px;
  7841. color: #CCCDD7;
  7842. font-size: 20px;
  7843. }
  7844. .leftlinebox{
  7845. position: relative;
  7846. display: block;
  7847. line-height: 30px;
  7848. margin-bottom: 11px;
  7849. }
  7850. .leftline{
  7851. position: absolute;
  7852. display: block;
  7853. width: 8px;
  7854. height: 1px;
  7855. position: absolute;
  7856. left: -8px;
  7857. top: 50%;
  7858. background-color: rgba(204, 205, 215, 1);
  7859. }
  7860. .leftline::after{
  7861. content: '';
  7862. height: 48px;
  7863. width: 1px;
  7864. position: absolute;
  7865. left: -1px;
  7866. top: 50%;
  7867. background-color: rgba(204, 205, 215, 1);
  7868. }
  7869. .worllistt2{
  7870. display: -webkit-box;
  7871. -webkit-box-orient: vertical;
  7872. -webkit-line-clamp: 1;
  7873. overflow: hidden;
  7874. }
  7875. .leftlin2{
  7876. height: 40px;
  7877. width: 1px;
  7878. position: relative;
  7879. background-color: rgba(204, 205, 215, 1);
  7880. left: 0;
  7881. top: 30px;
  7882. }
  7883. .conterpoint{
  7884. position: relative;
  7885. width: 157px;
  7886. }
  7887. .worningalert{
  7888. position: relative;
  7889. width: 355px;
  7890. height: 22px;
  7891. border-radius: 4px;
  7892. background-color: rgba(214, 36, 58, 1);
  7893. top: -14px;
  7894. text-indent: 16px;
  7895. color: #fff;
  7896. }
  7897. .EC_searchBox .el-input-group__prepend {
  7898. background-color: #ffffff;
  7899. vertical-align: middle;
  7900. display: table-cell;
  7901. position: relative;
  7902. border: 0px solid #ffffff;
  7903. white-space: nowrap;
  7904. position: absolute;
  7905. left: 7px;
  7906. padding: 0;
  7907. width: 0;
  7908. }
  7909. #bigbody{
  7910. height: calc(100vh - 47px);
  7911. overflow-y: auto;
  7912. }
  7913. .scorllbaron{
  7914. background-color: #fff;
  7915. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  7916. }
  7917. .tinylabel{
  7918. font-size: 12px;
  7919. display: block;
  7920. line-height: 20px;
  7921. color: #888;
  7922. }
  7923. .newapplay li{
  7924. height: 59px;
  7925. border-bottom: 1px solid #cccdd7;
  7926. margin: 0 16px;
  7927. padding: 0;
  7928. }
  7929. .searchPagebox{
  7930. width: calc(100vw - 60px);
  7931. height: calc(100vh - 75px);
  7932. }
  7933. .searchPagebox2{
  7934. width: calc(100vw - 120px);
  7935. margin: 0 auto;
  7936. }
  7937. .bj_label{
  7938. font-size: 14px;
  7939. color: #8e909f;
  7940. }
  7941. /* 适配 */
  7942. @media(max-width:1600px) {
  7943. .yiyun-col-md-4{
  7944. width: 33.3%
  7945. }
  7946. }
  7947. @media(max-width:1337px) {
  7948. .yiyun-col-md-4{
  7949. width: 33.3%
  7950. }
  7951. .yiyun_headerce>span {
  7952. padding: 13px 15px;
  7953. }
  7954. .LoginTitleWel{
  7955. top: 60px;
  7956. }
  7957. .loginbox{
  7958. bottom: 60px;
  7959. }
  7960. }
  7961. @media(max-width:1025px) {
  7962. .yiyun-col-sm-6{
  7963. width: 50%
  7964. }
  7965. .bottomdialog {
  7966. width: calc(100vw - 20px);
  7967. left: calc(-50vw + 10px);
  7968. }
  7969. .yiyun_dialog_left {
  7970. margin-left: 20px;
  7971. }
  7972. .yiyun_dialog_right{
  7973. right: 20px;
  7974. }
  7975. .yiyun_headerce>span {
  7976. padding: 13px 9px;
  7977. }
  7978. .LoginTitleWel {
  7979. top: 30px;
  7980. font-size: 39px;
  7981. }
  7982. .logintitlefirst span {
  7983. line-height: 45px;
  7984. }
  7985. .loginlabel {
  7986. font-size: 22px;
  7987. }
  7988. .loginbox {
  7989. bottom: 30px;
  7990. }
  7991. }
  7992. @media(max-width:768px) {
  7993. .yiyun-col-ty-12{
  7994. width: 100%
  7995. }
  7996. .yiyun_headerce>span {
  7997. padding: 13px 8px;
  7998. font-size: 16px;
  7999. }
  8000. }
  8001. .drop_areabox{
  8002. position: fixed;
  8003. z-index: 999;
  8004. width: 480px;
  8005. height: 300px;
  8006. background-color: #ccc;
  8007. top: 50%;
  8008. left: 50%;
  8009. margin-left: -240px;
  8010. margin-top: -150px;
  8011. border: 1px dashed #8c00ff;
  8012. background-color: #ebebf2;
  8013. color: #8c00ff;
  8014. display: flex;
  8015. flex-direction: column;
  8016. justify-content: center;
  8017. align-items: center;
  8018. border-radius: 10px;
  8019. }
  8020. .yywenjiantitle{
  8021. display: inline-block;
  8022. width: 92px;
  8023. height: 31px;
  8024. color: #a7a8b7;
  8025. font-size: 18px;
  8026. line-height:31px;
  8027. margin-right: 16px;
  8028. border-radius: 4px;
  8029. background-color: transparent;
  8030. text-align: center;
  8031. cursor: pointer;
  8032. }
  8033. .yywenjiantitle.yyactive,.yywenjiantitle:hover{
  8034. color: #32323c;
  8035. background:#CCCDD7;
  8036. }
  8037. .fuzeren{
  8038. overflow: hidden;
  8039. padding-bottom: 11px;
  8040. border-bottom: 1px solid #8e909f;
  8041. }
  8042. .el-icon-warning::before{
  8043. content: "";
  8044. display: inline-block;
  8045. width: 28px;
  8046. height: 28px;
  8047. background-color: #ccc;
  8048. background: url(/static/img/icon_pic_01.png) no-repeat -180px 0px;
  8049. }
  8050. .selfupdate .webuploader-pick{
  8051. width: 120px
  8052. }
  8053. .right-algin{
  8054. text-align: right
  8055. }
  8056. .downloadIcon{
  8057. position: absolute;
  8058. width: 48px;
  8059. height: 48px;
  8060. left: 50%;
  8061. top:33%;
  8062. margin-left: -24px;
  8063. margin-top: -24px;
  8064. }
  8065. .uploadText{
  8066. position: relative;
  8067. top: 40px;
  8068. left: 30px;
  8069. font-size: 13px
  8070. }
  8071. .minifont{
  8072. font-size: 11px;
  8073. color: #71717d;
  8074. margin-top: 2px
  8075. }
  8076. .largeicon{
  8077. color: #000;
  8078. font-size: 22px
  8079. }
  8080. .titlebar_head{
  8081. display: flex;
  8082. justify-content: space-between;
  8083. }
  8084. .toumin{
  8085. opacity: 0.5;
  8086. }