style.scss 122 KB

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