项目原始demo,不改动
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Dieses Repo ist archiviert. Du kannst Dateien sehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.

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