style.scss 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030
  1. .container {
  2. height: 100%;
  3. width: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. .header {
  7. background: #064F9E;
  8. height: calc(1vh * (90 / 10.8));
  9. min-height: 90px;
  10. display: flex;
  11. align-items: center;
  12. flex-shrink: 0;
  13. position: relative;
  14. padding: 0 1.88rem;
  15. z-index: 100;
  16. .logo {
  17. color: #FFFFFF;
  18. font-size: 1.13rem;
  19. font-weight: 700;
  20. line-height: 1.50rem;
  21. flex-shrink: 0;
  22. margin-right: auto;
  23. }
  24. .gnb {
  25. z-index: 10;
  26. &:hover {
  27. .gnb-bg {
  28. height: 22.38rem;
  29. }
  30. .depth1 {
  31. >li {
  32. .depth2 {
  33. height: 22.38rem;
  34. }
  35. }
  36. }
  37. }
  38. .depth1 {
  39. display: flex;
  40. >li {
  41. position: relative;
  42. &.active {
  43. >button {
  44. background: #83A7CF;
  45. font-weight: 700;
  46. }
  47. }
  48. >button {
  49. width: calc(1vw * (180 / 19.2));
  50. height: calc(1vh * (90 / 10.8));
  51. min-height: 90px;
  52. color: #fff;
  53. font-size: 1rem;
  54. font-weight: 400;
  55. }
  56. .depth2 {
  57. position: absolute;
  58. overflow: hidden;
  59. height: 0;
  60. z-index: 10;
  61. width: 100%;
  62. transition: 0.5s 0s;
  63. ul {
  64. padding-top: 1.88rem;
  65. li {
  66. color: #333;
  67. font-size: 0.88rem;
  68. font-weight: 400;
  69. display: block;
  70. margin-bottom: 1.88rem;
  71. cursor: pointer;
  72. text-align: center;
  73. &.active {
  74. color: #064F9E;
  75. font-weight: 700;
  76. }
  77. }
  78. }
  79. }
  80. }
  81. }
  82. .gnb-bg {
  83. position: fixed;
  84. top: calc(1vh * (90 / 10.8));
  85. left: 0;
  86. right: 0;
  87. width: 100vw;
  88. background: #fff;
  89. z-index: 8;
  90. height: 0;
  91. transition: 0.5s 0s;
  92. box-shadow: 0 0.25rem 0.63rem 0 rgba(0, 0, 0, 0.25);
  93. }
  94. }
  95. .util {
  96. display: flex;
  97. align-items: center;
  98. gap: 1.56rem;
  99. margin-left: auto;
  100. flex-shrink: 0;
  101. .ico {
  102. font-size: 0;
  103. }
  104. .btn-alarm {
  105. width: 2rem;
  106. height: 2rem;
  107. position: relative;
  108. &.type1 {
  109. .ico {
  110. background-image: url("../img/ico_alarm1.svg");
  111. }
  112. }
  113. &.type2 {
  114. .ico {
  115. background-image: url("../img/ico_alarm2.svg");
  116. }
  117. }
  118. .ico {
  119. position: relative;
  120. width: 2rem;
  121. height: 2rem;
  122. background: no-repeat center / 100%;
  123. .dot {
  124. position: absolute;
  125. background: #E42325;
  126. width: 0.44rem;
  127. height: 0.44rem;
  128. border-radius: 100%;
  129. right: 0;
  130. top: 0;
  131. }
  132. }
  133. .alarm-detail {
  134. position: absolute;
  135. width: 8.75rem;
  136. height: 4.44rem;
  137. top: 3.00rem;
  138. left: 50%;
  139. display: flex;
  140. align-items: center;
  141. justify-content: space-between;
  142. transform: translateX(-50%);
  143. padding: 1.31rem 1.25rem 1rem 1.25rem;
  144. background: url("../img/bg_tooltip.svg") no-repeat center / 100%;
  145. strong {
  146. color: #222222;
  147. font-size: 0.81rem;
  148. font-weight: 600;
  149. }
  150. .v-switch {
  151. width: 2.25rem;
  152. flex: 0 0 auto;
  153. .v-switch__track {
  154. background: #ECECEC;
  155. height: 0.75rem;
  156. width: 2.25rem;
  157. opacity: 1;
  158. }
  159. .v-switch__thumb {
  160. box-shadow: none;
  161. background: #92989E;
  162. width: 1.13rem;
  163. height: 1.13rem;
  164. }
  165. .v-selection-control {
  166. &.v-selection-control--dirty {
  167. .v-switch__track {
  168. background: #D7E4F1;
  169. }
  170. .v-switch__thumb {
  171. background: #064f9e;
  172. }
  173. }
  174. }
  175. .v-selection-control__input {
  176. &::before {
  177. display: none;
  178. }
  179. }
  180. .v-ripple__container {
  181. display: none;
  182. }
  183. }
  184. }
  185. }
  186. .btn-mode {
  187. position: relative;
  188. &.type1 {
  189. .ico {
  190. background-image: url("../img/ico_mode_white.svg");
  191. }
  192. }
  193. &.type2 {
  194. .ico {
  195. background-image: url("../img/ico_mode_dark.svg");
  196. }
  197. }
  198. .ico {
  199. width: 2rem;
  200. height: 2rem;
  201. background: no-repeat center / 100%;
  202. }
  203. .mode-detail {
  204. position: absolute;
  205. top: 3rem;
  206. left: 50%;
  207. transform: translateX(-50%);
  208. width: 12.63rem;
  209. height: 9.75rem;
  210. padding: 2.06rem 1.25rem 1.25rem 1.56rem;
  211. background: url("../img/bg_tooltip2.svg") no-repeat center / 100%;
  212. .custom-radio {
  213. .v-input__control {
  214. .v-selection-control-group {
  215. gap: 0.94rem;
  216. .v-radio {
  217. position: relative;
  218. height: 2.50rem;
  219. margin: 0;
  220. padding-left: 5.63rem;
  221. flex: auto;
  222. .v-selection-control__wrapper {
  223. .v-selection-control__input {
  224. width: 1.06rem;
  225. height: 1.06rem;
  226. .v-icon {
  227. border-color: #c0c0c0;
  228. &.mdi-radiobox-marked {
  229. border-color: #007AFF;
  230. background-color: #007AFF;
  231. box-shadow: inset 0 0 0 0.13rem #fff
  232. }
  233. }
  234. }
  235. }
  236. .v-label {
  237. margin-left: 0.75rem;
  238. .img {
  239. position: absolute;
  240. left: 0;
  241. top: 0;
  242. width: 4.38rem;
  243. height: 2.5rem;
  244. background: no-repeat center / 100%;
  245. &.img1 {
  246. background-image: url("../img/img_mode_white.svg");
  247. }
  248. &.img2 {
  249. background-image: url("../img/img_mode_dark.svg");
  250. }
  251. }
  252. strong {
  253. color: #333333;
  254. font-size: 0.75rem;
  255. font-weight: 400;
  256. }
  257. }
  258. }
  259. }
  260. }
  261. }
  262. }
  263. }
  264. .btn-lang {
  265. position: relative;
  266. .ico {
  267. width: 2rem;
  268. height: 2rem;
  269. border: 0.06rem solid #fff;
  270. background-color: #064F9E;
  271. border-radius: 100%;
  272. color: #fff;
  273. display: flex;
  274. align-items: center;
  275. justify-content: center;
  276. font-weight: 700;
  277. font-size: 0.81rem;
  278. }
  279. .lang-detail {
  280. position: absolute;
  281. top: 3rem;
  282. left: 50%;
  283. width: 9.75rem;
  284. height: 7.31rem;
  285. transform: translateX(-50%);
  286. background: url("../img/bg_tooltip3.svg") no-repeat center / 100%;
  287. padding: 1.63rem 1.25rem 1.25rem 1.56rem;
  288. .custom-radio {
  289. .v-input__control {
  290. .v-selection-control-group {
  291. gap: 0.94rem;
  292. .v-radio {
  293. height: 1.63rem;
  294. margin: 0;
  295. .v-selection-control__wrapper {
  296. .v-selection-control__input {
  297. width: 1.06rem;
  298. height: 1.06rem;
  299. .v-icon {
  300. border-color: #c0c0c0;
  301. &.mdi-radiobox-marked {
  302. border-color: #007AFF;
  303. background-color: #007AFF;
  304. box-shadow: inset 0 0 0 0.13rem #fff
  305. }
  306. }
  307. }
  308. }
  309. .v-label {
  310. margin-left: 0.75rem;
  311. .img {
  312. width: 1.63rem;
  313. height: 1.63rem;
  314. display: inline-block;
  315. background: no-repeat center / 100%;
  316. &.img1 {
  317. background-image: url("../img/ico_lang_korea.svg");
  318. }
  319. &.img2 {
  320. background-image: url("../img/ico_lang_english.svg");
  321. }
  322. }
  323. strong {
  324. color: #333333;
  325. font-size: 0.75rem;
  326. font-weight: 400;
  327. margin-left: 0.63rem;
  328. }
  329. }
  330. }
  331. }
  332. }
  333. }
  334. }
  335. }
  336. .divider {
  337. width: 0.06rem;
  338. height: 1.88rem;
  339. margin: 0 0.63rem;
  340. background: rgba(255, 255, 255, 0.5);
  341. }
  342. .user-info {
  343. display: flex;
  344. position: relative;
  345. .ico {
  346. width: 2rem;
  347. height: 2rem;
  348. background: #fff;
  349. border-radius: 100%;
  350. color: #064F9E;
  351. display: flex;
  352. align-items: center;
  353. justify-content: center;
  354. font-weight: 700;
  355. font-size: 0.81rem;
  356. cursor: pointer;
  357. }
  358. .info-detail {
  359. position: absolute;
  360. top: 3rem;
  361. left: 50%;
  362. width: 11.88rem;
  363. height: 12.25rem;
  364. padding: 2rem 1.56rem 1.25rem 1.56rem;
  365. background: url("../img/bg_tooltip4.svg") no-repeat center / 100%;
  366. transform: translateX(-50%);
  367. p {
  368. color: #111;
  369. font-size: 0.94rem;
  370. font-weight: 700;
  371. margin-bottom: 0.94rem;
  372. span {
  373. font-weight: 600;
  374. }
  375. }
  376. ul {
  377. padding-bottom: 1.25rem;
  378. margin-bottom: 0.94rem;
  379. border-bottom: 0.06rem solid #e1e1e1;
  380. display: flex;
  381. flex-direction: column;
  382. gap: 0.25rem;
  383. li {
  384. color: #444444;
  385. font-size: 0.81rem;
  386. font-weight: 400;
  387. }
  388. }
  389. .custom-btn.v-btn.v-btn--density-default {
  390. border: 0.06rem solid rgba(6, 79, 158, 0.5);
  391. border-radius: 0.31rem;
  392. width: 100%;
  393. height: 2.5rem;
  394. min-height: 2.5rem;
  395. .v-btn__content {
  396. color: #064F9E;
  397. font-size: 0.75rem;
  398. font-weight: 600;
  399. letter-spacing: -0.01rem;
  400. }
  401. }
  402. }
  403. }
  404. .user-name {
  405. color: #fff;
  406. font-size: 0.81rem;
  407. font-weight: 700;
  408. cursor: pointer;
  409. display: flex;
  410. align-items: center;
  411. }
  412. .btn-logout {
  413. width: 2rem;
  414. background: url("../img/ico_logout.svg") no-repeat center / 100%;
  415. }
  416. .btn-profile{
  417. min-width:2rem;
  418. min-height:2rem;
  419. display: inline-flex;
  420. align-items: center;
  421. width: 2rem;
  422. height: 2rem;
  423. color:#fff;
  424. }
  425. }
  426. }
  427. .content {
  428. position: relative;
  429. overflow-y: auto;
  430. background: #fff;
  431. }
  432. .footer {
  433. height: calc(1vh * (58 / 10.8));
  434. min-height: 58px;
  435. flex-shrink: 0;
  436. background: #EBEBEB;
  437. display: flex;
  438. align-items: center;
  439. padding: 0 1.88rem;
  440. gap: 1.25rem;
  441. .foot-connection {
  442. display: flex;
  443. align-items: center;
  444. strong {
  445. color: #111111;
  446. font-size: 0.69rem;
  447. font-weight: 600;
  448. margin-right: 0.63rem;
  449. }
  450. span {
  451. background: #064F9E;
  452. border-radius: 6.25rem;
  453. min-width: 2.25rem;
  454. height: 1.56rem;
  455. padding: 0 0.63rem;
  456. display: flex;
  457. align-items: center;
  458. justify-content: center;
  459. color: #fff;
  460. font-size: 0.69rem;
  461. font-weight: 600;
  462. }
  463. }
  464. .foot-numbering {
  465. display: flex;
  466. gap: 0.63rem;
  467. padding: 0 1.25rem;
  468. position: relative;
  469. &:before,
  470. &:after {
  471. position: absolute;
  472. content: "";
  473. width: 0.06rem;
  474. height: 1.25rem;
  475. background: #c8c8c8;
  476. top: 50%;
  477. margin-top: -0.63rem;
  478. }
  479. &:before {
  480. left: 0;
  481. }
  482. &:after {
  483. right: 0;
  484. }
  485. span {
  486. height: 1.56rem;
  487. min-width: 3.13rem;
  488. display: flex;
  489. align-items: center;
  490. justify-content: center;
  491. color: #fff;
  492. font-size: 0.63rem;
  493. font-weight: 600;
  494. &.num1 {
  495. background: #FF2426;
  496. }
  497. &.num2 {
  498. background: #FF7236;
  499. }
  500. &.num3 {
  501. background: #FFB800;
  502. }
  503. }
  504. }
  505. .foot-state {
  506. color: #ff2426;
  507. font-size: 0.63rem;
  508. font-weight: 600;
  509. border: 0.06rem solid rgba(255, 36, 38, 0.5);
  510. display: flex;
  511. align-items: center;
  512. justify-content: center;
  513. min-width: 4.13rem;
  514. height: 1.56rem;
  515. }
  516. .foot-txt {
  517. padding-left: 0.63rem;
  518. color: #333;
  519. opacity: 0.8;
  520. font-size: 0.69rem;
  521. font-weight: 400;
  522. }
  523. .foot-btn-wrap {
  524. margin-left: auto;
  525. display: flex;
  526. gap: 0.63rem;
  527. align-items: center;
  528. button {
  529. background: #111111;
  530. min-width: 6.81rem;
  531. padding: 0 0.94rem;
  532. height: 1.56rem;
  533. display: flex;
  534. align-items: center;
  535. justify-content: center;
  536. color: #fff;
  537. font-size: 0.69rem;
  538. font-weight: 600;
  539. .ico {
  540. width: 0.81rem;
  541. height: 0.81rem;
  542. margin-right: 0.5rem;
  543. background: no-repeat center / 100%;
  544. &.ico1 {
  545. background-image: url("../img/ico_event_view.svg");
  546. }
  547. &.ico2 {
  548. background-image: url("../img/ico_event_pop.svg");
  549. }
  550. }
  551. }
  552. }
  553. .foot-logo {
  554. width: 11.69rem;
  555. height: 1.44rem;
  556. margin-left: 0.31rem;
  557. font-size: 0;
  558. background: url("../img/logo_foot2.svg") no-repeat center / 100%;
  559. }
  560. }
  561. }
  562. @media (max-height: 1079px) {
  563. .container {
  564. .header {
  565. .gnb {
  566. .gnb-bg {
  567. top: 90px;
  568. }
  569. }
  570. }
  571. .content {
  572. height: calc(100vh - 148px);
  573. }
  574. }
  575. }
  576. .v-application__wrap {
  577. min-width: 1920px;
  578. }
  579. /* --- common type --- */
  580. .txt-field-box {
  581. position: relative;
  582. width: 100%;
  583. &.error {
  584. .custom-input.v-text-field {
  585. .v-input__control {
  586. .v-field__field {
  587. .v-field__input {
  588. padding-right: 2.56rem !important;
  589. border-color: #FF8C8C !important;
  590. }
  591. }
  592. }
  593. }
  594. .ico {
  595. display: block;
  596. background: url("../img/ico_error.svg") no-repeat center / 100%;
  597. }
  598. }
  599. .ico {
  600. display: none;
  601. position: absolute;
  602. width: 1.13rem;
  603. height: 1.13rem;
  604. right: 0.94rem;
  605. top: 50%;
  606. margin-top: -0.565rem;
  607. }
  608. }
  609. .custom-input.v-text-field {
  610. flex: 0 0 auto;
  611. width: 100%;
  612. min-height: 3.63rem;
  613. padding: 0;
  614. margin: 0;
  615. flex-direction: column;
  616. &.v-input--readonly {
  617. .v-input__control {
  618. .v-field__field {
  619. .v-field__input {
  620. background: #F0F0F0;
  621. color: #747474!important;
  622. cursor: not-allowed;
  623. }
  624. }
  625. }
  626. }
  627. &.success-input {
  628. flex-direction: column;
  629. .v-input__append-outer {
  630. width: 100%;
  631. margin: 0;
  632. .input-success {
  633. padding: 0 1rem;
  634. margin: 0.25rem 0 0;
  635. letter-spacing: -0.02rem;
  636. line-height: 1rem;
  637. white-space: nowrap;
  638. font-size: 0.75rem;
  639. font-weight: 600;
  640. }
  641. }
  642. }
  643. &.v-input--is-disabled {
  644. background: #f6f6f6 !important;
  645. .v-input__prepend-outer {
  646. .v-input__icon {
  647. opacity: 0.5;
  648. }
  649. }
  650. .v-input__control {
  651. .v-input__slot {
  652. .v-text-field__slot {
  653. input {
  654. color: #999;
  655. }
  656. }
  657. }
  658. }
  659. }
  660. &.v-input--is-focused {
  661. .v-input__control {
  662. .v-input__slot {
  663. border-color: #584DE4 !important;
  664. }
  665. }
  666. }
  667. &.v-input--error {
  668. .v-input__details {
  669. display: block;
  670. width: 100%;
  671. .v-messages {
  672. color: #FF4C6D;
  673. text-align: left;
  674. }
  675. }
  676. }
  677. &.mini {
  678. min-height: 2.25rem;
  679. .v-input__control {
  680. height: 2.25rem;
  681. .v-field__field {
  682. .v-field__input {
  683. padding: 0 0.94rem;
  684. height: 2.25rem;
  685. min-height: 2.25rem;
  686. font-size: 0.75rem;
  687. color: #444;
  688. border: 0.06rem solid #e0e0e0;
  689. }
  690. }
  691. }
  692. }
  693. &.mini2 {
  694. min-height: 2.5rem;
  695. .v-input__control {
  696. height: 2.5rem;
  697. .v-field__field {
  698. .v-field__input {
  699. padding: 0 0.94rem;
  700. height: 2.5rem;
  701. min-height: 2.5rem;
  702. font-size: 0.81rem;
  703. color: #444;
  704. border: 0.06rem solid #e0e0e0;
  705. }
  706. }
  707. }
  708. }
  709. &.cursor {
  710. cursor: pointer;
  711. .v-input__control {
  712. .v-field__field {
  713. .v-field__input:read-only {
  714. cursor: pointer;
  715. }
  716. }
  717. }
  718. }
  719. .v-input__prepend-outer {
  720. margin: 0 0 0 0.75rem;
  721. .v-icon {
  722. display: inline-block;
  723. width: 1.25rem;
  724. height: 1.25rem;
  725. font-size: 0;
  726. background: url("../assets/img/ico_calendar.svg") no-repeat center;
  727. &:before {
  728. display: none;
  729. content: "";
  730. }
  731. }
  732. }
  733. .v-input__control {
  734. width: 100%;
  735. height: 3.63rem;
  736. .v-field__overlay {
  737. display: none;
  738. }
  739. .v-field__loader {
  740. display: none;
  741. }
  742. .v-field {
  743. opacity: 1;
  744. }
  745. .v-field__field {
  746. .v-field__input {
  747. height: 3.63rem;
  748. min-height: 3.63rem;
  749. padding: 0 1.25rem;
  750. border: 0.06rem solid #E9E9E9;
  751. background: #fff;
  752. border-radius: 0;
  753. color: #000;
  754. font-size: 0.88rem;
  755. font-weight: 400;
  756. letter-spacing: -0.02rem;
  757. &::placeholder {
  758. color: #AAAAAA;
  759. opacity: 1;
  760. }
  761. }
  762. }
  763. .v-field__outline {
  764. &:before,
  765. &:after {
  766. display: none;
  767. }
  768. }
  769. .v-input__slot {
  770. height: 2.50rem;
  771. margin: 0;
  772. border: 0.06 solid #E9E9E9;
  773. border-radius: 0;
  774. &:before,
  775. &:after {
  776. display: none;
  777. }
  778. .v-text-field__slot {
  779. height: 3.63rem;
  780. input {
  781. display: block;
  782. max-height: 3.63rem;
  783. padding: 0 0.75rem;
  784. letter-spacing: -0.02rem;
  785. color: #000;
  786. font-weight: 600;
  787. font-size: 0.88rem;
  788. &::placeholder {
  789. font-weight: 400;
  790. color: #999990;
  791. }
  792. }
  793. }
  794. }
  795. .v-text-field__details {
  796. overflow: inherit !important;
  797. display: none;
  798. transition: none !important;
  799. .v-messages__message {
  800. padding: 0 0.81rem;
  801. margin-top: 0.25rem;
  802. letter-spacing: -0.02rem;
  803. line-height: 1rem;
  804. white-space: nowrap;
  805. font-size: 0.75rem;
  806. font-weight: 600;
  807. color: #E50A0A;
  808. transition: none !important;
  809. overflow: visible!important;
  810. }
  811. }
  812. }
  813. .v-input__details {
  814. display: none;
  815. }
  816. }
  817. p.error-txt {
  818. color: #E50A0A !important;
  819. font-size: 0.88rem !important;
  820. line-height: 0.88rem !important;
  821. font-weight: 400 !important;
  822. margin: 0.75rem 0 0;
  823. text-align: left !important;
  824. }
  825. p.success-txt {
  826. color: #007AFF !important;
  827. font-size: 0.88rem !important;
  828. line-height: 0.88rem !important;
  829. font-weight: 400 !important;
  830. margin: 0.75rem 0 0;
  831. text-align: left !important;
  832. }
  833. .input-field-box:has(.v-field--focused) .ico-cancel {
  834. display: block;
  835. }
  836. .custom-check.v-input {
  837. padding: 0;
  838. margin: 0;
  839. cursor: pointer;
  840. &.v-input--is-disabled {
  841. opacity: 0.5;
  842. }
  843. &.type2 {
  844. .v-input__control {
  845. .v-selection-control {
  846. .v-selection-control__wrapper {
  847. width: 1rem;
  848. height: 1rem;
  849. .v-selection-control__input {
  850. width: 1rem;
  851. height: 1rem;
  852. .v-icon {
  853. min-width: 1rem;
  854. width: 1rem;
  855. height: 1rem;
  856. //border-radius: 0;
  857. border: 0;
  858. background: url("../img/ico_chk_off.svg") no-repeat center;
  859. &.mdi-checkbox-marked {
  860. background-image: url("../img/ico_chk_on.svg");
  861. }
  862. }
  863. }
  864. }
  865. .v-label {
  866. height: auto;
  867. padding-left: 0.94rem;
  868. margin: 0;
  869. font-size: 0.81rem;
  870. font-weight: 400;
  871. color: #333;
  872. opacity: 1;
  873. span {
  874. padding-left: 0.19rem;
  875. font-weight: 700;
  876. color: #007AFF;
  877. }
  878. }
  879. }
  880. }
  881. }
  882. .v-input__control {
  883. .v-selection-control {
  884. min-height: auto;
  885. .v-selection-control__wrapper {
  886. width: 1rem;
  887. height: 1rem;
  888. .v-selection-control__input {
  889. width: 1rem;
  890. height: 1rem;
  891. &:before {
  892. display: none;
  893. }
  894. .v-icon {
  895. min-width: 1rem;
  896. width: 1rem;
  897. height: 1rem;
  898. //border-radius: 0.25rem;
  899. //border: 0.06rem solid #9B9B9B;
  900. &:before {
  901. display: none;
  902. }
  903. &.mdi-checkbox-marked {
  904. background: url("../img/ico_chk.svg") no-repeat center / 100%;
  905. }
  906. }
  907. .v-ripple__container {
  908. display: none !important;
  909. background: transparent !important;
  910. }
  911. }
  912. }
  913. .v-label {
  914. height: auto;
  915. margin-left: 0.63rem;
  916. font-size: 0.81rem;
  917. font-weight: 400;
  918. color: #000;
  919. opacity: 1;
  920. }
  921. }
  922. }
  923. }
  924. .custom-radio.v-input {
  925. padding: 0;
  926. margin: 0;
  927. &.v-input--radio-group--column {
  928. .v-input--radio-group__input {
  929. .v-radio {
  930. margin-bottom: 0;
  931. }
  932. }
  933. }
  934. &.picker-terms {
  935. height: 2.25rem;
  936. .v-input__control {
  937. .v-selection-control-group {
  938. gap: calc(1vw * (5 / 19.2));
  939. flex-wrap: nowrap;
  940. .v-radio {
  941. position: relative;
  942. margin: 0;
  943. &.radio_n {
  944. .v-label {
  945. width: calc(1vw * (87 / 19.2));
  946. }
  947. }
  948. &.radio_h {
  949. .v-label {
  950. width: calc(1vw * (70 / 19.2));
  951. }
  952. }
  953. &.radio_d {
  954. .v-label {
  955. width: calc(1vw * (69 / 19.2));
  956. }
  957. }
  958. &.radio_w {
  959. .v-label {
  960. width: calc(1vw * (72 / 19.2));
  961. }
  962. }
  963. .v-selection-control__wrapper {
  964. display: none;
  965. }
  966. .v-label {
  967. justify-content: center;
  968. padding: 0;
  969. height: 2.25rem;
  970. margin: 0;
  971. border: 0.06rem solid #BACBDE;
  972. font-size: 0.75rem;
  973. font-weight: 400;
  974. color: #56779B;
  975. background: #fff;
  976. }
  977. &.v-selection-control--dirty {
  978. .v-label {
  979. color: #007AFF;
  980. font-weight: 700;
  981. border-color: #007AFF;
  982. }
  983. }
  984. }
  985. }
  986. }
  987. }
  988. &.type2 {
  989. .v-input__control {
  990. .v-selection-control-group {
  991. .v-radio {
  992. margin-right: 1.88rem;
  993. &:last-of-type {
  994. margin-right: 0;
  995. }
  996. .v-selection-control__wrapper {
  997. width: 1.06rem;
  998. height: 1.06rem;
  999. min-width: 1.06rem;
  1000. .v-selection-control__input {
  1001. width: 1.06rem;
  1002. height: 1.06rem;
  1003. .v-icon {
  1004. width: 1.06rem;
  1005. height: 1.06rem;
  1006. min-width: 1.06rem;
  1007. border-color: #C0C0C0;
  1008. &.mdi-radiobox-marked {
  1009. border-color: #007AFF;
  1010. box-shadow: inset 0 0 0 0.13rem #fff;
  1011. background: #007AFF;
  1012. }
  1013. }
  1014. }
  1015. }
  1016. .v-label {
  1017. padding-left: 0.75rem;
  1018. margin: 0;
  1019. color: #333;
  1020. font-size: 0.75rem;
  1021. }
  1022. }
  1023. }
  1024. }
  1025. }
  1026. .v-input__control {
  1027. .v-selection-control-group {
  1028. .v-radio {
  1029. margin-right: 1.25rem;
  1030. &:last-of-type {
  1031. margin-right: 0;
  1032. }
  1033. .v-selection-control__wrapper {
  1034. min-width: 0.94rem;
  1035. width: 0.94rem;
  1036. height: 0.94rem;
  1037. opacity: 1;
  1038. .v-selection-control__input {
  1039. width: 0.94rem;
  1040. height: 0.94rem;
  1041. border-radius: 0;
  1042. opacity: 1;
  1043. &:before {
  1044. display: none;
  1045. }
  1046. .v-icon {
  1047. min-width: 0.94rem;
  1048. width: 0.94rem;
  1049. height: 0.94rem;
  1050. border-radius: 100%;
  1051. border: 0.06rem solid #9B9B9B;
  1052. opacity: 1;
  1053. position: relative;
  1054. background: #fff;
  1055. &:before {
  1056. display: none;
  1057. }
  1058. &.mdi-radiobox-marked {
  1059. border-color: #064F9E;
  1060. box-shadow: inset 0 0 0 0.13rem #fff;
  1061. background: #064f9e;
  1062. }
  1063. }
  1064. .v-ripple__container {
  1065. display: none !important;
  1066. background: transparent !important;
  1067. }
  1068. }
  1069. }
  1070. .v-label {
  1071. margin-left: 0.63rem;
  1072. color: #000;
  1073. font-size: 0.81rem;
  1074. font-weight: 400;
  1075. opacity: 1;
  1076. }
  1077. }
  1078. }
  1079. }
  1080. .v-input__details {
  1081. display: none;
  1082. }
  1083. }
  1084. .custom-btn.v-btn.v-btn--density-default {
  1085. width: 100%;
  1086. height: 3.63rem;
  1087. border-radius: 0;
  1088. box-shadow: none;
  1089. padding: 0 0.63rem;
  1090. &:hover {
  1091. box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  1092. }
  1093. &.btn-blue {
  1094. background: #064F9E;
  1095. .v-btn__content {
  1096. color: #fff;
  1097. }
  1098. }
  1099. &.btn-blue2 {
  1100. background: #007AFF;
  1101. &.v-btn--disabled {
  1102. background: #C5CDD4 !important;
  1103. }
  1104. .v-btn__content {
  1105. color: #fff;
  1106. }
  1107. }
  1108. &.btn-blue-bor {
  1109. background: transparent;
  1110. border: 0.06rem solid rgba(3, 78, 162, 0.5);
  1111. .v-btn__content {
  1112. color: #034EA2;
  1113. font-size: 0.81rem;
  1114. font-weight: 400;
  1115. }
  1116. }
  1117. &.btn-white {
  1118. border: 0.06rem solid #DFE7EF;
  1119. background: #fff;
  1120. .v-btn__content {
  1121. color: #9DA9B6;
  1122. font-weight: 400;
  1123. }
  1124. }
  1125. &.btn-reg {
  1126. background: #007AFF;
  1127. .v-btn__content {
  1128. color: #fff;
  1129. font-weight: 400;
  1130. .ico {
  1131. width: 18px;
  1132. height: 18px;
  1133. margin-right: 0.37rem;
  1134. background-image: url("../img/ico_reg.svg");
  1135. }
  1136. }
  1137. }
  1138. &.btn-gray {
  1139. border: 0.06rem solid #DFE4EA;
  1140. background: #F4F6F9;
  1141. &.v-btn--disabled {
  1142. background: #fff !important;
  1143. border-color: #BDC5CE !important;
  1144. .v-btn__content {
  1145. color: #6E7E8F !important;
  1146. }
  1147. }
  1148. .v-btn__content {
  1149. color: #9DAAB8;
  1150. font-size: 0.75rem;
  1151. font-weight: 600;
  1152. }
  1153. }
  1154. &.btn-black {
  1155. background: #5A6571;
  1156. .v-btn__content {
  1157. color: #fff;
  1158. }
  1159. }
  1160. &.btn-gray-bor {
  1161. border: 0.06rem solid #BDC5CE;
  1162. background: #fff;
  1163. .v-btn__content {
  1164. color: #6E7E8F;
  1165. font-weight: 600;
  1166. }
  1167. }
  1168. &.btn-gray-bor2 {
  1169. border: 0.06rem solid #BDC5CE;
  1170. background: #fff;
  1171. &.v-btn--disabled {
  1172. background: #F4F6F9 !important;
  1173. border-color: #DFE4EA !important;
  1174. .v-btn__content {
  1175. color: #9DAAB8 !important;
  1176. }
  1177. }
  1178. .v-btn__content {
  1179. color: #5A6571;
  1180. }
  1181. }
  1182. &.btn-gray-bor3 {
  1183. border: 0.06rem solid #8F8F8F;
  1184. background: #fff;
  1185. .v-btn__content {
  1186. color: #333333;
  1187. }
  1188. }
  1189. &.v-btn--disabled {
  1190. background: #B3BFCD !important;
  1191. .v-btn__content {
  1192. color: #fff !important;
  1193. }
  1194. }
  1195. &.btn-excel {
  1196. width: 8.25rem;
  1197. border: 0.06rem solid #98CC9B;
  1198. height: 2.25rem;
  1199. &.v-btn--disabled {
  1200. background-color: #F4F6F9 !important;
  1201. border-color: #DFE4EA !important;
  1202. .ico {
  1203. background-image: url("../img/ico_excel_d.svg") !important;
  1204. }
  1205. .v-btn__content {
  1206. color: #9DAAB8 !important;
  1207. }
  1208. }
  1209. &.up {
  1210. border-color: #93C7FF;
  1211. width: 7.50rem;
  1212. .ico {
  1213. background-image: url("../img/ico_excel2.svg") !important;
  1214. }
  1215. .v-btn__content {
  1216. color: #007AFF !important;
  1217. }
  1218. }
  1219. .ico {
  1220. width: 1.13rem;
  1221. height: 1.13rem;
  1222. margin-right: 0.63rem;
  1223. background: url("../img/ico_excel.svg") no-repeat center / 100%;
  1224. }
  1225. .v-btn__content {
  1226. color: #19791E;
  1227. font-size: 0.81rem;
  1228. font-weight: 400;
  1229. }
  1230. }
  1231. &.btn-password {
  1232. background: #034EA2;
  1233. height: 1.81rem;
  1234. width: 6.88rem;
  1235. .v-btn__content {
  1236. color: #FFFFFF;
  1237. font-size: 0.75rem;
  1238. font-weight: 600;
  1239. }
  1240. }
  1241. &.mini {
  1242. width: 84px;
  1243. // height: 36px;
  1244. height: 2.25rem;
  1245. padding: 0 2.31rem;
  1246. .v-btn__content {
  1247. font-size: 0.75rem;
  1248. }
  1249. }
  1250. &.mini2 {
  1251. height: 2.5rem;
  1252. .v-btn__content {
  1253. font-size: 0.75rem;
  1254. font-weight: 600;
  1255. }
  1256. }
  1257. &.mid {
  1258. height: 2.25rem;
  1259. .v-btn__content {
  1260. font-size: 0.75rem;
  1261. }
  1262. }
  1263. .v-btn__overlay {
  1264. display: none;
  1265. }
  1266. .v-btn__underlay {
  1267. display: none;
  1268. }
  1269. .v-btn__content {
  1270. font-size: 0.94rem;
  1271. font-weight: 700;
  1272. letter-spacing: -0.02rem;
  1273. text-transform: none;
  1274. }
  1275. }
  1276. .custom-dialog {
  1277. background: #fff;
  1278. &.alert {
  1279. .v-common-dialog-content {
  1280. padding: 2.50rem 1.56rem 2.19rem 1.56rem;
  1281. .alert-txt {
  1282. text-align: left;
  1283. color: #222222;
  1284. font-size: 0.88rem;
  1285. font-weight: 400;
  1286. line-height: 1.63rem;
  1287. }
  1288. }
  1289. .btn-wrap {
  1290. padding-top: 0;
  1291. }
  1292. }
  1293. &.certify {
  1294. .modal-tit {
  1295. position: relative;
  1296. padding: 0;
  1297. height: auto;
  1298. border: 0;
  1299. .btn-close {
  1300. position: absolute;
  1301. right: 0.94rem;
  1302. top: 0.94rem;
  1303. }
  1304. }
  1305. .v-common-dialog-content {
  1306. padding-top: 2.81rem;
  1307. overflow: hidden;
  1308. }
  1309. .btn-wrap {
  1310. padding-bottom: 2.81rem;
  1311. .custom-btn {
  1312. height: 2.63rem;
  1313. }
  1314. }
  1315. }
  1316. .modal-tit {
  1317. display: flex;
  1318. align-items: center;
  1319. height: 3.63rem;
  1320. border-bottom: 0.06rem solid #EEEEEE;
  1321. padding: 0 1.25rem 0 1.56rem;
  1322. strong {
  1323. color: #034EA2;
  1324. font-size: 0.81rem;
  1325. font-weight: 600;
  1326. display: block;
  1327. }
  1328. .btn-close {
  1329. width: 1.50rem;
  1330. height: 1.50rem;
  1331. margin-left: auto;
  1332. background: url("../img/ico_pop_close.svg") no-repeat center / 100%;
  1333. }
  1334. }
  1335. .v-common-dialog-content {
  1336. padding: 1.56rem 1.56rem 0 1.56rem;
  1337. max-height: calc(100vh - 18.33rem);
  1338. overflow-y: auto;
  1339. &:has(.dialog-tree) {
  1340. overflow-y: hidden;
  1341. }
  1342. .find-pwd {
  1343. p {
  1344. color: #222;
  1345. display: block;
  1346. font-weight: 400;
  1347. font-size: 0.88rem;
  1348. margin-bottom: 1.88rem;
  1349. }
  1350. .txt-field-box {
  1351. margin-bottom: 0.94rem;
  1352. }
  1353. .otp-box {
  1354. display: flex;
  1355. gap: 0.94rem;
  1356. .txt-field-box {
  1357. width: calc(100% - 6.82rem);
  1358. margin: 0;
  1359. }
  1360. .btn-blue-bor {
  1361. width: 5.88rem;
  1362. }
  1363. }
  1364. .txt-list {
  1365. padding-bottom: 1.25rem;
  1366. margin-top: 2.19rem;
  1367. }
  1368. }
  1369. .otp-reg {
  1370. background: url("../img/bg_otp_reg.png") no-repeat right top / 16.69rem auto;
  1371. margin-top: -1.56rem;
  1372. padding-top: 1.56rem;
  1373. &.bg-not {
  1374. background: none;
  1375. }
  1376. .otp-box {
  1377. margin-top: 1.88rem;
  1378. &:first-of-type {
  1379. margin-top: 0;
  1380. }
  1381. .otp-box-tit {
  1382. display: block;
  1383. color: #000;
  1384. font-size: 0.94rem;
  1385. font-weight: 700;
  1386. letter-spacing: -0.02rem;
  1387. margin-bottom: 1.13rem;
  1388. }
  1389. .txt-list {
  1390. padding-bottom: 0.63rem;
  1391. }
  1392. .otp-reg-step {
  1393. margin-bottom: 1.56rem;
  1394. ul {
  1395. display: flex;
  1396. justify-content: space-between;
  1397. li {
  1398. width: 4.69rem;
  1399. display: flex;
  1400. flex-direction: column;
  1401. align-items: center;
  1402. position: relative;
  1403. &:after {
  1404. content: "";
  1405. width: 1.25rem;
  1406. height: 1.25rem;
  1407. right: -2.25rem;
  1408. top: 1.56rem;
  1409. position: absolute;
  1410. background: url("../img/ico_step_arr.svg") no-repeat center / 100%;
  1411. }
  1412. &:last-of-type {
  1413. &:after {
  1414. display: none;
  1415. }
  1416. }
  1417. .ico {
  1418. background: #F7F7F7 no-repeat center / 1.25rem;
  1419. height: 4.69rem;
  1420. width: 4.69rem;
  1421. border-radius: 100%;
  1422. &.ico1 {
  1423. background-image: url("../img/ico_otp_step1.svg");
  1424. }
  1425. &.ico2 {
  1426. background-image: url("../img/ico_otp_step2.svg");
  1427. }
  1428. &.ico3 {
  1429. background-image: url("../img/ico_otp_step3.svg");
  1430. }
  1431. &.ico4 {
  1432. background-image: url("../img/ico_otp_step4.svg");
  1433. }
  1434. &.ico5 {
  1435. background-image: url("../img/ico_otp_step5.svg");
  1436. }
  1437. }
  1438. .numbering {
  1439. background: #034EA2;
  1440. border-radius: 100%;
  1441. height: 1.25rem;
  1442. width: 2.31rem;
  1443. display: flex;
  1444. align-items: center;
  1445. justify-content: center;
  1446. margin-top: -0.63rem;
  1447. color: #fff;
  1448. font-size: 0.63rem;
  1449. font-weight: 700;
  1450. }
  1451. p {
  1452. text-align: center;
  1453. color: #333;
  1454. font-size: 0.81rem;
  1455. letter-spacing: -0.02rem;
  1456. margin-top: 0.63rem;
  1457. line-height: 1rem;
  1458. font-weight: 400;
  1459. }
  1460. }
  1461. }
  1462. }
  1463. .otp-certify {
  1464. background: #F8F8F8;
  1465. border: 0.06rem solid #EBEBEB;
  1466. padding: 1.88rem 0;
  1467. display: flex;
  1468. flex-direction: column;
  1469. align-items: center;
  1470. .certify-logo {
  1471. margin-bottom: 1.50rem;
  1472. span {
  1473. display: block;
  1474. height: 0.81rem;
  1475. width: 100%;
  1476. font-size: 0;
  1477. background: url("../img/logo_login.svg") no-repeat center / auto 0.81rem;
  1478. }
  1479. p {
  1480. margin-top: 0.38rem;
  1481. font-weight: 400;
  1482. text-align: center;
  1483. color: #333;
  1484. font-size: 0.88rem;
  1485. letter-spacing: -0.02rem;
  1486. }
  1487. }
  1488. .txt-field-box {
  1489. width: 18.75rem;
  1490. margin-bottom: 0.5rem;
  1491. }
  1492. .error-txt {
  1493. margin-top: 0.25rem;
  1494. width: 18.75rem;
  1495. }
  1496. .custom-input.v-text-field {
  1497. &.mini {
  1498. min-height: 2.5rem;
  1499. .v-input__control {
  1500. height: 2.5rem;
  1501. .v-field__field {
  1502. .v-field__input {
  1503. height: 2.5rem;
  1504. min-height: 2.5rem;
  1505. font-size: 0.81rem;
  1506. border: 0.06rem solid #E4E4E4;
  1507. }
  1508. }
  1509. }
  1510. }
  1511. }
  1512. .custom-btn {
  1513. width: 18.75rem;
  1514. margin-top: 0.94rem;
  1515. .v-btn__content {
  1516. font-weight: 700;
  1517. font-size: 0.81rem;
  1518. }
  1519. }
  1520. }
  1521. .otp-chk {
  1522. margin-top: 1.63rem;
  1523. padding-bottom: 1.56rem;
  1524. }
  1525. }
  1526. .otp-txt {
  1527. line-height: 0.94rem;
  1528. color: #000;
  1529. font-size: 0.94rem;
  1530. font-weight: 600;
  1531. letter-spacing: -0.02rem;
  1532. &.type2 {
  1533. font-weight: 400;
  1534. }
  1535. }
  1536. .otp-set-step {
  1537. margin-top: 1.88rem;
  1538. .otp-set-box {
  1539. margin-bottom: 2.50rem;
  1540. &:last-of-type {
  1541. margin-bottom: 0;
  1542. padding-bottom: 1.56rem;
  1543. }
  1544. .tit {
  1545. display: flex;
  1546. align-items: center;
  1547. margin-bottom: 1.06rem;
  1548. .num {
  1549. width: 3.75rem;
  1550. height: 1.69rem;
  1551. border-radius: 6.25rem;
  1552. display: flex;
  1553. align-items: center;
  1554. justify-content: center;
  1555. color: #fff;
  1556. font-weight: 600;
  1557. font-size: 0.69rem;
  1558. margin-right: 0.81rem;
  1559. background: #0078FF;
  1560. }
  1561. strong {
  1562. color: #000;
  1563. font-size: 0.81rem;
  1564. font-weight: 700;
  1565. letter-spacing: -0.02rem;
  1566. }
  1567. }
  1568. .set-in {
  1569. .app-download {
  1570. display: flex;
  1571. background: #F8F8F8;
  1572. border: 0.06rem solid #EBEBEB;
  1573. padding: 1.25rem 0;
  1574. margin-bottom: 1.56rem;
  1575. .store {
  1576. display: flex;
  1577. align-items: center;
  1578. justify-content: center;
  1579. width: 100%;
  1580. gap: 1.56rem;
  1581. button {
  1582. width: 8.81rem;
  1583. height: 2.50rem;
  1584. font-size: 0;
  1585. background: no-repeat center / 100%;
  1586. &.btn-google {
  1587. background-image: url("../img/btn_goolge_play.svg");
  1588. }
  1589. &.btn-app {
  1590. background-image: url("../img/btn_app_store.svg");
  1591. }
  1592. }
  1593. }
  1594. .qr {
  1595. padding: 0 2.38rem;
  1596. display: flex;
  1597. flex-shrink: 0;
  1598. height: 4.38rem;
  1599. align-items: center;
  1600. border-left: 0.06rem solid #DCDCDC;
  1601. .img {
  1602. width: 3.75rem;
  1603. height: 3.75rem;
  1604. img {
  1605. width: 100%;
  1606. height: 100%;
  1607. }
  1608. }
  1609. }
  1610. }
  1611. .key-box {
  1612. padding: 1.25rem 2.50rem;
  1613. display: flex;
  1614. margin-bottom: 1.56rem;
  1615. align-items: center;
  1616. background: #F8F8F8;
  1617. border: 0.06rem solid #EBEBEB;
  1618. .qr {
  1619. width: 3.75rem;
  1620. height: 3.75rem;
  1621. flex-shrink: 0;
  1622. img {
  1623. width: 100%;
  1624. height: 100%;
  1625. }
  1626. }
  1627. p {
  1628. margin-left: 3.44rem;
  1629. color: #000;
  1630. font-size: 0.88rem;
  1631. font-weight: 400;
  1632. span {
  1633. font-weight: 700;
  1634. }
  1635. }
  1636. }
  1637. .txt-field-box {
  1638. margin-top: 1.56rem;
  1639. }
  1640. }
  1641. }
  1642. }
  1643. }
  1644. .certify-y {
  1645. .ico {
  1646. display: block;
  1647. margin: 0 auto;
  1648. width: 4.38rem;
  1649. height: 4.38rem;
  1650. background: #E9EBEE url("../img/ico_certify_y.svg") no-repeat center / 2.25rem;
  1651. border-radius: 100%;
  1652. }
  1653. .certify-txt {
  1654. text-align: center;
  1655. font-weight: 400;
  1656. font-size: 1rem;
  1657. margin-top: 1.25rem;
  1658. color: #222222;
  1659. span {
  1660. font-weight: 700;
  1661. color: #034EA2;
  1662. }
  1663. }
  1664. }
  1665. .info-mod {
  1666. padding-bottom: 1.25rem;
  1667. .mod-txt {
  1668. color: #222;
  1669. font-size: 0.88rem;
  1670. font-weight: 400;
  1671. margin-bottom: 1.88rem;
  1672. }
  1673. }
  1674. .excel-step {
  1675. display: flex;
  1676. gap: 3.38rem;
  1677. flex-direction: column;
  1678. padding-bottom: 0.94rem;
  1679. .excel-step-box {
  1680. position: relative;
  1681. &:before {
  1682. position: absolute;
  1683. width: 1.5rem;
  1684. height: 1.5rem;
  1685. bottom: -2.44rem;
  1686. left: 50%;
  1687. transform: translateX(-50%);
  1688. background: url("../img/ico_step_arr2.svg") no-repeat center / 100%;
  1689. content: "";
  1690. }
  1691. &:last-of-type {
  1692. &:before {
  1693. display: none;
  1694. }
  1695. }
  1696. .excel-step-top {
  1697. display: flex;
  1698. align-items: center;
  1699. margin-bottom: 1.06rem;
  1700. .step {
  1701. display: flex;
  1702. align-items: center;
  1703. justify-content: center;
  1704. width: 3.75rem;
  1705. height: 1.69rem;
  1706. border-radius: 6.25rem;
  1707. color: #fff;
  1708. margin-right: 0.81rem;
  1709. font-size: 0.69rem;
  1710. font-weight: 600;
  1711. background: #0078FF;
  1712. }
  1713. strong {
  1714. color: #000;
  1715. font-weight: 700;
  1716. font-size: 0.88rem;
  1717. letter-spacing: -0.02rem;
  1718. }
  1719. }
  1720. .excel-step-btm {
  1721. .step-bg-box {
  1722. background: #F8F8F8;
  1723. border: 0.06rem solid #ebebeb;
  1724. display: flex;
  1725. padding: 1.25rem 0;
  1726. &.type2 {
  1727. flex-direction: column;
  1728. padding: 1.81rem 2.44rem 1.5rem 2.44rem;
  1729. p {
  1730. text-align: center;
  1731. color: #444444;
  1732. font-size: 0.81rem;
  1733. letter-spacing: -0.02rem;
  1734. font-weight: 400;
  1735. &.txt2 {
  1736. margin-top: 0.56rem;
  1737. }
  1738. span {
  1739. display: inline-flex;
  1740. align-items: center;
  1741. justify-content: center;
  1742. width: 3.75rem;
  1743. height: 1.69rem;
  1744. border-radius: 6.25rem;
  1745. color: #fff;
  1746. margin: 0 0.5rem;
  1747. font-size: 0.69rem;
  1748. font-weight: 600;
  1749. background: #0078FF;
  1750. }
  1751. }
  1752. }
  1753. .download-txt {
  1754. display: flex;
  1755. align-items: center;
  1756. justify-content: center;
  1757. width: 100%;
  1758. p {
  1759. display: inline-block;
  1760. text-align: left;
  1761. color: #444444;
  1762. font-size: 0.81rem;
  1763. font-weight: 400;
  1764. letter-spacing: -0.02rem;
  1765. line-height: 1.63rem;
  1766. }
  1767. }
  1768. .download-area {
  1769. padding: 0.88rem 1.81rem;
  1770. margin-left: auto;
  1771. flex-shrink: 0;
  1772. border-left: 0.06rem solid #DCDCDC;
  1773. .custom-btn.btn-download {
  1774. width: 8.75rem;
  1775. height: 2.5rem;
  1776. min-height: 2.5rem;
  1777. .ico {
  1778. width: 1rem;
  1779. height: 1rem;
  1780. background: url("../img/ico_download.svg") no-repeat center / 100%;
  1781. margin-left: 0.94rem;
  1782. }
  1783. .v-btn__content {
  1784. font-size: 0.81rem;
  1785. font-weight: 700;
  1786. letter-spacing: -0.02rem;
  1787. }
  1788. }
  1789. }
  1790. .add-file {
  1791. margin-top: 1.56rem;
  1792. position: relative;
  1793. .v-file-input {
  1794. position: relative;
  1795. //padding-right:6.88rem;
  1796. .v-input__prepend {
  1797. grid-area: none;
  1798. margin: 0;
  1799. .v-icon {
  1800. display: none;
  1801. }
  1802. }
  1803. .v-input__control {
  1804. //height:2.25rem;
  1805. //border:0.06rem solid #E0E0E0;
  1806. background: transparent;
  1807. .v-field {
  1808. height: 2.25rem;
  1809. padding: 0;
  1810. }
  1811. .v-field__overlay {
  1812. background: transparent;
  1813. ;
  1814. opacity: 1;
  1815. }
  1816. .v-field__field {
  1817. height: 2.25rem;
  1818. padding-right: 6.88rem;
  1819. position: relative;
  1820. cursor: pointer;
  1821. .v-label {
  1822. width: 100%;
  1823. height: 100%;
  1824. width: 6.25rem;
  1825. overflow: visible !important;
  1826. margin: 0 !important;
  1827. position: absolute;
  1828. right: 0;
  1829. top: 0;
  1830. display: none;
  1831. transform: none;
  1832. contain: none;
  1833. cursor: pointer;
  1834. transition: none;
  1835. &.v-field-label--floating {
  1836. display: block !important;
  1837. visibility: visible !important;
  1838. opacity: 1 !important;
  1839. }
  1840. }
  1841. .v-field__input {
  1842. height: 2.25rem;
  1843. min-height: 2.25rem;
  1844. padding: 0 0.94rem;
  1845. color: #444444;
  1846. font-size: 0.75rem;
  1847. font-weight: 400;
  1848. border: 0.06rem solid #E0E0E0;
  1849. background: #fff;
  1850. }
  1851. input {
  1852. cursor: pointer;
  1853. }
  1854. }
  1855. .v-field__clearable {
  1856. position: absolute;
  1857. right: 7.31rem;
  1858. top: 50%;
  1859. transform: translateY(-50%);
  1860. z-index: 5;
  1861. }
  1862. .v-field__outline {
  1863. display: none;
  1864. }
  1865. }
  1866. }
  1867. .btn-file {
  1868. width: 100px;
  1869. height: 2.25rem;
  1870. display: flex;
  1871. align-items: center;
  1872. justify-content: center;
  1873. background: #f8f8f8;
  1874. border: 0.06rem solid rgba(3, 78, 162, 0.3);
  1875. color: #034EA2;
  1876. font-weight: 700;
  1877. font-size: 0.81rem;
  1878. letter-spacing: -0.02rem;
  1879. cursor: pointer;
  1880. }
  1881. }
  1882. }
  1883. .tbl-wrap {
  1884. .custom-table.v-table {
  1885. .v-table__wrapper {
  1886. max-height: calc(1vh * (196 / 10.8));
  1887. min-height: auto;
  1888. height: auto;
  1889. }
  1890. }
  1891. }
  1892. }
  1893. }
  1894. }
  1895. .backup-name-dns {
  1896. display: flex;
  1897. align-items: flex-start;
  1898. justify-content: flex-start;
  1899. flex-direction: column;
  1900. margin-bottom: 1.25rem;
  1901. gap: 0.875rem;
  1902. strong {
  1903. color: #222222;
  1904. font-weight: 700;
  1905. font-size: 0.88rem;
  1906. flex-shrink: 0;
  1907. }
  1908. p {
  1909. color: #222222;
  1910. font-weight: 700;
  1911. font-size: 0.88rem;
  1912. flex-shrink: 0;
  1913. }
  1914. }
  1915. .notice-img {
  1916. border: 0.06rem solid #D0E7FF;
  1917. display: flex;
  1918. align-items: center;
  1919. padding: 1.19rem 1.88rem;
  1920. margin-bottom: 2.19rem;
  1921. background: #E4F1FF url("../img/bg_popup.svg") no-repeat center top / 100% auto;
  1922. .ico {
  1923. width: 5.13rem;
  1924. height: 5.13rem;
  1925. background: url("../img/img_popup.svg") no-repeat center / 100%;
  1926. }
  1927. .notice-info {
  1928. padding-left: 1.88rem;
  1929. strong {
  1930. color: #111;
  1931. font-size: 1.13rem;
  1932. font-weight: 700;
  1933. line-height: 1.13rem;
  1934. display: block;
  1935. text-align: left;
  1936. letter-spacing: -0.01rem;
  1937. margin-bottom: 1.38rem;
  1938. }
  1939. p {
  1940. color: #555555;
  1941. font-size: 0.88rem;
  1942. font-weight: 400;
  1943. text-align: left;
  1944. letter-spacing: -0.01rem;
  1945. }
  1946. }
  1947. }
  1948. .notice-txt {
  1949. padding-bottom: 1.25rem;
  1950. word-break: break-all;
  1951. color: #333;
  1952. font-size: 0.88rem;
  1953. letter-spacing: -0.02rem;
  1954. line-height: 1.25rem;
  1955. }
  1956. .map-area {
  1957. height: 25rem;
  1958. border: 0.06rem solid #F7F8F9;
  1959. background: #FAFAFA;
  1960. }
  1961. .map-address {
  1962. display: flex;
  1963. align-items: center;
  1964. padding: 0.63rem;
  1965. background: #FAFAFA;
  1966. border: 0.06rem solid #F7F8F9;
  1967. margin: 0.63rem 0 0;
  1968. strong {
  1969. color: #111;
  1970. font-weight: 700;
  1971. flex-shrink: 0;
  1972. font-size: 0.88rem;
  1973. }
  1974. p {
  1975. color: #333;
  1976. font-size: 0.88rem;
  1977. font-weight: 600;
  1978. width: 100%;
  1979. padding-left: 0.5rem;
  1980. }
  1981. }
  1982. .dialog-tree {
  1983. padding: 0.94rem 0.31rem 0.94rem 0.94rem;
  1984. border: 0.06rem solid #F7F8F9;
  1985. .tree-area {
  1986. max-height: calc(100vh - 25rem);
  1987. }
  1988. }
  1989. }
  1990. .btn-wrap {
  1991. display: flex;
  1992. padding: 2.19rem 0 3.44rem;
  1993. justify-content: center;
  1994. gap: 0.69rem;
  1995. }
  1996. }
  1997. .custom-table.v-table {
  1998. position: relative;
  1999. &.backup-table {
  2000. .v-table__wrapper {
  2001. min-height: 196px;
  2002. height: calc(1vh * (196 / 10.8));
  2003. }
  2004. }
  2005. .v-table__wrapper {
  2006. border-top: 0.06rem solid #CCCCCC;
  2007. height: calc(1vh * (539 / 10.8));
  2008. min-height: 539px;
  2009. table {
  2010. table-layout: fixed;
  2011. thead {
  2012. tr {
  2013. th {
  2014. height: 47px;
  2015. padding: calc(1vh * (15 / 10.8)) 10px calc(1vh * (14 / 10.8));
  2016. background: #FAFAFA !important;
  2017. color: #222222;
  2018. font-size: 0.75rem;
  2019. font-weight: 600;
  2020. box-shadow: none;
  2021. box-shadow: inset 0 -0.06rem 0 #EBEBEB !important;
  2022. vertical-align: middle;
  2023. .v-data-table-header__content {
  2024. justify-content: center;
  2025. text-align: center;
  2026. span {
  2027. margin-left: 1.13rem;
  2028. }
  2029. }
  2030. }
  2031. }
  2032. }
  2033. tbody {
  2034. tr {
  2035. &.cursor {
  2036. td {
  2037. cursor: pointer;
  2038. }
  2039. }
  2040. &:hover {
  2041. td {
  2042. background: rgba(89, 146, 255, 0.12);
  2043. }
  2044. }
  2045. td {
  2046. min-height: 49px;
  2047. height: calc(1vh * (49 / 10.8));
  2048. padding: 0.63rem 0.63rem 0.56rem 0.63rem;
  2049. color: #222222;
  2050. text-align: center;
  2051. font-size: 0.75rem;
  2052. font-weight: 400;
  2053. vertical-align: middle;
  2054. border-bottom: 0.06rem solid #EBEBEB !important;
  2055. .ellipsis {
  2056. display: block;
  2057. width: 100%;
  2058. overflow: hidden;
  2059. white-space: nowrap;
  2060. text-overflow: ellipsis;
  2061. word-break: break-all;
  2062. }
  2063. .cusror {
  2064. cursor: pointer;
  2065. }
  2066. .btn-session-end {
  2067. display: flex;
  2068. margin: 0 auto;
  2069. align-items: center;
  2070. justify-content: center;
  2071. width: 6.44rem;
  2072. height: 1.81rem;
  2073. border-radius: 6.25rem;
  2074. background: #2C3744;
  2075. padding: 0;
  2076. box-shadow: none;
  2077. .v-btn__content {
  2078. color: #fff;
  2079. font-size: 0.75rem;
  2080. font-weight: 600;
  2081. letter-spacing: 0;
  2082. .ico {
  2083. width: 1.13rem;
  2084. height: 1.13rem;
  2085. background: url("../img/ico_end.svg");
  2086. margin-right: 0.59rem;
  2087. }
  2088. }
  2089. }
  2090. .result-color {
  2091. display: flex;
  2092. width: 3.31rem;
  2093. height: 1.81rem;
  2094. margin: 0 auto;
  2095. border-radius: 6.25rem;
  2096. align-items: center;
  2097. justify-content: center;
  2098. color: #fff;
  2099. font-size: 0.75rem;
  2100. font-weight: 600;
  2101. &.type-blue {
  2102. background: #064F9E;
  2103. }
  2104. &.type-red {
  2105. background: #FF2426;
  2106. }
  2107. }
  2108. .btn-state {
  2109. padding: 0 0.75rem;
  2110. display: inline-flex;
  2111. align-items: center;
  2112. font-size: 0.75rem;
  2113. height: 1.81rem;
  2114. border-radius: 6.25rem;
  2115. font-weight: 600;
  2116. border: 0.06rem solid;
  2117. background: #fff;
  2118. &.state1 {
  2119. border-color: rgba(0, 122, 255, 0.5);
  2120. color: #007AFF;
  2121. .ico {
  2122. background-image: url("../img/ico_state1.svg");
  2123. }
  2124. }
  2125. &.state2 {
  2126. border-color: rgba(255, 36, 38, 0.5);
  2127. color: #FF2426;
  2128. .ico {
  2129. background-image: url("../img/ico_state2.svg");
  2130. }
  2131. }
  2132. &.state3 {
  2133. border-color: rgba(255, 131, 0, 0.5);
  2134. color: #FF8300;
  2135. .ico {
  2136. background-image: url("../img/ico_state3.svg");
  2137. }
  2138. }
  2139. .ico {
  2140. width: 0.88rem;
  2141. height: 0.88rem;
  2142. background: no-repeat center / 100%;
  2143. margin-right: 0.31rem;
  2144. }
  2145. }
  2146. .btn-backup {
  2147. border: 0.06rem solid rgba(70, 118, 173, 0.4);
  2148. border-radius: 6.25rem;
  2149. height: 1.81rem;
  2150. display: inline-flex;
  2151. margin: 0 auto;
  2152. align-items: center;
  2153. padding: 0 0.75rem;
  2154. letter-spacing: 0;
  2155. box-shadow: none;
  2156. .v-btn__content {
  2157. color: #487EBD;
  2158. font-size: 0.75rem;
  2159. font-weight: 600;
  2160. letter-spacing: 0;
  2161. .ico {
  2162. width: 0.88rem;
  2163. height: 0.88rem;
  2164. background: no-repeat center / 100%;
  2165. margin-right: 0.31rem;
  2166. &.ico1 {
  2167. background-image: url("../img/ico_backup1.svg");
  2168. }
  2169. &.ico2 {
  2170. background-image: url("../img/ico_backup2.svg");
  2171. }
  2172. &.ico3 {
  2173. background-image: url("../img/ico_backup3.svg");
  2174. }
  2175. &.ico4 {
  2176. background-image: url("../img/ico_backup4.svg");
  2177. }
  2178. }
  2179. }
  2180. }
  2181. .input-wrap.slt-btn {
  2182. width: 100%;
  2183. justify-content: center;
  2184. .custom-select {
  2185. width: 8.63rem;
  2186. flex: none;
  2187. height: 1.81rem;
  2188. .v-input__control {
  2189. .v-field {
  2190. height: 1.81rem;
  2191. .v-field__field {
  2192. height: 1.81rem;
  2193. .v-field__input {
  2194. height: 1.81rem;
  2195. min-height: 1.81rem;
  2196. .v-btn__content {
  2197. color: #6E7E8F;
  2198. }
  2199. }
  2200. }
  2201. }
  2202. }
  2203. }
  2204. .custom-btn {
  2205. padding: 0;
  2206. min-width: 2.94rem;
  2207. width: 2.94rem;
  2208. height: 1.81rem;
  2209. min-height: 1.81rem;
  2210. }
  2211. }
  2212. }
  2213. }
  2214. }
  2215. .chk-first {
  2216. .v-selection-control__input::before {
  2217. display: none;
  2218. }
  2219. .v-icon {
  2220. opacity: 1;
  2221. width: 1.06rem;
  2222. min-width: 1.06rem;
  2223. height: 1.06rem;
  2224. background: no-repeat center / 100%;
  2225. &::before {
  2226. display: none;
  2227. }
  2228. &.mdi-checkbox-blank-outline {
  2229. background-image: url("../img/ico_chk_off.svg");
  2230. }
  2231. &.mdi-checkbox-marked {
  2232. background-image: url("../img/ico_chk_on.svg");
  2233. }
  2234. &.mdi-minus-box {
  2235. background: #007AFF;
  2236. position: relative;
  2237. overflow: hidden;
  2238. width: 1.06rem;
  2239. height: 1.06rem;
  2240. min-width: 1.06rem;
  2241. border-radius: 0.31rem;
  2242. &:before {
  2243. display: block;
  2244. color: #007AFF;
  2245. width: 1.06rem;
  2246. height: 1.06rem;
  2247. font-size: 1.44rem;
  2248. position: absolute;
  2249. top: -0.19rem;
  2250. left: -0.19rem;
  2251. border: 0;
  2252. background: #fff;
  2253. }
  2254. }
  2255. }
  2256. .v-ripple__container {
  2257. display: none;
  2258. }
  2259. }
  2260. }
  2261. }
  2262. .v-data-table-footer,
  2263. .v-divider {
  2264. display: none;
  2265. }
  2266. .tbl-no-data {
  2267. min-height: 5rem;
  2268. padding: 0.63rem 0;
  2269. display: flex;
  2270. align-items: center;
  2271. justify-content: center;
  2272. flex-direction: column;
  2273. .ico-excel {
  2274. width: 2.5rem;
  2275. height: 2.5rem;
  2276. display: inline-block;
  2277. background: url("../img/ico_not_excel.svg") no-repeat center / 100%;
  2278. margin-bottom: 0.63rem;
  2279. }
  2280. p {
  2281. text-align: center;
  2282. color: #333333;
  2283. font-size: 0.81rem;
  2284. font-weight: 400;
  2285. }
  2286. }
  2287. }
  2288. .connect-state {
  2289. display: flex;
  2290. margin: 0 auto;
  2291. align-items: center;
  2292. width: 8.38rem;
  2293. height: 1.81rem;
  2294. border-radius: 6.25rem;
  2295. padding: 0 0.88rem;
  2296. font-weight: 600;
  2297. font-size: 0.75rem;
  2298. color: #2D8CFA;
  2299. border: 0.06rem solid #2D8CFA;
  2300. background: #fff;
  2301. &.state-red {
  2302. border-color: #FFBABB;
  2303. color: #FF2426;
  2304. .cir {
  2305. background: #FF2426;
  2306. }
  2307. }
  2308. .cir {
  2309. width: 0.69rem;
  2310. height: 0.69rem;
  2311. border-radius: 100%;
  2312. margin-right: auto;
  2313. background: #2D8CFA;
  2314. }
  2315. }
  2316. .severity-type {
  2317. width: 4.56rem;
  2318. display: inline-flex;
  2319. align-items: center;
  2320. justify-content: center;
  2321. height: 1.81rem;
  2322. color: #fff;
  2323. font-size: 0.63rem;
  2324. font-weight: 600;
  2325. &.type-critical {
  2326. background: #FF2426;
  2327. }
  2328. &.type-major {
  2329. background: #FF7236;
  2330. }
  2331. &.type-minor {
  2332. background: #FFB800;
  2333. }
  2334. &.type-warning {
  2335. background: #C10002;
  2336. }
  2337. &.type-normal {
  2338. background: #064F9E;
  2339. }
  2340. &.type-not {
  2341. color: #222222;
  2342. font-weight: 400;
  2343. }
  2344. }
  2345. .custom-select.v-input {
  2346. &.not-detail {
  2347. .v-input__details {
  2348. display: none;
  2349. }
  2350. }
  2351. &.v-select--selected {
  2352. .v-input__control {
  2353. .v-field {
  2354. .v-field__field {
  2355. .v-label {
  2356. display: none;
  2357. }
  2358. }
  2359. }
  2360. }
  2361. }
  2362. &.v-input--error {
  2363. .v-input__control {
  2364. .v-field {
  2365. .v-field__outline {
  2366. border-color: #FF4C6D!important;
  2367. }
  2368. }
  2369. }
  2370. .v-input__details {
  2371. display: block;
  2372. width: 100%;
  2373. padding: 0.38rem 0.63rem 0 0.63rem;
  2374. .v-messages {
  2375. color: #FF4C6D;
  2376. text-align: left;
  2377. }
  2378. }
  2379. }
  2380. .v-input__control {
  2381. .v-field {
  2382. height: 2.25rem;
  2383. padding-right: 0;
  2384. background: #fff;
  2385. &.v-field--active {
  2386. .v-label {
  2387. visibility: visible;
  2388. }
  2389. }
  2390. .v-field__overlay {
  2391. display: none;
  2392. }
  2393. .v-field__field {
  2394. height: 2.25rem;
  2395. padding-left: 0.94rem;
  2396. overflow: hidden;
  2397. .v-label {
  2398. display: flex;
  2399. align-items: center;
  2400. position: static !important;
  2401. top: 0 !important;
  2402. height: 2.25rem;
  2403. font-size: 0.75rem;
  2404. color: #444444;
  2405. font-weight: 400;
  2406. margin: 0;
  2407. width: 100%;
  2408. opacity: 1;
  2409. min-width: 100%;
  2410. letter-spacing: 0;
  2411. transition: none !important;
  2412. transform: none !important;
  2413. }
  2414. .v-field__input {
  2415. padding: 0;
  2416. height: 2.25rem;
  2417. min-height: 2.25rem;
  2418. opacity: 1;
  2419. .v-select__selection {
  2420. font-size: 0.75rem;
  2421. color: #444;
  2422. font-weight: 400;
  2423. }
  2424. }
  2425. }
  2426. .v-field__append-inner {
  2427. .v-icon {
  2428. width: 0.75rem;
  2429. height: 0.75rem;
  2430. margin-right: 0.88rem;
  2431. min-width: 0.75rem;
  2432. background: url("/assets/img/ico_slt.svg") no-repeat center / 100%;
  2433. opacity: 1;
  2434. &:before {
  2435. display: none;
  2436. }
  2437. }
  2438. }
  2439. .v-field__outline {
  2440. border-radius: 0;
  2441. border: 0.06rem solid #E0E0E0;
  2442. >div {
  2443. display: none;
  2444. }
  2445. }
  2446. }
  2447. }
  2448. .v-input__details {
  2449. display: none;
  2450. }
  2451. }
  2452. .custom-textarea.v-textarea {
  2453. .v-input__control {
  2454. border: 0.06rem solid #E0E0E0;
  2455. border-radius: 0;
  2456. .v-field {
  2457. .v-field__overlay {
  2458. background: transparent;
  2459. opacity: 1;
  2460. }
  2461. .v-field__field {
  2462. .v-field__input {
  2463. font-size: 0.75rem;
  2464. font-weight: 400;
  2465. color: #444;
  2466. letter-spacing: 0;
  2467. padding: 0.94rem;
  2468. &::placeholder {
  2469. color: #AAAAAA;
  2470. opacity: 1;
  2471. }
  2472. }
  2473. }
  2474. .v-field__outline {
  2475. display: none;
  2476. }
  2477. }
  2478. }
  2479. .v-input__details {
  2480. display: none;
  2481. }
  2482. }
  2483. .v-menu {
  2484. border-radius: 0 !important;
  2485. box-shadow: none;
  2486. >.v-overlay__content {
  2487. border-radius: 0 !important;
  2488. box-shadow: none;
  2489. background: transparent;
  2490. }
  2491. .v-list {
  2492. border: 0.06rem solid #E0E0E0;
  2493. padding: 0;
  2494. margin-top: 0.06rem;
  2495. box-shadow: none;
  2496. overflow: hidden;
  2497. background: #fff;
  2498. .v-list-item {
  2499. background: none;
  2500. ;
  2501. min-height: 2.25rem;
  2502. padding: 0.38rem;
  2503. border-radius: 0;
  2504. .v-list-item-title {
  2505. font-size: 0.75rem;
  2506. color: #444;
  2507. font-weight: 400;
  2508. }
  2509. }
  2510. }
  2511. }
  2512. .calendar-wrap {
  2513. display: flex;
  2514. align-items: center;
  2515. margin-left: calc(1vw * (21 / 19.2));
  2516. .text {
  2517. padding: 0 calc(1vw * (10 / 19.2));
  2518. font-size: 0.75rem;
  2519. color: #444;
  2520. font-weight: 400;
  2521. }
  2522. }
  2523. .calendar {
  2524. .dp__input_wrap {
  2525. position: relative;
  2526. &:before {
  2527. content: "";
  2528. position: absolute;
  2529. right: 0.94rem;
  2530. top: 0.63rem;
  2531. width: 1rem;
  2532. height: 1rem;
  2533. background: url("/assets/img/ico_calendar.svg") no-repeat center / 100%;
  2534. }
  2535. .dp__input {
  2536. width: calc(1vw * (191 / 19.2));
  2537. padding: 0 2.56rem 0 0.94rem;
  2538. height: 2.25rem;
  2539. border: 0.06rem solid #E0E0E0 !important;
  2540. color: #444;
  2541. font-weight: 400;
  2542. font-size: 0.75rem;
  2543. border-radius: 0;
  2544. &:hover {
  2545. border-color: #E0E0E0;
  2546. }
  2547. &::placeholder {
  2548. color: #444;
  2549. font-weight: 400;
  2550. opacity: 1;
  2551. }
  2552. }
  2553. .dp__icon {
  2554. display: none;
  2555. }
  2556. }
  2557. .dp--menu-wrapper {
  2558. width: 16.44rem;
  2559. .dp__menu_inner {
  2560. padding: 0.38rem 0.50rem;
  2561. .dp--year-select,
  2562. .dp__month_year_select {
  2563. height: 2.19rem;
  2564. font-size: 1rem;
  2565. }
  2566. .dp__calendar_header_item {
  2567. height: 2.19rem;
  2568. width: 2.19rem;
  2569. padding: 0.31rem;
  2570. font-size: 1rem;
  2571. }
  2572. .dp__calendar_header_separator {
  2573. height: 0.06rem;
  2574. }
  2575. .dp__calendar_row {
  2576. margin: 0.31rem 0;
  2577. .dp__cell_inner {
  2578. height: 2.19rem;
  2579. width: 2.19rem;
  2580. padding: 0.31rem;
  2581. border-width: 0.06rem;
  2582. font-size: 1rem;
  2583. }
  2584. }
  2585. }
  2586. .dp__action_row {
  2587. .dp__selection_preview {
  2588. display: none;
  2589. }
  2590. }
  2591. .dp__action_buttons {
  2592. gap: 0.5rem;
  2593. }
  2594. .dp__action_button {
  2595. border-width: 0.06rem;
  2596. padding: 0.38rem;
  2597. margin: 0;
  2598. height: 1.38rem;
  2599. font-size: 0.81rem;
  2600. }
  2601. .dp__time_col_sec {
  2602. padding: 0 0.63rem;
  2603. }
  2604. .dp__time_col_block {
  2605. font-size: 2rem;
  2606. }
  2607. .dp__inc_dec_button {
  2608. padding: 0.31rem;
  2609. height: 2rem;
  2610. width: 2rem;
  2611. }
  2612. .dp__time_display_block {
  2613. padding: 0 0.19rem;
  2614. }
  2615. .dp__button {
  2616. padding: 0.63em;
  2617. }
  2618. .dp__overlay_cell_pad {
  2619. padding: 0.63em 0;
  2620. }
  2621. .dp__overlay_col {
  2622. padding: 0.19rem;
  2623. }
  2624. .dp__overlay_container {
  2625. height: 18.00rem;
  2626. }
  2627. }
  2628. }
  2629. .pagination-wrapper {
  2630. margin-top: 1.88rem;
  2631. display: flex;
  2632. align-items: center;
  2633. justify-content: center;
  2634. .pagination-btn {
  2635. min-width: 1.75rem;
  2636. height: 1.75rem !important;
  2637. background-repeat: no-repeat !important;
  2638. background-color: transparent !important;
  2639. background-position: center !important;
  2640. background-size: 100%;
  2641. padding: 0;
  2642. box-shadow: none !important;
  2643. flex-shrink: 0;
  2644. &.prev1 {
  2645. margin: 0 0.63rem 0 0.31rem;
  2646. background-image: url("/assets/img/ico_paging_prev1.svg");
  2647. }
  2648. &.prev2 {
  2649. background-image: url("/assets/img/ico_paging_prev2.svg");
  2650. }
  2651. &.next1 {
  2652. margin: 0 0.31rem 0 0.63rem;
  2653. background-image: url("/assets/img/ico_paging_next1.svg");
  2654. }
  2655. &.next2 {
  2656. background-image: url("/assets/img/ico_paging_next2.svg");
  2657. }
  2658. &.number {
  2659. background-color: #fff;
  2660. border-radius: 100%;
  2661. }
  2662. &.more {
  2663. background-image: url("../img/ico_paging_more.svg");
  2664. }
  2665. &.on {
  2666. background: #007AFF !important;
  2667. .v-btn__content {
  2668. color: #fff;
  2669. font-weight: 700;
  2670. }
  2671. }
  2672. &.v-btn--disabled {
  2673. opacity: 0.4;
  2674. }
  2675. .v-btn__overlay,
  2676. .v-btn__underlay,
  2677. .v-ripple__container {
  2678. display: none !important;
  2679. }
  2680. .v-btn__content {
  2681. color: #5A5A5A;
  2682. font-size: 0.75rem;
  2683. line-height: 0.75rem;
  2684. font-weight: 400;
  2685. }
  2686. }
  2687. .page-go {
  2688. display: flex;
  2689. align-items: center;
  2690. overflow: hidden;
  2691. height: 2rem;
  2692. margin-left: 0.94rem;
  2693. .custom-input.v-text-field.mini {
  2694. height: 2rem;
  2695. min-height: 2rem;
  2696. .v-input__control {
  2697. height: 2rem;
  2698. .v-field__field {
  2699. .v-field__input {
  2700. height: 2rem;
  2701. min-height: 2rem;
  2702. border-right: 0;
  2703. border-radius: 0.63rem 0 0 0.63rem;
  2704. padding: 0 0.56rem;
  2705. color: #5a5a5a;
  2706. font-size: 0.75rem;
  2707. font-weight: 400;
  2708. }
  2709. }
  2710. }
  2711. }
  2712. button {
  2713. height: 2rem;
  2714. width: 2.81rem;
  2715. border-radius: 0 0.63rem 0.63rem 0;
  2716. border: 0.06rem solid #e8e8e8;
  2717. background: #f8f8f8;
  2718. display: flex;
  2719. align-items: center;
  2720. justify-content: center;
  2721. color: #007AFF;
  2722. font-size: 0.75rem;
  2723. font-weight: 600;
  2724. }
  2725. }
  2726. }
  2727. .txt-list {
  2728. li {
  2729. margin-bottom: 0.63rem;
  2730. position: relative;
  2731. padding-left: 1.06rem;
  2732. line-height: 1.13rem;
  2733. color: #444444;
  2734. font-size: 0.81rem;
  2735. font-weight: 400;
  2736. letter-spacing: -0.02rem;
  2737. &:last-of-type {
  2738. margin-bottom: 0;
  2739. }
  2740. &:before {
  2741. position: absolute;
  2742. width: 0.31rem;
  2743. height: 0.31rem;
  2744. left: 0;
  2745. top: 0.38rem;
  2746. background: #C0C0C0;
  2747. border-radius: 100%;
  2748. content: "";
  2749. }
  2750. p {
  2751. margin-top: 0.31rem;
  2752. }
  2753. }
  2754. }
  2755. .input-wrap {
  2756. display: flex;
  2757. gap: 0.63rem;
  2758. width: 100%;
  2759. .custom-input {
  2760. flex: inherit;
  2761. }
  2762. .custom-btn.v-btn.v-btn--density-default {
  2763. height: 2.25rem;
  2764. .v-btn__content {
  2765. font-size: 0.75rem;
  2766. font-weight: 600;
  2767. }
  2768. }
  2769. .txt {
  2770. flex-shrink: 0;
  2771. font-size: 0.75rem;
  2772. font-weight: 400;
  2773. margin-right: 0.38rem;
  2774. height: 2.25rem;
  2775. line-height: 2.25rem;
  2776. &.long {
  2777. margin-left: 0.63rem;
  2778. }
  2779. }
  2780. }
  2781. .chk-wrap {
  2782. display: flex;
  2783. gap: 1.88rem;
  2784. .custom-check {
  2785. flex: none;
  2786. }
  2787. }
  2788. .tbl-wrap {
  2789. .ag-root-wrapper {
  2790. border: 0;
  2791. .ag-header {
  2792. // min-height: 47px;
  2793. // height: 47px;
  2794. border-bottom-color: #EBEBEB;
  2795. border-top: 0.06rem solid #CCCCCC;
  2796. }
  2797. .ag-header-cell-text {
  2798. color: #222222;
  2799. font-size: 0.75rem;
  2800. font-weight: 600;
  2801. display: block;
  2802. width: 100%;
  2803. text-align: center;
  2804. }
  2805. .ag-center-cols-container {
  2806. .ag-row {
  2807. border-bottom: 0.06rem solid #EBEBEB;
  2808. //min-height: 49px;
  2809. .ag-cell {
  2810. color: #222222;
  2811. font-size: 0.75rem;
  2812. font-weight: 400;
  2813. display: block;
  2814. text-align: center;
  2815. border: 0;
  2816. padding-top: 0.63rem;
  2817. padding-bottom: 0.63rem;
  2818. line-height: normal;
  2819. display: flex;
  2820. justify-content: center;
  2821. align-items: center;
  2822. }
  2823. }
  2824. }
  2825. //border-bottom:1px solid #EBEBEB;
  2826. }
  2827. .ag-paging-panel {
  2828. border-top: 0;
  2829. height: auto;
  2830. padding-top: 1.88rem;
  2831. justify-content: center;
  2832. .ag-paging-page-size {
  2833. margin: 0;
  2834. .ag-picker-field {
  2835. .ag-label {
  2836. display: none;
  2837. }
  2838. .ag-picker-field-wrapper {
  2839. border-radius: 0;
  2840. border: 1px solid #E0E0E0;
  2841. height: 36px;
  2842. padding: 0 0 0 0.94rem;
  2843. outline: 0;
  2844. cursor: pointer;
  2845. .ag-picker-field-display {
  2846. color: #444;
  2847. font-size: 0.75rem;
  2848. font-weight: 400;
  2849. }
  2850. .ag-picker-field-icon {
  2851. .ag-icon {
  2852. width: 0.75rem;
  2853. height: 0.75rem;
  2854. margin-right: 0.88rem;
  2855. min-width: 0.75rem;
  2856. background: url("/assets/img/ico_slt.svg") no-repeat center / 100%;
  2857. &:before,
  2858. &:after {
  2859. display: none;
  2860. }
  2861. }
  2862. }
  2863. }
  2864. }
  2865. }
  2866. .ag-paging-row-summary-panel {
  2867. display: none;
  2868. }
  2869. .ag-paging-page-summary-panel {
  2870. margin-right: 0;
  2871. .ag-paging-button {
  2872. margin: 0;
  2873. border: 0;
  2874. outline: 0;
  2875. &.ag-disabled {
  2876. opacity: 0.4;
  2877. }
  2878. .ag-icon {
  2879. width: 40px;
  2880. height: 40px;
  2881. background: no-repeat center / 100%;
  2882. &:before,
  2883. &:after {
  2884. display: none;
  2885. }
  2886. &.ag-icon-first {
  2887. background-image: url("/assets/img/ico_paging_prev2.svg");
  2888. }
  2889. &.ag-icon-previous {
  2890. margin: 0 0.63rem 0 0.31rem;
  2891. background-image: url("/assets/img/ico_paging_prev1.svg");
  2892. }
  2893. &.ag-icon-next {
  2894. margin: 0 0.31rem 0 0.63rem;
  2895. background-image: url("/assets/img/ico_paging_next1.svg");
  2896. }
  2897. &.ag-icon-last {
  2898. background-image: url("/assets/img/ico_paging_next2.svg");
  2899. }
  2900. }
  2901. }
  2902. .ag-paging-description {
  2903. margin: 0;
  2904. font-size: 0.75rem;
  2905. color: #444;
  2906. font-weight: 400;
  2907. }
  2908. }
  2909. }
  2910. }
  2911. /* --- login --- */
  2912. .login-wrap {
  2913. flex-direction: column;
  2914. position: relative;
  2915. display: flex;
  2916. align-items: center;
  2917. justify-content: center;
  2918. width: 100%;
  2919. height: 100%;
  2920. padding: 3.63rem 0;
  2921. background: #F2F6FF;
  2922. .login-box {
  2923. display: flex;
  2924. height: 43.63rem;
  2925. .login-l {
  2926. flex-shrink: 0;
  2927. width: 39.94rem;
  2928. background: #064F9E url("../img/bg_login.svg") no-repeat center / 100%;
  2929. display: flex;
  2930. align-items: center;
  2931. flex-direction: column;
  2932. justify-content: center;
  2933. .login-l-center {
  2934. width: 15.63rem;
  2935. height: 13.13rem;
  2936. background: #fff;
  2937. display: flex;
  2938. align-items: center;
  2939. flex-direction: column;
  2940. justify-content: center;
  2941. .logo {
  2942. font-size: 0;
  2943. display: block;
  2944. height: 1.25rem;
  2945. width: 100%;
  2946. background: url("../img/logo_login.svg") no-repeat center / auto 100%;
  2947. }
  2948. p {
  2949. margin: 0.75rem 0 0;
  2950. text-align: center;
  2951. color: #333;
  2952. letter-spacing: -0.02rem;
  2953. font-size: 1.19rem;
  2954. line-height: 1.19rem;
  2955. }
  2956. }
  2957. }
  2958. .login-r {
  2959. width: 36.25rem;
  2960. background: #fff;
  2961. padding: 0 6.25rem;
  2962. display: flex;
  2963. flex-direction: column;
  2964. justify-content: center;
  2965. .tit-login {
  2966. display: flex;
  2967. justify-content: space-between;
  2968. align-items: center;
  2969. margin-bottom: 1.88rem;
  2970. strong {
  2971. color: #333;
  2972. font-size: 1.38rem;
  2973. font-weight: 700;
  2974. line-height: 1.38rem;
  2975. display: block;
  2976. }
  2977. .lang-set {
  2978. width: 6.00rem;
  2979. .custom-select {
  2980. width: 6.00rem;
  2981. }
  2982. }
  2983. }
  2984. .login-input-wrap {
  2985. width: 100%;
  2986. .txt-field-box {
  2987. &:first-of-type {
  2988. margin-bottom: 0.63rem;
  2989. }
  2990. }
  2991. }
  2992. .login-radio {
  2993. margin-top: 1.25rem;
  2994. }
  2995. .login-otp {
  2996. display: flex;
  2997. gap: 0.63rem;
  2998. margin-top: 1.25rem;
  2999. .txt-field-box {
  3000. width: 100%;
  3001. }
  3002. .btn-blue-bor {
  3003. width: 8.31rem;
  3004. height: 3.63rem;
  3005. flex-shrink: 0;
  3006. }
  3007. }
  3008. .login-btn-wrap {
  3009. margin-top: 1.88rem;
  3010. }
  3011. .login-chk {
  3012. margin: 1.25rem 0 0;
  3013. }
  3014. .login-find {
  3015. display: flex;
  3016. align-items: center;
  3017. margin-top: 2.19rem;
  3018. padding-top: 2.19rem;
  3019. border-top: 0.06rem solid #EEEEEE;
  3020. justify-content: center;
  3021. button {
  3022. display: flex;
  3023. align-items: center;
  3024. font-size: 0.88rem;
  3025. font-weight: 400;
  3026. color: #333;
  3027. &.blue-color {
  3028. &:after {
  3029. display: inline-block;
  3030. background: #E3E3E3;
  3031. width: 0.06rem;
  3032. height: 1rem;
  3033. content: "";
  3034. margin: 0 1rem;
  3035. }
  3036. }
  3037. &.blue-color {
  3038. color: #034EA2;
  3039. }
  3040. }
  3041. }
  3042. }
  3043. }
  3044. .login-footer {
  3045. position: fixed;
  3046. bottom: 0;
  3047. left: 0;
  3048. right: 0;
  3049. width: 100%;
  3050. background: #fff;
  3051. display: flex;
  3052. justify-content: flex-end;
  3053. align-items: center;
  3054. height: 3.63rem;
  3055. padding: 0 1.88rem;
  3056. p {
  3057. color: #333333;
  3058. opacity: 0.8;
  3059. font-size: 0.69rem;
  3060. font-weight: 400;
  3061. }
  3062. .logo {
  3063. margin-left: 4.38rem;
  3064. width: 8.19rem;
  3065. height: 1.44rem;
  3066. background: url("../img/logo_foot.svg") no-repeat center / 100%;
  3067. font-size: 0;
  3068. }
  3069. }
  3070. }
  3071. /* --- content --- */
  3072. .content-tit {
  3073. display: flex;
  3074. align-items: center;
  3075. margin-bottom: 1.25rem;
  3076. h2 {
  3077. color: #333333;
  3078. font-weight: 700;
  3079. font-size: 1.13rem;
  3080. letter-spacing: -0.01rem;
  3081. }
  3082. >span {
  3083. color: #666666;
  3084. font-size: 0.88rem;
  3085. font-weight: 400;
  3086. letter-spacing: -0.01rem;
  3087. display: flex;
  3088. align-items: center;
  3089. &:before {
  3090. content: "";
  3091. margin: 0 0.94rem;
  3092. background: #ddd;
  3093. width: 0.06rem;
  3094. height: 1rem;
  3095. }
  3096. }
  3097. .location {
  3098. margin-left: auto;
  3099. display: flex;
  3100. gap: 0.31rem;
  3101. align-items: center;
  3102. span {
  3103. display: flex;
  3104. align-items: center;
  3105. color: #333;
  3106. font-size: 0.94rem;
  3107. font-weight: 400;
  3108. letter-spacing: -0.01rem;
  3109. line-height: 0.88rem;
  3110. }
  3111. .home {
  3112. &:before {
  3113. content: "";
  3114. margin-right: 0.63rem;
  3115. width: 0.88rem;
  3116. height: 0.88rem;
  3117. background: url("../img/ico_location_home.svg") no-repeat center / 100%;
  3118. }
  3119. }
  3120. .arr {
  3121. width: 0.88rem;
  3122. height: 0.88rem;
  3123. background: url("../img/ico_location_arr.svg") no-repeat center / 100%;
  3124. }
  3125. .now {
  3126. font-weight: 700;
  3127. }
  3128. }
  3129. }
  3130. .search-wrap {
  3131. background: #FAFAFA;
  3132. padding: 20px calc(1vw * (30 / 19.2)) 22px calc(1vw * (30 / 19.2));
  3133. display: flex;
  3134. margin-bottom: 1.56rem;
  3135. .search-line-wrap {
  3136. display: flex;
  3137. gap: 1.06rem;
  3138. flex-direction: column;
  3139. .search-line {
  3140. gap: calc(1vw * (50 / 19.2));
  3141. display: flex;
  3142. .search-box {
  3143. display: flex;
  3144. strong {
  3145. min-height: 2.25rem;
  3146. flex-shrink: 0;
  3147. display: flex;
  3148. color: #333;
  3149. font-size: 0.75rem;
  3150. font-weight: 400;
  3151. align-items: center;
  3152. }
  3153. .search-box-in {
  3154. display: flex;
  3155. .custom-radio {
  3156. height: 1.13rem;
  3157. align-self: center;
  3158. &.picker-terms {
  3159. height: 2.25rem;
  3160. }
  3161. }
  3162. }
  3163. }
  3164. }
  3165. }
  3166. .search-btn {
  3167. flex-shrink: 0;
  3168. width: calc(1vw * (100 / 19.2));
  3169. display: flex;
  3170. margin-left: auto;
  3171. flex-direction: column;
  3172. gap: 1.06rem;
  3173. &.row {
  3174. flex-direction: row;
  3175. width: auto;
  3176. gap: calc(1vw * (10 / 19.2));
  3177. .custom-btn.v-btn.v-btn--density-default {
  3178. width: calc(1vw * (100 / 19.2));
  3179. }
  3180. }
  3181. .custom-btn.v-btn.v-btn--density-default {
  3182. width: 100%;
  3183. }
  3184. }
  3185. }
  3186. .tbl-list-top {
  3187. display: flex;
  3188. align-items: flex-end;
  3189. justify-content: space-between;
  3190. margin-bottom: .8rem;
  3191. .total {
  3192. display: flex;
  3193. flex-direction: column;
  3194. .total-num {
  3195. display: flex;
  3196. align-items: center;
  3197. strong {
  3198. color: #333333;
  3199. font-size: 0.81rem;
  3200. font-weight: 400;
  3201. span {
  3202. color: #007AFF;
  3203. font-weight: 700;
  3204. }
  3205. }
  3206. .total-slt {
  3207. display: flex;
  3208. align-items: center;
  3209. &:before {
  3210. content: "";
  3211. background: #C1C1C1;
  3212. width: 0.06rem;
  3213. height: 0.75rem;
  3214. margin: 0 0.94rem;
  3215. display: inline-block;
  3216. }
  3217. .custom-select.v-input {
  3218. .v-input__control {
  3219. .v-field {
  3220. height: 0.81rem;
  3221. background: transparent;
  3222. .v-field__field {
  3223. height: 0.81rem;
  3224. overflow: visible;
  3225. padding: 0;
  3226. .v-label {
  3227. height: 0.81rem;
  3228. font-size: 0.81rem;
  3229. color: #333;
  3230. font-weight: 400;
  3231. }
  3232. .v-field__input {
  3233. height: 0.81rem;
  3234. min-height: 0.81rem;
  3235. .v-select__selection {
  3236. font-size: 0.81rem;
  3237. color: #333;
  3238. line-height: 0.81rem;
  3239. }
  3240. }
  3241. }
  3242. .v-field__append-inner {
  3243. .v-icon {
  3244. margin-right: 0;
  3245. min-width: 0.75rem;
  3246. background-image: url("../img/ico_slt2.svg")
  3247. }
  3248. }
  3249. .v-field__outline {
  3250. border: 0;
  3251. }
  3252. }
  3253. }
  3254. }
  3255. }
  3256. }
  3257. .total-btn {
  3258. display: flex;
  3259. gap: 0.63rem;
  3260. margin-top: 1.25rem;
  3261. align-items: center;
  3262. .custom-btn.v-btn.v-btn--density-default {
  3263. width: 5.13rem;
  3264. height: 2.25rem;
  3265. &.v-btn--disabled {
  3266. background: #C5CDD4 !important;
  3267. }
  3268. &.btn-reg {
  3269. background: #007AFF;
  3270. .v-btn__content {
  3271. .ico {
  3272. background-image: url("../img/ico_reg.svg");
  3273. }
  3274. }
  3275. }
  3276. &.btn-del {
  3277. background: #8F9FAF;
  3278. .v-btn__content {
  3279. .ico {
  3280. background-image: url("../img/ico_del.svg");
  3281. }
  3282. }
  3283. }
  3284. &.btn-all-end {
  3285. width: 8.38rem;
  3286. background: #2C3744;
  3287. .v-btn__content {
  3288. .ico {
  3289. background-image: url("../img/ico_end.svg");
  3290. }
  3291. }
  3292. }
  3293. &.btn-all-end-red {
  3294. width: 8.75rem;
  3295. border: 1px solid #F49A9A;
  3296. .v-btn__content {
  3297. color: #EC4242;
  3298. font-size: 14px;
  3299. font-weight: 500;
  3300. letter-spacing: -0.28px;
  3301. max-width: 9.75rem !important;
  3302. width: 9.75rem !important;
  3303. ;
  3304. .ico {
  3305. background-image: url(../img/ic_end_red.svg);
  3306. }
  3307. }
  3308. }
  3309. &.btn-excel {
  3310. width: 8.25rem;
  3311. &.v-btn--disabled {
  3312. background-color: #F4F6F9 !important;
  3313. border-color: #DFE4EA !important;
  3314. .ico {
  3315. background-image: url("../img/ico_excel_d.svg") !important;
  3316. }
  3317. .v-btn__content {
  3318. color: #9DAAB8 !important;
  3319. }
  3320. }
  3321. }
  3322. .v-btn__content {
  3323. color: #fff;
  3324. font-size: 0.81rem;
  3325. font-weight: 400;
  3326. letter-spacing: -0.01rem;
  3327. .ico {
  3328. width: 1.13rem;
  3329. height: 1.13rem;
  3330. margin-right: 0.63rem;
  3331. background: no-repeat center / 100%;
  3332. }
  3333. }
  3334. }
  3335. .custom-check.v-input {
  3336. margin-left: 0.94rem;
  3337. }
  3338. }
  3339. }
  3340. .excel-search {
  3341. display: flex;
  3342. gap: 0.63rem;
  3343. .tbl-search {
  3344. position: relative;
  3345. .custom-input.v-text-field {
  3346. .v-input__control {
  3347. .v-field__field {
  3348. .v-field__input {
  3349. padding-right: 2.50rem;
  3350. }
  3351. }
  3352. }
  3353. }
  3354. .ico {
  3355. width: 2.56rem;
  3356. height: 2.25rem;
  3357. top: 0;
  3358. right: 0;
  3359. z-index: 1;
  3360. position: absolute;
  3361. background: url("../img/ico_search.svg") no-repeat 0.63rem center / 1rem;
  3362. }
  3363. }
  3364. }
  3365. }
  3366. .page-list-item {
  3367. color: #222;
  3368. font-size: 0.81rem;
  3369. font-weight: 700;
  3370. .page {
  3371. color: #333;
  3372. font-weight: 400;
  3373. }
  3374. }
  3375. .form-style1 {
  3376. //border-top:0.06rem solid #ccc;
  3377. &.col4 {
  3378. margin-top: -0.63rem;
  3379. table {
  3380. th {
  3381. font-weight: 400;
  3382. &:nth-of-type(even) {
  3383. padding-left: 1.56rem;
  3384. }
  3385. }
  3386. td {
  3387. &:nth-of-type(odd) {
  3388. padding-right: 1.56rem;
  3389. }
  3390. }
  3391. }
  3392. }
  3393. &.row {
  3394. table {
  3395. th {
  3396. height: 3.06rem;
  3397. padding: 0.94rem;
  3398. background: #FAFAFA;
  3399. color: #222222;
  3400. font-size: 0.75rem;
  3401. font-weight: 600;
  3402. border-top: 0.06rem solid #ccc;
  3403. border-bottom: 0.06rem solid #EBEBEB;
  3404. text-align: center;
  3405. vertical-align: middle;
  3406. line-height: normal;
  3407. }
  3408. td {
  3409. padding: 0.63rem;
  3410. text-align: center;
  3411. color: #222222;
  3412. font-size: 0.75rem;
  3413. font-weight: 400;
  3414. border-bottom: 0.06rem solid #EBEBEB;
  3415. .custom-radio {
  3416. display: inline-flex;
  3417. }
  3418. .input-wrap.slt-btn {
  3419. width: 100%;
  3420. justify-content: center;
  3421. .custom-input {
  3422. width: 14.88rem;
  3423. flex: none;
  3424. height: 1.81rem;
  3425. min-height: 1.81rem;
  3426. .v-input__control {
  3427. min-height: 1.81rem;
  3428. height: 1.81rem;
  3429. .v-field {
  3430. height: 1.81rem;
  3431. .v-field__field {
  3432. height: 1.81rem;
  3433. .v-field__input {
  3434. height: 1.81rem;
  3435. min-height: 1.81rem;
  3436. .v-btn__content {
  3437. color: #6E7E8F;
  3438. }
  3439. }
  3440. }
  3441. }
  3442. }
  3443. }
  3444. .custom-btn {
  3445. padding: 0;
  3446. min-width: 2.94rem;
  3447. width: 2.94rem;
  3448. height: 1.81rem;
  3449. min-height: 1.81rem;
  3450. }
  3451. }
  3452. }
  3453. }
  3454. }
  3455. table {
  3456. width: 100%;
  3457. table-layout: fixed;
  3458. th {
  3459. padding: 0.63rem 0;
  3460. text-align: left;
  3461. font-size: 0.75rem;
  3462. color: #222222;
  3463. font-weight: 700;
  3464. vertical-align: middle;
  3465. line-height: 2.25rem;
  3466. .bul {
  3467. color: #007AFF;
  3468. font-weight: 700;
  3469. padding-left: 0.19rem;
  3470. }
  3471. }
  3472. td {
  3473. text-align: left;
  3474. color: #222222;
  3475. font-weight: 400;
  3476. font-size: 0.75rem;
  3477. vertical-align: middle;
  3478. padding: 0.63rem 0;
  3479. }
  3480. }
  3481. }
  3482. .form-style2 {
  3483. table {
  3484. width: 100%;
  3485. border-top: 0.06rem solid #E0E0E0;
  3486. tr {
  3487. th {
  3488. border-bottom: 0.06rem solid #E0E0E0;
  3489. border-right: 0.06rem solid #E0E0E0;
  3490. background: #F4F4F4;
  3491. padding: 0.63rem 0 0.63rem 1.88rem;
  3492. text-align: left;
  3493. color: #222222;
  3494. font-size: 0.75rem;
  3495. font-weight: 600;
  3496. vertical-align: middle;
  3497. .bullet {
  3498. color: #007AFF;
  3499. font-weight: 700;
  3500. }
  3501. }
  3502. td {
  3503. padding: 0.63rem 1.13rem;
  3504. border-bottom: 0.06rem solid #E0E0E0;
  3505. color: #444;
  3506. font-size: 0.75rem;
  3507. font-weight: 400;
  3508. }
  3509. }
  3510. }
  3511. }
  3512. .view-box {
  3513. margin-top: 1.88rem;
  3514. &:first-of-type {
  3515. margin-top: 0;
  3516. }
  3517. .view-box-top {
  3518. background: #F0F6FD;
  3519. border: 0.06rem solid #DBE7F4;
  3520. min-height: 3.19rem;
  3521. padding: 0 1.56rem;
  3522. display: flex;
  3523. align-items: center;
  3524. h3 {
  3525. color: #333333;
  3526. font-size: 0.88rem;
  3527. font-weight: 600;
  3528. letter-spacing: -0.01rem;
  3529. .bul {
  3530. color: #007AFF;
  3531. }
  3532. .txt1 {
  3533. padding-left: 1.25rem;
  3534. font-size: 0.81rem;
  3535. font-weight: 400;
  3536. }
  3537. }
  3538. .connect-state {
  3539. margin: 0 auto 0 1.56rem;
  3540. }
  3541. .custom-btn.v-btn.v-btn--density-default {
  3542. min-height: 1.81rem;
  3543. height: 1.81rem;
  3544. margin-left: 1.25rem;
  3545. }
  3546. }
  3547. .view-box-btm {
  3548. border: 0.06rem solid #EBEBEB;
  3549. border-top: 0;
  3550. background: #fff;
  3551. padding: 0.56rem 1.56rem;
  3552. .form-style1 {
  3553. padding: 0;
  3554. table {
  3555. th {
  3556. font-weight: 400;
  3557. &:nth-of-type(even) {
  3558. padding-left: 2.5rem;
  3559. }
  3560. }
  3561. td {
  3562. &:nth-of-type(odd) {
  3563. padding-right: 2.5rem;
  3564. }
  3565. .custom-radio {
  3566. padding: 0.56rem 0;
  3567. }
  3568. }
  3569. }
  3570. }
  3571. .no-data {
  3572. height: 9.38rem;
  3573. width: 100%;
  3574. display: flex;
  3575. align-items: center;
  3576. justify-content: center;
  3577. flex-direction: column;
  3578. .ico {
  3579. width: 2.25rem;
  3580. height: 2.25rem;
  3581. background: url("../img/ico_no_data.svg") no-repeat center / 100%;
  3582. margin-bottom: 1.25rem;
  3583. }
  3584. p {
  3585. text-align: center;
  3586. color: #444;
  3587. font-size: 0.88rem;
  3588. letter-spacing: -0.01rem;
  3589. font-weight: 400;
  3590. width: 100%;
  3591. &.txt1 {
  3592. margin-bottom: 2.19rem;
  3593. }
  3594. span {
  3595. color: #000;
  3596. display: block;
  3597. }
  3598. }
  3599. }
  3600. }
  3601. }
  3602. .view-btm-btn {
  3603. display: flex;
  3604. justify-content: space-between;
  3605. margin-top: 1.13rem;
  3606. padding-bottom: 1.19rem;
  3607. >div {
  3608. display: flex;
  3609. gap: 0.94rem;
  3610. }
  3611. .custom-btn.v-btn.v-btn--density-default {
  3612. height: 3.13rem;
  3613. width: 8.13rem;
  3614. &.btn-list {
  3615. background: #fff;
  3616. border: 0.06rem solid #C2C2C2;
  3617. .v-btn__content {
  3618. color: #48525C;
  3619. .ico {
  3620. background-image: url("../img/ico_view_list.svg");
  3621. }
  3622. }
  3623. }
  3624. &.btn-del {
  3625. background: #fff;
  3626. border: 0.06rem solid #FFBCBC;
  3627. .v-btn__content {
  3628. color: #EA5555;
  3629. .ico {
  3630. background-image: url("../img/ico_view_del.svg");
  3631. }
  3632. }
  3633. }
  3634. .v-btn__content {
  3635. font-size: 0.81rem;
  3636. font-weight: 600;
  3637. .ico {
  3638. width: 0.88rem;
  3639. height: 0.88rem;
  3640. margin-right: 2.5rem;
  3641. background: no-repeat center / 100%;
  3642. }
  3643. }
  3644. }
  3645. }
  3646. .list-flex {
  3647. display: flex;
  3648. gap: calc(1vw * (40 / 19.2));
  3649. .list-flex-l {
  3650. max-width: calc(1vw * (350 / 19.2));
  3651. width: calc(1vw * (350 / 19.2));
  3652. height: calc(1vh * (823 / 10.8));
  3653. min-height: 45.6rem;
  3654. border: 0.31rem solid #F7F8F9;
  3655. display: flex;
  3656. flex-direction: column;
  3657. .topology-top {
  3658. background: #F7F8F9;
  3659. min-height: 3.44rem;
  3660. display: flex;
  3661. align-items: center;
  3662. padding: 0.63rem 1.25rem 0.94rem 1.25rem;
  3663. flex-shrink: 0;
  3664. strong {
  3665. color: #333333;
  3666. font-size: 0.81rem;
  3667. font-weight: 700;
  3668. }
  3669. .btn-ne-del {
  3670. font-size: 0;
  3671. margin-left: auto;
  3672. display: flex;
  3673. align-items: center;
  3674. justify-content: center;
  3675. border: 0.05rem solid #FFBEBF;
  3676. width: 1.88rem;
  3677. height: 1.88rem;
  3678. border-radius: 0.5rem;
  3679. &:disabled {
  3680. border-color: #4C576B;
  3681. cursor: default;
  3682. pointer-events: none;
  3683. &:before {
  3684. background-image: url("../img/ico_ne_del_d.svg");
  3685. }
  3686. }
  3687. &:before {
  3688. content: "";
  3689. width: 0.75rem;
  3690. height: 0.75rem;
  3691. background: url("../img/ico_ne_del.svg") no-repeat center / 100%;
  3692. display: inline-block;
  3693. }
  3694. }
  3695. }
  3696. .topology-btm {
  3697. height: 100%;
  3698. max-height: calc(100% - 3.44rem);
  3699. padding: 1.56rem 0.63rem 1.56rem 1.25rem;
  3700. .no-data {
  3701. height: 100%;
  3702. width: 100%;
  3703. display: flex;
  3704. align-items: center;
  3705. justify-content: center;
  3706. flex-direction: column;
  3707. .ico {
  3708. width: 2.25rem;
  3709. height: 2.25rem;
  3710. background: url("../img/ico_no_data.svg") no-repeat center / 100%;
  3711. margin-bottom: 1.25rem;
  3712. }
  3713. p {
  3714. text-align: center;
  3715. color: #444;
  3716. font-size: 0.88rem;
  3717. letter-spacing: -0.01rem;
  3718. font-weight: 400;
  3719. width: 100%;
  3720. &.txt1 {
  3721. margin-bottom: 2.19rem;
  3722. }
  3723. span {
  3724. color: #000;
  3725. display: block;
  3726. }
  3727. }
  3728. }
  3729. }
  3730. }
  3731. .list-flex-r {
  3732. width: 100%;
  3733. max-width: calc(100% - (1vw * (350 / 19.2)));
  3734. }
  3735. }
  3736. .tree-area {
  3737. height: 100%;
  3738. overflow-y: scroll;
  3739. padding-right: 0.44rem;
  3740. .depth-item-tit {
  3741. display: flex;
  3742. align-items: center;
  3743. gap: 0.63rem;
  3744. &.down {
  3745. .arr {
  3746. transform: rotate(180deg);
  3747. }
  3748. }
  3749. .custom-input.v-text-field.mini {
  3750. flex: none;
  3751. min-height: 1.88rem;
  3752. width: calc(100% - 4.63rem);
  3753. .v-input__control {
  3754. height: 1.88rem;
  3755. .v-field__field {
  3756. .v-field__input {
  3757. min-height: 1.88rem;
  3758. height: 1.88rem;
  3759. padding: 0 0.56rem;
  3760. }
  3761. }
  3762. }
  3763. }
  3764. .arr {
  3765. display: flex;
  3766. align-items: center;
  3767. justify-content: center;
  3768. width: 0.75rem;
  3769. height: 0.75rem;
  3770. flex-shrink: 0;
  3771. background: url("../img/ico_tree_arr.svg") no-repeat center / 100%;
  3772. &.nor {
  3773. background: none;
  3774. &:before {
  3775. content: "-";
  3776. display: block;
  3777. font-weight: 600;
  3778. color: #222;
  3779. font-size: 0.75rem;
  3780. }
  3781. }
  3782. }
  3783. .ico {
  3784. width: 1rem;
  3785. height: 1rem;
  3786. flex-shrink: 0;
  3787. background: no-repeat center / 100%;
  3788. }
  3789. .custom-check.v-input {
  3790. .v-input__control {
  3791. display: block;
  3792. .v-selection-control {
  3793. .v-label {
  3794. font-size: 0.75rem;
  3795. margin-left: 0.63rem;
  3796. line-height: 1.06rem;
  3797. white-space: nowrap;
  3798. text-overflow: ellipsis;
  3799. overflow: hidden;
  3800. display: block;
  3801. }
  3802. }
  3803. }
  3804. }
  3805. .btn-tree {
  3806. width: 1rem;
  3807. height: 1rem;
  3808. flex-shrink: 0;
  3809. background: no-repeat center / 100%;
  3810. &.btn-save {
  3811. background-image: url("../img/ico_tree_save.svg");
  3812. }
  3813. }
  3814. }
  3815. .tree-depth1 {
  3816. margin-bottom: 1.25rem;
  3817. &:last-of-type {
  3818. margin-bottom: 0;
  3819. }
  3820. ul {
  3821. display: flex;
  3822. flex-direction: column;
  3823. gap: 0.63rem;
  3824. }
  3825. .depth1-item {
  3826. .depth1-item-tit {
  3827. .ico {
  3828. background-image: url("../img/ico_tree1.svg");
  3829. }
  3830. strong {
  3831. color: #222;
  3832. line-height: 1rem;
  3833. font-weight: 600;
  3834. font-size: 0.75rem;
  3835. text-align: left;
  3836. width: 100%;
  3837. white-space: nowrap;
  3838. text-overflow: ellipsis;
  3839. overflow: hidden;
  3840. }
  3841. .btn-add {
  3842. margin-left: auto;
  3843. font-size: 0;
  3844. background-image: url("../img/ico_tree_add.svg");
  3845. }
  3846. }
  3847. }
  3848. }
  3849. .tree-depth2 {
  3850. padding: 1.25rem 0 0 0.94rem;
  3851. ul {
  3852. display: flex;
  3853. flex-direction: column;
  3854. gap: 0.94rem;
  3855. }
  3856. .depth2-item {
  3857. .depth2-item-tit {
  3858. .ico {
  3859. background-image: url("../img/ico_tree2.svg");
  3860. }
  3861. .btn-ne-add {
  3862. width: 2.19rem;
  3863. height: 1rem;
  3864. display: flex;
  3865. flex-shrink: 0;
  3866. margin-left: auto;
  3867. border-radius: 0.19rem;
  3868. background: #00c2ff;
  3869. color: #fff;
  3870. align-items: center;
  3871. justify-content: center;
  3872. font-size: 0.56rem;
  3873. font-weight: 700;
  3874. line-height: 0.63rem;
  3875. .plus {
  3876. width: 0.56rem;
  3877. height: 0.56rem;
  3878. margin-right: 0.19rem;
  3879. background: url("../img/ico_ne_add.svg") no-repeat center / 100%;
  3880. }
  3881. }
  3882. .btn-pos {
  3883. background-image: url("../img/ico_pos.svg");
  3884. }
  3885. }
  3886. }
  3887. }
  3888. .tree-depth3 {
  3889. padding: 1.25rem 0 0.63rem 22px;
  3890. &:has(ul:empty) {
  3891. padding: 0;
  3892. }
  3893. .depth3-item {
  3894. .depth3-item-tit {
  3895. .ico {
  3896. background-image: url("../img/ico_tree3.svg");
  3897. &.core {
  3898. background-image: url("../img/ico_tree3_core.svg");
  3899. }
  3900. &.ran {
  3901. background-image: url("../img/ico_tree3_ran.svg");
  3902. }
  3903. }
  3904. .btn-mod {
  3905. background-image: url("../img/ico_mod.svg");
  3906. }
  3907. }
  3908. }
  3909. }
  3910. }
  3911. .tbl-col-wrap {
  3912. display: flex;
  3913. margin-bottom: 4rem;
  3914. .tbl-col-fix {
  3915. width: calc(1vw * (340 / 19.2));
  3916. table {
  3917. th {
  3918. border-right: 0.06rem solid #EBEBEB;
  3919. height: 6.12rem;
  3920. }
  3921. td {
  3922. height: 3.06rem;
  3923. background: #FAFAFA;
  3924. color: #222222;
  3925. font-size: 0.75rem;
  3926. font-weight: 600;
  3927. vertical-align: middle;
  3928. text-align: center;
  3929. border-bottom: 0.06rem solid #EBEBEB;
  3930. border-right: 0.06rem solid #EBEBEB;
  3931. }
  3932. }
  3933. }
  3934. .tbl-col-scrl {
  3935. width: calc(100% - (1vw * (340 / 19.2)));
  3936. overflow-x: auto;
  3937. padding-bottom: 0.44rem;
  3938. &::-webkit-scrollbar {
  3939. height: 0.5rem;
  3940. border-radius: 0.5rem;
  3941. }
  3942. &::-webkit-scrollbar-track {
  3943. background: #F8F8F8;
  3944. border-radius: 0.5rem;
  3945. }
  3946. &::-webkit-scrollbar-thumb {
  3947. border-radius: 0.5rem;
  3948. background: #D9D9D9;
  3949. }
  3950. .scrl-in {
  3951. white-space: nowrap;
  3952. .tbl-box {
  3953. display: inline-block;
  3954. vertical-align: top;
  3955. border-right: 0.06rem solid #EBEBEB;
  3956. &:last-of-type {
  3957. border-right: 0;
  3958. }
  3959. }
  3960. }
  3961. }
  3962. table {
  3963. width: 100%;
  3964. border-top: 0.06rem solid #CCCCCC;
  3965. th {
  3966. height: 3.06rem;
  3967. color: #222222;
  3968. font-size: 0.75rem;
  3969. font-weight: 600;
  3970. vertical-align: middle;
  3971. background: #FAFAFA;
  3972. box-shadow: none;
  3973. box-shadow: inset 0 -0.06rem 0 #EBEBEB;
  3974. padding: calc(1vh * (15 / 10.8)) 10px calc(1vh * (14 / 10.8));
  3975. }
  3976. td {
  3977. padding: 0.63rem 0.63rem 0.56rem 0.63rem;
  3978. color: #222222;
  3979. text-align: center;
  3980. font-size: 0.75rem;
  3981. font-weight: 400;
  3982. vertical-align: middle;
  3983. text-align: center;
  3984. height: 3.06rem;
  3985. width: calc(1vw * (138 / 19.2));
  3986. border-bottom: 0.06rem solid #EBEBEB !important;
  3987. }
  3988. }
  3989. }
  3990. .menu-flex-wrap {
  3991. display: flex;
  3992. gap: calc(1vw * (40 / 19.2));
  3993. .system-menu {
  3994. width: calc(1vw * (350 / 19.2));
  3995. border: 0.31rem solid #F7F8F9;
  3996. flex-shrink: 0;
  3997. .system-menu-tit {
  3998. padding: 0 1.56rem;
  3999. background: #F7F8F9;
  4000. color: #333;
  4001. font-weight: 700;
  4002. font-size: 0.81rem;
  4003. height: 3.44rem;
  4004. display: flex;
  4005. align-items: center;
  4006. }
  4007. .system-menu-in {
  4008. overflow-y: scroll;
  4009. height: calc(1vh * (768 / 10.8));
  4010. display: flex;
  4011. margin-top: -0.31rem;
  4012. flex-direction: column;
  4013. padding: 1.88rem 1.56rem;
  4014. gap: 1.25rem;
  4015. .system-box {
  4016. &.on {
  4017. .system-box-sub {
  4018. display: block;
  4019. }
  4020. }
  4021. .system-box-tit {
  4022. display: flex;
  4023. align-items: center;
  4024. gap: 0.94rem;
  4025. font-weight: 600;
  4026. cursor: pointer;
  4027. color: #000;
  4028. font-size: 0.81rem;
  4029. button {
  4030. width: 1.13rem;
  4031. height: 1.13rem;
  4032. background: url("../img/ico_menu_plus.svg") no-repeat center / 100%;
  4033. cursor: pointer;
  4034. &.open {
  4035. background-image: url("../img/ico_menu_minus.svg");
  4036. }
  4037. }
  4038. }
  4039. .system-box-sub {
  4040. padding: 1.25rem 0 1.25rem 1.25rem;
  4041. display: none;
  4042. ul {
  4043. display: flex;
  4044. flex-direction: column;
  4045. gap: 0.94rem;
  4046. li {
  4047. gap: 0.63rem;
  4048. display: flex;
  4049. align-items: center;
  4050. cursor: pointer;
  4051. font-size: 0.75rem;
  4052. font-weight: 400;
  4053. color: #333;
  4054. &.active {
  4055. color: #007AFF;
  4056. }
  4057. &:before {
  4058. width: 0.75rem;
  4059. height: 0.75rem;
  4060. background: url("../img/ico_menu_arr.svg") no-repeat center / 100%;
  4061. content: "";
  4062. }
  4063. }
  4064. }
  4065. }
  4066. }
  4067. }
  4068. }
  4069. .menu-info {
  4070. border: 0.31rem solid #F7F8F9;
  4071. width: 100%;
  4072. .info-tit {
  4073. padding: 0 1.56rem;
  4074. background: #F7F8F9;
  4075. color: #333;
  4076. font-weight: 700;
  4077. font-size: 0.81rem;
  4078. height: 3.44rem;
  4079. display: flex;
  4080. align-items: center;
  4081. }
  4082. .menu-info-view {
  4083. height: calc(1vh * (768 / 10.8));
  4084. padding: 1.88rem 1.56rem 1.56rem 1.56rem;
  4085. margin-top: -0.31rem;
  4086. .info-tbl-tit {
  4087. display: flex;
  4088. align-items: center;
  4089. margin-bottom: 1.56rem;
  4090. .ico {
  4091. width: 1.25rem;
  4092. height: 1.25rem;
  4093. background: url("../img/ico_menu.svg") no-repeat center / 100%;
  4094. margin-right: 0.63rem;
  4095. }
  4096. .menu {
  4097. color: #333;
  4098. font-size: 1rem;
  4099. font-weight: 400;
  4100. letter-spacing: -0.01rem;
  4101. }
  4102. .arr {
  4103. margin: 0 0.31rem;
  4104. width: 0.94rem;
  4105. height: 0.94rem;
  4106. background: url("../img/ico_menu_arr2.svg") no-repeat center / 100%;
  4107. }
  4108. .now {
  4109. color: #111111;
  4110. font-size: 1rem;
  4111. font-weight: 700;
  4112. letter-spacing: -0.01rem;
  4113. }
  4114. }
  4115. .form-style2 {
  4116. table {
  4117. tr {
  4118. th {
  4119. padding: 1.25rem 0 1.25rem 1.88rem;
  4120. }
  4121. td {
  4122. padding: 1.25rem 1.38rem;
  4123. }
  4124. }
  4125. }
  4126. }
  4127. .input-wrap {
  4128. gap: 1.88rem;
  4129. .custom-check {
  4130. flex: none;
  4131. }
  4132. }
  4133. .no-data {
  4134. display: flex;
  4135. align-items: center;
  4136. justify-content: center;
  4137. flex-direction: column;
  4138. height: 100%;
  4139. .ico {
  4140. width: 2.25rem;
  4141. height: 2.25rem;
  4142. background: url("../img/ico_menu_nodata.svg") no-repeat center / 100%;
  4143. }
  4144. p {
  4145. text-align: center;
  4146. margin-top: 1.56rem;
  4147. color: #444;
  4148. font-size: 0.94rem;
  4149. letter-spacing: -0.01rem;
  4150. font-weight: 400;
  4151. }
  4152. }
  4153. }
  4154. .menu-info-r {
  4155. display: flex;
  4156. justify-content: flex-end;
  4157. gap: 0.94rem;
  4158. margin-top: 3.13rem;
  4159. .custom-btn.v-btn.v-btn--density-default {
  4160. height: 3.13rem;
  4161. width: 8.13rem;
  4162. &.btn-list {
  4163. background: #F8F8F8;
  4164. border: 0.06rem solid #E9E9E9;
  4165. .v-btn__content {
  4166. color: #6E7E8F;
  4167. .ico {
  4168. background-image: url("../img/ico_view_list.svg");
  4169. }
  4170. }
  4171. }
  4172. &.btn-del {
  4173. background: #FFF4F4;
  4174. border: 0.06rem solid #FFE2E2;
  4175. .v-btn__content {
  4176. color: #EA5555;
  4177. .ico {
  4178. background-image: url("../img/ico_view_del.svg");
  4179. }
  4180. }
  4181. }
  4182. .v-btn__content {
  4183. font-size: 0.81rem;
  4184. font-weight: 600;
  4185. .ico {
  4186. width: 0.88rem;
  4187. height: 0.88rem;
  4188. margin-right: 2.5rem;
  4189. background: no-repeat center / 100%;
  4190. }
  4191. }
  4192. }
  4193. }
  4194. }
  4195. }
  4196. .perfor-tab {
  4197. width: 7.81rem;
  4198. margin-right: 2.5rem;
  4199. .v-radio-group {
  4200. .v-input__control {
  4201. .v-selection-control-group {
  4202. gap: 1.06rem;
  4203. }
  4204. .v-radio {
  4205. &.v-selection-control--dirty {
  4206. .v-label {
  4207. background: #007AFF;
  4208. }
  4209. }
  4210. .v-selection-control__wrapper {
  4211. display: none;
  4212. }
  4213. .v-label {
  4214. width: 100%;
  4215. height: 2.25rem;
  4216. background: #C5CDD4;
  4217. justify-content: center;
  4218. align-items: center;
  4219. opacity: 1;
  4220. font-size: 0.75rem;
  4221. font-weight: 600;
  4222. color: #fff;
  4223. .ico {
  4224. width: 1.13rem;
  4225. height: 1.13rem;
  4226. margin-right: 0.75rem;
  4227. background: no-repeat center / 100%;
  4228. &.ico1 {
  4229. background-image: url("../img/ico_performance1.svg");
  4230. }
  4231. &.ico2 {
  4232. background-image: url("../img/ico_performance2.svg");
  4233. }
  4234. }
  4235. }
  4236. }
  4237. }
  4238. }
  4239. }
  4240. .chart-total {
  4241. text-align: left;
  4242. margin: 2.5rem 0 1.69rem;
  4243. display: flex;
  4244. p {
  4245. color: #333;
  4246. font-size: 0.88rem;
  4247. font-weight: 600;
  4248. flex-shrink: 0;
  4249. span {
  4250. color: #111;
  4251. font-weight: 700;
  4252. }
  4253. }
  4254. .legend-area {
  4255. display: flex;
  4256. justify-content: flex-end;
  4257. width: 100%;
  4258. gap: 1.88rem;
  4259. margin-left: auto;
  4260. .legend-box {
  4261. display: flex;
  4262. align-items: center;
  4263. gap: 0.75rem;
  4264. font-size: 0.81rem;
  4265. font-weight: 400;
  4266. color: #333;
  4267. .cir {
  4268. width: 0.75rem;
  4269. border-radius: 100%;
  4270. height: 0.75rem;
  4271. &.cir1 {
  4272. background: #007AFF;
  4273. }
  4274. &.cir2 {
  4275. background: #7897B8;
  4276. }
  4277. &.cir3 {
  4278. background: #FF9900;
  4279. }
  4280. }
  4281. }
  4282. }
  4283. }
  4284. .chart-wrap {
  4285. position: relative;
  4286. display: flex;
  4287. overflow: hidden;
  4288. height: 33.13rem;
  4289. border: 0.06rem solid #EBEBEB;
  4290. padding: 1.88rem;
  4291. &:after {
  4292. width: 1.88rem;
  4293. background: #fff;
  4294. top: 0;
  4295. right: 0;
  4296. bottom: 0;
  4297. content: "";
  4298. position: absolute;
  4299. }
  4300. .chart-wrap-fix {
  4301. position: absolute;
  4302. flex-shrink: 0;
  4303. left: 1.88rem;
  4304. top: 1.88rem;
  4305. background: #fff;
  4306. z-index: 0;
  4307. height: 29.38rem;
  4308. canvas {
  4309. height: 100%;
  4310. }
  4311. }
  4312. .scrl-chart {
  4313. overflow-x: scroll;
  4314. padding-bottom: 1.25rem;
  4315. overflow-y: hidden;
  4316. z-index: 1;
  4317. max-width: calc(100vw - 3.75rem);
  4318. margin-left: 1.25rem;
  4319. position: relative;
  4320. height: 29.38rem;
  4321. &::-webkit-scrollbar {
  4322. height: 0.5rem;
  4323. border-radius: 0.5rem;
  4324. }
  4325. &::-webkit-scrollbar-track {
  4326. background: #F8F8F8;
  4327. border-radius: 0.5rem;
  4328. }
  4329. &::-webkit-scrollbar-thumb {
  4330. border-radius: 0.5rem;
  4331. background: #D9D9D9;
  4332. }
  4333. .scrl-in {
  4334. height: 29.38rem;
  4335. }
  4336. canvas {
  4337. height: 100%;
  4338. }
  4339. }
  4340. }
  4341. .help-flex {
  4342. display: flex;
  4343. gap: 30px;
  4344. .help-list {
  4345. width: 300px;
  4346. ul {
  4347. display: flex;
  4348. flex-direction: column;
  4349. gap: 8px;
  4350. li {
  4351. border: 1px solid #ccc;
  4352. padding: 10px;
  4353. font-size: 14px;
  4354. font-weight: 400;
  4355. cursor: pointer;
  4356. &.active {
  4357. background: #ccc;
  4358. color: #fff;
  4359. font-weight: 700;
  4360. }
  4361. }
  4362. }
  4363. }
  4364. .help-cont {
  4365. width: calc(100% - 330px);
  4366. border: 1px solid #ccc;
  4367. .help-cont-tit {
  4368. display: block;
  4369. color: #000;
  4370. font-size: 16px;
  4371. font-weight: 700;
  4372. padding: 15px 24px;
  4373. border-bottom: 1px solid #ccc;
  4374. }
  4375. .help-acco {
  4376. .help-panel {
  4377. border-bottom: 1px solid #ccc;
  4378. &:after {
  4379. display: none;
  4380. }
  4381. &.v-expansion-panel--active {
  4382. .v-expansion-panel-title {
  4383. background: #f4f4f4;
  4384. }
  4385. }
  4386. .v-expansion-panel__shadow {
  4387. display: none;
  4388. }
  4389. .v-expansion-panel-title {
  4390. font-weight: 700;
  4391. color: #000;
  4392. .v-expansion-panel-title__overlay {
  4393. display: none;
  4394. }
  4395. }
  4396. .v-expansion-panel-text {
  4397. border-top: 1px solid #ccc;
  4398. .v-expansion-panel-text__wrapper {
  4399. overflow-y: auto;
  4400. padding: 16px 24px;
  4401. background: #fcfcfc;
  4402. .panel-cont {
  4403. padding: 10px 0;
  4404. height: 100%;
  4405. min-height: 250px;
  4406. max-height: 250px;
  4407. strong {
  4408. display: block;
  4409. text-align: left;
  4410. margin-bottom: 10px;
  4411. font-weight: 600;
  4412. font-size: 16px;
  4413. }
  4414. p {
  4415. text-align: left;
  4416. font-weight: 400;
  4417. font-size: 14px;
  4418. }
  4419. }
  4420. }
  4421. }
  4422. }
  4423. }
  4424. }
  4425. }
  4426. .menu-chk {
  4427. display: flex;
  4428. flex-direction: column;
  4429. gap: 10px;
  4430. }
  4431. .dashboard {
  4432. display: flex;
  4433. .dashboard-l {
  4434. width: 50%;
  4435. border-right: 1px solid rgba(224, 224, 224, 0.5);
  4436. .dashboard-core {
  4437. padding: 24px;
  4438. .core-box-wrap {
  4439. display: flex;
  4440. gap: 3px;
  4441. height: 380px;
  4442. .core-box {
  4443. width: 100%;
  4444. height: 380px;
  4445. background: rgba(51, 51, 51, 0.04);
  4446. display: flex;
  4447. flex-direction: column;
  4448. align-items: center;
  4449. justify-content: center;
  4450. .name {
  4451. display: block;
  4452. text-align: center;
  4453. color: #333333;
  4454. font-size: 40px;
  4455. font-weight: 700;
  4456. line-height: 24px;
  4457. margin-bottom: 15px;
  4458. }
  4459. .state {
  4460. text-align: center;
  4461. display: block;
  4462. font-size: 12px;
  4463. line-height: 24px;
  4464. color: #333;
  4465. font-weight: 400;
  4466. margin-bottom: 19px;
  4467. }
  4468. button {
  4469. width: 100px;
  4470. height: 30px;
  4471. display: flex;
  4472. align-items: center;
  4473. justify-content: center;
  4474. background: rgba(51, 51, 51, 0.35);
  4475. color: #fff;
  4476. font-size: 14px;
  4477. font-weight: 700;
  4478. margin-bottom: 33px;
  4479. }
  4480. .core-percent {
  4481. display: inline-block;
  4482. ul {
  4483. display: flex;
  4484. flex-direction: column;
  4485. gap: 7px;
  4486. li {
  4487. display: flex;
  4488. align-items: center;
  4489. gap: 3px;
  4490. strong {
  4491. width: 60px;
  4492. line-height: 24px;
  4493. color: #333;
  4494. font-size: 14px;
  4495. font-weight: 400;
  4496. text-align: left;
  4497. flex-shrink: 0;
  4498. }
  4499. p {
  4500. flex-shrink: 0;
  4501. width: 60px;
  4502. line-height: 24px;
  4503. color: #333;
  4504. font-size: 14px;
  4505. font-weight: 400;
  4506. text-align: left;
  4507. }
  4508. .cir {
  4509. width: 18px;
  4510. height: 18px;
  4511. border-radius: 100%;
  4512. &.blue {
  4513. background: #1EAEFF;
  4514. }
  4515. &.yellow {
  4516. background: #FFD643;
  4517. }
  4518. &.red {
  4519. background: #FF2426;
  4520. }
  4521. }
  4522. }
  4523. }
  4524. }
  4525. }
  4526. }
  4527. }
  4528. .dashboard-join {
  4529. padding: 24px;
  4530. border-top: 1px solid rgba(224, 224, 224, 0.5);
  4531. }
  4532. }
  4533. .dashboard-r {
  4534. width: 50%;
  4535. }
  4536. .dashboard-tit {
  4537. display: flex;
  4538. align-items: center;
  4539. margin-bottom: 14px;
  4540. strong {
  4541. color: #333;
  4542. font-weight: 700;
  4543. font-size: 18px;
  4544. }
  4545. .issue {
  4546. width: 100px;
  4547. height: 32px;
  4548. background: rgba(51, 51, 51, 0.35);
  4549. color: #fff;
  4550. font-size: 14px;
  4551. font-weight: 700;
  4552. display: flex;
  4553. align-items: center;
  4554. justify-content: center;
  4555. }
  4556. .core-tab {
  4557. margin-left: auto;
  4558. display: flex;
  4559. gap: 4px;
  4560. button {
  4561. width: 100px;
  4562. height: 32px;
  4563. display: flex;
  4564. color: #fff;
  4565. font-size: 14px;
  4566. font-weight: 700;
  4567. align-items: center;
  4568. justify-content: center;
  4569. background: rgba(51, 51, 51, 0.15);
  4570. cursor: pointer;
  4571. &.active {
  4572. background: rgba(51, 51, 51, 0.35);
  4573. }
  4574. }
  4575. }
  4576. .join-type {
  4577. margin-left: auto;
  4578. display: flex;
  4579. gap: 12px;
  4580. align-items: center;
  4581. width: 20px;
  4582. height: 20px;
  4583. background: no-repeat center / 100%;
  4584. button {
  4585. &.type1 {
  4586. background-image: url("");
  4587. &.active {
  4588. background-image: url("");
  4589. }
  4590. }
  4591. &.type2 {
  4592. background-image: url("");
  4593. &.active {
  4594. background-image: url("");
  4595. }
  4596. }
  4597. }
  4598. }
  4599. }
  4600. //.dashboard-r {}
  4601. }
  4602. .tab-style {
  4603. margin-top: 2.81rem;
  4604. .tab-style-h {
  4605. border-bottom: 1px solid #064F9E;
  4606. display: flex;
  4607. button {
  4608. position: relative;
  4609. width: 11.88rem;
  4610. height: 3.69rem;
  4611. border: 0.06rem solid #E1E1E1;
  4612. border-bottom: 0;
  4613. background: #fff;
  4614. display: flex;
  4615. align-items: center;
  4616. justify-content: center;
  4617. color: #888888;
  4618. font-size: 0.81rem;
  4619. font-weight: 400;
  4620. margin-right: -0.06rem;
  4621. &.active {
  4622. border-color: #064F9E;
  4623. margin: 0 0 -0.09rem 0;
  4624. color: #064F9E;
  4625. font-weight: 700;
  4626. height: 3.75rem;
  4627. z-index: 2;
  4628. }
  4629. }
  4630. }
  4631. .tab-style-c {
  4632. padding-top: 1.88rem;
  4633. }
  4634. }
  4635. .pop-radio {
  4636. margin-bottom: 1.56rem;
  4637. }
  4638. .mode-radio {
  4639. padding: 0.94rem 0.75rem;
  4640. .v-selection-control-group {
  4641. align-items: flex-start;
  4642. gap: 5rem;
  4643. .v-radio {
  4644. align-items: flex-start;
  4645. .v-selection-control__wrapper {
  4646. margin-top: 0.63rem;
  4647. }
  4648. .v-label {
  4649. flex-direction: column;
  4650. align-items: flex-start;
  4651. overflow: visible;
  4652. .radio-tit {
  4653. display: flex;
  4654. strong {
  4655. font-weight: 400;
  4656. font-size: 0.75rem;
  4657. display: block;
  4658. line-height: 2.25rem;
  4659. }
  4660. .term {
  4661. display: flex;
  4662. .term-tit {
  4663. color: #333333;
  4664. font-size: 0.75rem;
  4665. font-weight: 400;
  4666. display: flex;
  4667. margin-right: 1.25rem;
  4668. align-items: center;
  4669. &:before {
  4670. width: 0.06rem;
  4671. height: 0.88rem;
  4672. background: #C6C6C6;
  4673. content: "";
  4674. margin: 0 0.94rem;
  4675. }
  4676. }
  4677. }
  4678. }
  4679. .mode-img {
  4680. margin: 1.56rem 0 0 -1.81rem;
  4681. width: 23.25rem;
  4682. height: 13.13rem;
  4683. background: #F4F4F4;
  4684. img {
  4685. width: 100%;
  4686. height: 100%;
  4687. }
  4688. }
  4689. }
  4690. }
  4691. }
  4692. }
  4693. .editor {
  4694. height: 300px;
  4695. .ql-container {
  4696. height: calc(100% - 42px)
  4697. }
  4698. }
  4699. /* --- darkmode ---*/
  4700. body:has(.darkmode) {
  4701. background: #101011;
  4702. }
  4703. .darkmode {
  4704. .custom-btn.v-btn.v-btn--density-default {
  4705. &.btn-white {
  4706. border-color: #272B30;
  4707. background-color: #1B1E20;
  4708. .v-btn__content {
  4709. color: #606770;
  4710. }
  4711. }
  4712. &.btn-gray {
  4713. background: #272B30;
  4714. border-color: #272B30;
  4715. .v-btn__content {
  4716. color: #fff;
  4717. }
  4718. }
  4719. }
  4720. .custom-select.v-input {
  4721. .v-input__control {
  4722. .v-field {
  4723. .v-field__outline {
  4724. border-color: #272B30;
  4725. }
  4726. .v-field__field {
  4727. .v-field__input {
  4728. .v-select__selection {
  4729. color: #fff;
  4730. }
  4731. }
  4732. .v-label {
  4733. color: #fff;
  4734. }
  4735. }
  4736. }
  4737. }
  4738. }
  4739. .custom-input.v-text-field {
  4740. .v-input__control {
  4741. .v-field__field {
  4742. .v-field__input {
  4743. border-color: #272B30;
  4744. background: #1B1E20;
  4745. color: #fff;
  4746. }
  4747. }
  4748. .v-field__append-inner {
  4749. .v-icon {
  4750. &:before {
  4751. color: #fff;
  4752. }
  4753. }
  4754. }
  4755. }
  4756. }
  4757. .custom-table.v-table {
  4758. background: #1A1D1F;
  4759. &:before {
  4760. background: #2C2F31;
  4761. }
  4762. &:after {
  4763. background: #2C2F31;
  4764. }
  4765. .v-table__wrapper {
  4766. table {
  4767. thead {
  4768. tr {
  4769. th {
  4770. background: #272B30 !important;
  4771. border-color: #272B30;
  4772. .th-item {
  4773. .ico-sort-area {
  4774. .v-icon {
  4775. background-color: #272B30;
  4776. }
  4777. }
  4778. }
  4779. }
  4780. }
  4781. }
  4782. tbody {
  4783. tr {
  4784. td {
  4785. color: #fff;
  4786. border-color: #2C2F31 !important;
  4787. }
  4788. }
  4789. }
  4790. }
  4791. }
  4792. }
  4793. .custom-radio.v-input {
  4794. &.picker-terms {
  4795. .v-input__control {
  4796. .v-selection-control-group {
  4797. .v-radio {
  4798. &.v-selection-control--dirty {
  4799. .v-label {
  4800. color: #fff;
  4801. border-color: #272B30;
  4802. background: #272B30;
  4803. }
  4804. }
  4805. .v-label {
  4806. border-color: #272B30;
  4807. background: #1B1E20;
  4808. color: #9F9FA0;
  4809. }
  4810. }
  4811. }
  4812. }
  4813. }
  4814. }
  4815. .calendar-wrap {
  4816. .text {
  4817. color: #fff;
  4818. }
  4819. }
  4820. .calendar {
  4821. .dp__overlay {
  4822. background: #272B30;
  4823. }
  4824. .dp__overlay_container {
  4825. background: #272B30;
  4826. &::-webkit-scrollbar-track {
  4827. background-color: #272B30;
  4828. }
  4829. &::-webkit-scrollbar-thumb {
  4830. background-color: #91949B;
  4831. }
  4832. .dp__overlay_row {
  4833. .dp__overlay_col {
  4834. .dp__overlay_cell {
  4835. color: #fff;
  4836. &:hover {
  4837. background: rgba(16, 16, 17, 0.2);
  4838. }
  4839. }
  4840. }
  4841. }
  4842. }
  4843. .dp__input_wrap {
  4844. .dp__input {
  4845. border-color: #42484F;
  4846. background-color: #272B30;
  4847. color: #fff;
  4848. background-image: url("/assets/img/ico_calendar_w.png");
  4849. }
  4850. }
  4851. .dp__outer_menu_wrap {
  4852. .dp__menu {
  4853. border: 2px solid #42484F;
  4854. background-color: #272B30;
  4855. .dp__arrow_top {
  4856. border-color: #42484F;
  4857. border-width: 2px;
  4858. background-color: #272B30;
  4859. }
  4860. .dp__month_year_row {
  4861. .dp__btn {
  4862. &:hover {
  4863. span {
  4864. background: rgba(16, 16, 17, 0.2);
  4865. }
  4866. }
  4867. }
  4868. .dp__month_year_wrap {
  4869. .dp__btn {
  4870. color: #fff;
  4871. &:hover {
  4872. background: rgba(16, 16, 17, 0.2);
  4873. }
  4874. }
  4875. }
  4876. }
  4877. .dp__calendar {
  4878. .dp__calendar_header {
  4879. .dp__calendar_header_item {
  4880. color: #fff;
  4881. }
  4882. }
  4883. .dp__calendar_row {
  4884. .dp__calendar_item {
  4885. .dp__cell_inner {
  4886. color: #fff;
  4887. &.dp__cell_offset {
  4888. color: #606770;
  4889. }
  4890. &:hover {
  4891. background: rgba(16, 16, 17, 0.2);
  4892. }
  4893. }
  4894. }
  4895. }
  4896. }
  4897. .dp__action_row {
  4898. .dp__action_buttons {
  4899. .dp__action_button {
  4900. &.dp__action_cancel {
  4901. border-color: #606770;
  4902. color: #606770;
  4903. }
  4904. &.dp__action_select {
  4905. background: #42484F;
  4906. color: #fff;
  4907. }
  4908. }
  4909. }
  4910. }
  4911. }
  4912. }
  4913. }
  4914. }
  4915. .list--dell--btn{
  4916. background:#d50000!important;
  4917. color: #fff!important;
  4918. font-size: 13px;
  4919. font-style: normal;
  4920. font-weight: 500;
  4921. line-height: 100%; /* 13px */
  4922. border-radius: 0px!important;
  4923. &.small{
  4924. min-width:30px!important;
  4925. width:30px!important;
  4926. height:30px!important;
  4927. }
  4928. &.mid{
  4929. min-width:40px!important;
  4930. width:40px!important;
  4931. height:36px!important;
  4932. }
  4933. &.type--2{
  4934. font-size:12px!important;
  4935. }
  4936. }
  4937. .v-messages__message {
  4938. padding: 0 0.81rem;
  4939. margin-top: 0.25rem;
  4940. letter-spacing: -0.02rem;
  4941. line-height: 1rem;
  4942. white-space: nowrap;
  4943. font-size: 0.75rem;
  4944. font-weight: 600;
  4945. color: #E50A0A!important;
  4946. transition: none !important;
  4947. }
  4948. .v-input__details{
  4949. padding-left:0px!important;
  4950. }
  4951. .v-field--error:not(.v-field--disabled) .v-field__outline{
  4952. color:#FF8C8C!important;
  4953. border-color:#FF8C8C!important;
  4954. }
  4955. .v-input__details{
  4956. overflow: visible;
  4957. }
  4958. .log--btn{
  4959. cursor: pointer;
  4960. position: absolute;
  4961. right:10px;
  4962. z-index: 9;
  4963. }
  4964. .se-dialog-footer{
  4965. > div{
  4966. display: none!important;
  4967. }
  4968. }
  4969. .se-dialog-tabs{
  4970. display: none!important;
  4971. }
  4972. //** 룰렛 시작
  4973. .container{
  4974. .content{
  4975. .main{
  4976. .inner--headers{
  4977. > h2{
  4978. font-size: 1.5rem;
  4979. font-weight: 700;
  4980. color: #333;
  4981. display: inline-flex;
  4982. gap:10px;
  4983. .event--status{
  4984. font-size:16px;
  4985. font-weight: 700;
  4986. color: #fff;
  4987. background: #007AFF;
  4988. border-radius: 50px;
  4989. padding: 5px 20px;
  4990. line-height: 100%;
  4991. display: inline-flex;
  4992. align-items: center;
  4993. justify-content: center;
  4994. }
  4995. }
  4996. }
  4997. }
  4998. }
  4999. }
  5000. .winner--rank--wrapper{
  5001. border-top:1px solid #000;
  5002. display: flex;
  5003. width:100%;
  5004. flex-wrap:wrap;
  5005. dl{
  5006. display: flex;
  5007. align-items: center;
  5008. width: calc(100% / 4);
  5009. flex-wrap: wrap;
  5010. &:last-child{
  5011. dd{
  5012. border-right: 0;
  5013. }
  5014. }
  5015. dt{
  5016. background-color: #f8f8f8;
  5017. display: flex;
  5018. align-items: center;
  5019. height:50px;
  5020. padding:0 20px;
  5021. border-bottom: 1px solid #e2e2e2;
  5022. border-right: 1px solid #E2E2E2;
  5023. width:40%;
  5024. font-size:16px;
  5025. .rank, .name {
  5026. display: block;
  5027. overflow: hidden;
  5028. white-space: nowrap;
  5029. text-overflow: ellipsis;
  5030. min-width: 0;
  5031. max-width:120px;
  5032. font-size:16px;
  5033. }
  5034. i{
  5035. font-style: normal;
  5036. }
  5037. }
  5038. dd{
  5039. display: flex;
  5040. align-items: center;
  5041. height:50px;
  5042. padding:0 20px;
  5043. border-bottom: 1px solid #e2e2e2;
  5044. border-right: 1px solid #E2E2E2;
  5045. width:60%;
  5046. i{
  5047. font-style: normal;
  5048. }
  5049. }
  5050. }
  5051. }
  5052. .kakao--sms--button{
  5053. display: flex;
  5054. align-items: center;
  5055. justify-content: center;
  5056. padding:5px 10px;
  5057. border-radius: 50px;
  5058. background-color: #000;
  5059. color: #fff!important;
  5060. font-size: 0.75rem;
  5061. font-weight: 600;
  5062. line-height: 1.06rem;
  5063. }
  5064. .gap--10{
  5065. gap: 10px;
  5066. }
  5067. .caution--text{
  5068. font-size:16px;
  5069. color:red;
  5070. font-weight: 700;
  5071. }