style.scss 120 KB

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