layout.css 416 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734
  1. @charset "utf-8";
  2. body {min-width:1360px; overflow-x:auto;}
  3. .blind {overflow:hidden; position:absolute;width: 1px;height: 1px;margin: -1px;padding: 0; border: 0;line-height: 0;white-space: normal;word-wrap: break-word;word-break: break-all;clip: rect(0, 0, 0, 0);}
  4. .blind:before {display: block;width: 0;height: 0;font-size: 0;content: '\00a0';}
  5. /* header */
  6. header {-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;}
  7. header.minify .gnb {position:fixed; top:0; left:0; right:0; z-index:100; background:inherit;}
  8. .common_header{position:relative; background:#222222;color:#ffffff;min-width:1360px; box-sizing:border-box;}
  9. .common_header > * {color:#ffffff;}
  10. .common_header .hd_top_banner {position: relative; z-index: 101; text-align:center;}
  11. .common_header .hd_top_banner .close_bnr_area {position:absolute; right:50px; top:15px; z-index:9;}
  12. .common_header .hd_top_banner .close_bnr_area::after {content:''; clear:both; display:block;}
  13. .common_header .hd_top_banner .close_bnr_area .form_wrap {float: left; display:inline;}
  14. .common_header .hd_top_banner .close_bnr_area .form_wrap .form_field input[type="checkbox"] + label:before {top:50%; transform:translateY(-50%); background:url('//image.istyle24.com/Style24/images/pc/chk_top_banner.png'); background-position:0 0;}
  15. .common_header .hd_top_banner .close_bnr_area .form_wrap .form_field input[type="checkbox"]:checked + label:after {top:50%; transform:translateY(-50%); background:url('//image.istyle24.com/Style24/images/pc/chk_top_banner.png'); background-position:100% 0;}
  16. .common_header .hd_top_banner .close_bnr_area .form_wrap .form_field input[type="checkbox"] + label {margin-top:4px; color:#fff; font-size:15px; font-weight:200; line-height:1; vertical-align:top;}
  17. .common_header .hd_top_banner .close_bnr_area .btn_close {float:left; width:20px; height:20px; margin-left:15px; background:url('//image.istyle24.com/Style24/images/pc/ico_pop_cls02.png') no-repeat 50% 50%; background-size:100% auto; font-size:1px; text-indent:-999px; overflow:hidden;}
  18. .common_header .hd_top_banner > div {position:relative;}
  19. .common_header .hd_top_banner > div a {position:relative; display:block; width:100%; overflow:hidden;}
  20. .common_header .hd_top_banner > div a > div,
  21. .common_header .hd_top_banner > div a > img {display:inline-block; text-align:center; max-width:1120px;}
  22. .common_header .hd_top_banner .bnrtype_text {min-height:50px;}
  23. .common_header .hd_top_banner .bnrtype_text a {padding-top:15px; padding-bottom:15px;}
  24. .common_header .hd_top_banner .bnrtype_open {z-index:1;}
  25. .common_header .hd_top_banner .bnrtype_open .btn_toggle_bnr {position:absolute; left:50%; bottom:-40px; transform:translateX(-50%); width:40px; height:40px; background:url('//image.istyle24.com/Style24/images/pc/btn_open_bnr.png') no-repeat; background-position:50% 100%; font-size:1px; text-indent:-999px; overflow:hidden; z-index:10;}
  26. .common_header .hd_top_banner .bnrtype_open a .open_bnr_area {display:none; width:100%; max-width:2000px; margin: 0 auto;}
  27. .common_header .hd_top_banner .bnrtype_open.fixed {position:fixed; display:block; top:0; left:0; right:0; width:100%; z-index:9;}
  28. .common_header .hd_top_banner .bnrtype_open.fixed::before {content:''; position:fixed; left:0; right:0; top:0; bottom:0; background:rgba(0,0,0,.5);}
  29. .common_header .hd_top_banner .bnrtype_open.fixed a > img {display:none;}
  30. .common_header .hd_top_banner .bnrtype_open.fixed .open_bnr_area {display:block;}
  31. .common_header .hd_top_banner .bnrtype_open.fixed .btn_toggle_bnr {background-position:50% 0%;}
  32. .common_header > .area{background:#222; height: 98px;padding:0 70px;position: relative; z-index: 99;}
  33. .common_header > .area:after{content: ''; display: block; clear: both;}
  34. .common_header .logo {float:left; margin-top:35px;}
  35. .common_header .logo h1 {margin:0; font-size:0;}
  36. .common_header .logo .ico_logo:before {-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;}
  37. .common_header .util_group{overflow:hidden; float:right; margin-top:42px;}
  38. .common_header .util_group span{float:left; position:relative; padding:0px 5px;}
  39. .common_header .util_group span::after{content:''; display:block; width:1px; height:8px; background:#4e4e4e; position:absolute; top:50%; right:0; left:auto; transform:translateY(-50%);}
  40. .common_header .util_group span:last-child{padding-right:0;}
  41. .common_header .util_group span:last-child::after{content:''; display:none;}
  42. .common_header .util_group span a{display:block; padding:0px 6px; font-weight:200; font-size:14px; color:#7f7f7f; letter-spacing:-.025em; line-height:1;}
  43. .common_header .gnb {background:#222;}
  44. .gnb {height: 80px;margin:0 auto;padding: 30px 70px 30px;position: relative; z-index:100; min-width: 1360px;box-sizing:border-box;}
  45. .gnb::after {content: ''; display: block; clear: both;}
  46. .gnb .nav {float:left; margin-left:-24px;}
  47. .gnb .nav .bundle {float:left; padding:0 10px;}
  48. .gnb .nav .bundle > li {float:left; padding:0px 14px;}
  49. .gnb .nav .bundle > li > a {display:block; color:#ffffff; font-size:19px; font-weight: 300; letter-spacing: -.025em; box-sizing:border-box;padding:0px; line-height:1; -webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}
  50. .gnb .nav .bundle > li > a:hover,
  51. .gnb .nav .bundle > li > a:focus,
  52. .gnb .nav .bundle > li > a:active,
  53. .gnb .nav .bundle > li > a.active {color:#fd4802; border-bottom:1px solid #fd4802;}
  54. .gnb .nav .bundle > li > a {position: relative;}
  55. .gnb .nav .bundle > li:last-child > a::after{content: ''; display: block; width: 1px; height: 18px; background: #4e4e4e; position: absolute; top:50%; bottom:auto; right: -20px; left:auto; transform: translateY(-50%);}
  56. .gnb .nav .bundle:last-child > li > a::after{content: ''; display: none;}
  57. .depth_menu {position:absolute; top:80px; left:0; width:100%; background:#fff; color:#222; z-index:150; display:none;}
  58. .depth_menu::after {content:''; display: block; clear:both;}
  59. .depth_menu .head_category {position:relative; float:left; width: 68.75%;padding:50px 70px;padding: 50px 70px 50px 240px;}
  60. .depth_menu .head_category .tit {position:absolute; width:170px; left:70px;}
  61. .depth_menu .head_category .tit p {font-size: 24px; font-weight:500; margin-bottom:20px;}
  62. .depth_menu .head_category .tit a {font-size: 16px; color: #888; padding-right: 14px; background: url(//image.istyle24.com/Style24/images/pc/ico_mysm_arrow.png) no-repeat right top 2px;}
  63. .depth_menu .head_category .tit a:after {display:none;}
  64. .depth_menu .head_category .menu ul.maintabs {position:relative; width:25%; min-width: 200px; border-left: 1px solid #ddd;min-height: 320px;}
  65. ul.maintabs li {padding-left:40px; padding-top:20px;}
  66. ul.maintabs li:first-child {padding-top:0;}
  67. ul.maintabs li a {display: inline-block; font-size: 16px; color: #666; position: relative;}
  68. ul.maintabs li a:after {content:''; position: absolute; width: 100%; left: 0; bottom: 0; height: 1px; background: #fd4801; display: none;}
  69. ul.maintabs li.on > a:before {content: ""; position: absolute; top: 50%; right: -15px; transform:translateY(-50%); border: 5px solid transparent; border-left: 5px solid #fd4801;border-right: 0; display: none;}
  70. ul.maintabs li:hover > a,
  71. ul.maintabs li:focus > a {color:#fd4801; font-weight:300;}
  72. ul.maintabs li:hover > a::before,
  73. ul.maintabs li:focus > a::before,
  74. ul.maintabs li:hover > a::after,
  75. ul.maintabs li:focus > a::after {display:block;}
  76. ul.maintabs li [class^='box_depth'] {display:none; position:absolute; left:100%; top:0px; width:100%; border-left:1px solid #ddd; min-height:320px;}
  77. .more_category {float:left; position:relative; margin-left:15px;}
  78. .more_category a.btn_more_cate {position:relative; display:inline-block; padding-right:16px; color:#888; font-size:16px; font-weight:300; z-index:152;}
  79. .more_category a.btn_more_cate:after {display:block; position:absolute; top:2px; right:0; width:6px; height:6px; border:2px solid #888; border-width:2px 2px 0 0; transform:rotate(135deg); -webkit-transform:rotate(135deg); content:'';}
  80. .more_category.on a.btn_more_cate:after {top:5px; transform:rotate(-45deg); -webkit-transform:rotate(-45deg); content:'';}
  81. .more_category .cate_list {display:none; position:absolute; left:-30px; top:-22px; background:#222; min-width:180px; padding:60px 25px 25px; box-sizing:initial; border:1px solid #aaa; z-index:151;}
  82. .more_category .cate_list ul li {margin-top:14px; display: none;}
  83. .more_category .cate_list ul li:first-child {margin-top:0;}
  84. .more_category .cate_list ul li a {display:block; padding:5px; color:#fff; font-size:19px;}
  85. .more_category .cate_list ul li a:hover {color:#fd4801; text-decoration:underline;}
  86. .depth_menu .head_banner {float:left; width: 31.25%; background: #f5f5f5; padding:50px 70px;height: 450px;}
  87. .depth_menu .head_banner .tit p {font-size: 24px; font-weight: 500; margin-bottom: 20px;}
  88. .depth_menu .head_banner li {float:left; width:49%;}
  89. .depth_menu .head_banner li:first-child {margin-right:2%;}
  90. .depth_menu .head_banner li .ev_img {position: relative; padding-top: 100%;overflow: hidden;}
  91. .depth_menu .head_banner li img {width: 100%; height:auto; position: absolute;left: 50%;top: 0;transform: translate(-50%, 0);}
  92. .depth_menu .head_banner li .txt p {display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin: 20px 0; min-height:42px; max-height:42px; overflow: hidden; text-overflow: ellipsis; font-size: 16px; line-height: 1.4; color: #222; font-weight: 300; word-break: keep-all; text-align: center;}
  93. .depth_menu.brand .head_category {width: 100%;}
  94. .depth_menu.brand .head_category .menu {width:100%; border-left: 1px solid #ddd; padding-left: 40px;}
  95. .depth_menu.brand .head_category .menu .row {width: 100%; border-bottom: 1px solid #ddd; padding:30px 0;}
  96. .depth_menu.brand .head_category .menu .row:first-child {padding-top: 0;}
  97. .depth_menu.brand .head_category .menu .row p {font-size: 18px; font-weight: 500; margin-bottom: 25px;}
  98. .depth_menu.brand .head_category .menu .row ul:after {content:''; display: block; clear:both;}
  99. .depth_menu.brand .head_category .menu .row ul li {margin-left:4px; width:182px;}
  100. .depth_menu.brand .head_category .menu .row ul li:first-child {margin-left:0;}
  101. .depth_menu.brand .head_category .menu .row ul li a {position:relative; display:table-cell; width:182px; height:80px; text-align:center; vertical-align:middle;}
  102. .depth_menu.brand .head_category .menu .row ul li a img {display:inline-block; width: 74%; z-index:1; -webkit-transition:all .3s ease-in-out; transition:all .3s ease-in-out;}
  103. .depth_menu.brand .head_category .menu .row ul li a span {display:none; position:absolute; left:0; top:0; right:0; bottom:0; width:100%; height:100%; padding:10px; box-sizing:border-box; border:1px solid #222; background:#fff; color:#222; font-size:18px; font-weight:500; text-align:center; z-index:2;}
  104. .depth_menu.brand .head_category .menu .row ul li a span em {position:absolute; left:0; top:50%; width:100%; transform:translateY(-50%);}
  105. .depth_menu.brand .head_category .menu .row ul li a:hover span,
  106. .depth_menu.brand .head_category .menu .row ul li a:focus span,
  107. .depth_menu.brand .head_category .menu .row ul li a:active span {display:block;}
  108. .depth_menu.brand .head_category .menu .row ul li a:hover img,
  109. .depth_menu.brand .head_category .menu .row ul li a:focus img,
  110. .depth_menu.brand .head_category .menu .row ul li a:active img {display:none;}
  111. .gnb .nav .bundle > li.more{float:right;position:relative;width:47px;height:47px;}
  112. .gnb .nav .bundle > li.more button{position:absolute;top:-1px;right:0;}
  113. .gnb .nav li.more > ul {display:none;position:absolute;top:100%;right:0;width:121px;height:auto;margin-top:-2px;padding:17px 0;border:1px solid #000;background:#fff;box-sizing:border-box;z-index:999;}
  114. .gnb .nav li.more.on > ul{display:block;}
  115. .gnb .nav li.more > ul li{padding:2px 19px 3px;}
  116. .gnb .nav li.more > ul a{font-size:15px;color:#191919;}
  117. .common_header .search {float:right; margin-top:-14px;}
  118. .common_header .search > .area{float:left;position:relative;width:330px;border-bottom:2px solid #ffffff; margin-right: 20px; -webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;}
  119. .common_header .search .ico_search:before {width:23px; height:23px;}
  120. .common_header .search .promotion_search {float:left; width:calc(100% - 30px); height:34px; padding:0px; border:0;outline:none;font-size:18px;color: #bcbcbc;font-weight:200; line-height:34px; cursor:pointer;}
  121. .common_header .search button{float:right; margin:4px 0 0 0;}
  122. .common_header .search .btn_open_search {display:none; float:left; margin-right:20px; margin-top:5px;}
  123. .common_header .search .btn_cart {margin-top:4px;}
  124. .common_header .search .circle_count{display:inline-block;width:23px;height:23px;margin-left:5px; font-size:10px;text-align:center;line-height:2.5;color:#fff;background:#fd4802;border-radius:50%; position:absolute; top:-10px; right:-18px; bottom:auto; left:auto;}
  125. .common_header .search .circle_count.red{background:#fd4802;}
  126. .common_header .nav > ul.btn_home {display:none;}
  127. .common_header .black_screen {position: fixed; left:0; top:0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 88; display:none;}
  128. .minify .common_header .search .ico_search:before {width:25px; height:25px;}
  129. .minify .common_header .util_group {margin-top:2px;}
  130. .minify .common_header .nav > ul.btn_home {display:inline-block;}
  131. .minify .common_header .nav > ul > li > a {font-size:17px;}
  132. .minify .common_header .search {margin-top:-5px;}
  133. .minify .common_header .search > .area {display:none;}
  134. .minify .common_header .search .btn_open_search {display:block;}
  135. .minify .common_header .util_group span a {padding:0px 3px;}
  136. .minify .common_header .gnb .nav .bundle > li > .depth_menu {top:80px;}
  137. @media screen and (max-width:1620px) {
  138. .common_header .search > .area {display:none;}
  139. .common_header .search .btn_open_search {display:block;}
  140. }
  141. /* 상단비쥬얼 페이지경로 겹칠때*/
  142. .omitt .breadcrumb{position: relative;z-index: 10; max-width:1920px;}
  143. .omitt .breadcrumb ul li,.omitt .breadcrumb ul li a{color: #ffffff !important;}
  144. .omitt .breadcrumb ul li::before{background: url(//image.istyle24.com/Style24/images/pc/ico_bread_root_w.png)no-repeat center center;}
  145. .omitt .cont_head{display: none;}
  146. .omitt .dp_hotdeal,
  147. .omitt .dp_Bulletship {top: -118px;}
  148. /* Brand HEADER */
  149. .common_header.br_header .util_group span::after {background:#fff; opacity:0.2;}
  150. .common_header.br_header .util_group span a {color:#ffffff; opacity:0.3; font-weight:200;}
  151. .common_header.br_header .util_group span:first-child a {opacity:1; font-weight:300;}
  152. .common_header.br_header .search .ico_search:before {width:25px; height:25px;}
  153. .common_header.br_header .search .btn_open_search {display:block;}
  154. .common_header.br_header .logo {margin-top:40px;}
  155. .common_header.br_header .logo h1 {font-size: 28px;letter-spacing: -0.07em;color: #ffffff;font-weight: 400;}
  156. .common_header.br_header .depth_menu .head_category { width: 68%; padding:50px 70px 50px 20px;}
  157. .common_header.br_header .depth_menu .head_category .menu ul.maintabs {border-left:0;}
  158. .common_header.br_header .depth_menu .head_banner {background: #ffffff; width:32%;}
  159. .common_header.br_header .depth_menu .head_banner li { width: 33.333%;}
  160. .common_header.br_header .depth_menu .head_banner li img{top: 50%;left: 0px;transform: translateY(-50%);}
  161. .common_header.br_header .depth_menu .head_banner li:first-child {margin-right:0;}
  162. .common_header.br_header .depth_menu .item_prod {width: 100%;}
  163. .common_header.br_header > .area {height:90px;background: inherit;}
  164. .common_header.br_header > .gnb {background: inherit;}
  165. .common_header.br_header .nav > ul > li.home {display:none;}
  166. .minify .common_header.br_header .nav > ul > li.home{display:block;}
  167. /* common_search */
  168. .common_search {display:none; position:fixed; left:0; right:0; top:0; bottom:0; width:100%; height:100%; background:#fff; z-index:200; overflow-y: auto;}
  169. .common_search.active {display:block;}
  170. .common_search div::after,
  171. .common_search ul::after {content:''; clear:both; display:block;}
  172. .common_search .btn_close_search {position:absolute; right:50px; top:50px; width:30px; height:30px; text-indent:-9999px; overflow:hidden; background:url('//image.istyle24.com/Style24/images/pc/ico_pop_cls.png') no-repeat 50% 50%; background-size:100% auto;}
  173. .common_search .cont_search {width:830px; margin:0 auto; padding:100px 0;}
  174. .common_search .cont_search .area_input {border-bottom:2px solid #222;}
  175. .common_search .cont_search .area_input input[type='text'] {width:calc(100% - 30px); height:54px; border:none; color:#222; font-size:30px; padding-left:0;}
  176. .common_search .cont_search .area_input .ico_search:before {width:26px; height:26px; background-image:url('//image.istyle24.com/Style24/images/pc/ico_search_faq.png');}
  177. .common_search .cont_search .area_result .empty_box {display: block; margin-top:80px;}
  178. .common_search .empty_box .nodata {color:#666; font-size:16px; font-weight:300; line-height:26px; text-align:center;}
  179. .common_search .empty_box .nodata::before {content:''; display:block; width:36px; height:46px; margin:0 auto 24px; background:url('//image.istyle24.com/Style24/images/pc/ico_content_none.png') no-repeat;}
  180. .common_search .empty_box .nodata .keyword {font-weight: 300;}
  181. .common_search .empty_box .pd_list.recommend {margin-top:40px;}
  182. .common_search .pd_list {float:left; width:100%;}
  183. .common_search .pd_list h3 {color:#222; font-size:20px; font-weight:500;}
  184. .common_search .pd_list .itemsGrp {margin:24px 0 0;}
  185. .common_search .pd_list .itemsGrp .item_prod {width:calc(100% / 5);}
  186. .common_search .cont_search .area_result .default_box {margin-top:30px;}
  187. .common_search .cont_search .area_result .default_box h3 {margin-bottom:24px; color:#222; font-size:18px; font-weight:500;}
  188. .common_search .default_box [class*="_blk"] {float:left; position:relative; width:calc(50% - 60px); margin-right:60px;}
  189. .common_search .default_box .recent_blk,
  190. .common_search .default_box .popular_blk {color:#666; font-size:14px; font-weight:300;}
  191. .common_search .default_box .recent_blk ul li,
  192. .common_search .default_box .popular_blk ul li {float:left; position:relative; margin-right:20px; margin-bottom:10px;}
  193. .common_search .default_box .recent_blk ul li a,
  194. .common_search .default_box .popular_blk ul li a {display:inline-block;}
  195. .common_search .default_box .recent_blk ul li a:hover,
  196. .common_search .default_box .recent_blk ul li a:active,
  197. .common_search .default_box .popular_blk ul li a:hover,
  198. .common_search .default_box .popular_blk ul li a:active {color:#fd4802;}
  199. .common_search .default_box .recent_blk .btn_underline {position:absolute; right:0; top:0;}
  200. .common_search .default_box .recent_blk ul li {padding-right:18px;}
  201. .common_search .default_box .recent_blk ul li .btn_delete {position:absolute; right:0; top:0; width:9px; height:9px; font-size:1px; text-indent:-9999px; overflow:hidden; background:url('//image.istyle24.com/Style24/images/pc/ico_close1.png') no-repeat 50% 50%; background-size:100% auto;}
  202. .common_search .default_box .popular_blk ul li a::before {content:'#';}
  203. .common_search .default_box .realtime_blk {width:100%; margin-top:50px; margin-right:0px; padding-top:50px; padding-bottom:0;}
  204. .common_search .default_box .realtime_blk::before {content:''; display: none; position:absolute; left:50%; top:0; bottom:-30px; width:3000px; transform:translateX(-50%); background:#f5f5f5; z-index:-1;}
  205. .common_search .default_box .realtime_blk .modify_timer {position:absolute; right:0; top:50px;}
  206. .common_search .default_box .realtime_blk .modify_timer button {color:#888; font-weight: 300; padding-right: 20px;}
  207. .common_search .default_box .realtime_blk .modify_timer button:after {content:''; position: absolute; top: 50%; right: 0; width: 14px; height: 14px; background: url('//image.istyle24.com/Style24/images/pc/ico_filter_reset02.png') no-repeat center; margin-top: -6px;}
  208. .common_search .realtime_wrap {margin:0 -10px;}
  209. .common_search .realtime_wrap .swiper-controls {margin-top: 20px;}
  210. .common_search .realtime_wrap .swiper-scrollbar {background:#ddd; height:2px; opacity: 1 !important;}
  211. .common_search .realtime_wrap .swiper-scrollbar-drag {border-radius:0; background:#222;}
  212. .common_search .realtime_wrap .item_prod {width: 100%;}
  213. .common_search .realtime_wrap .item_prod .itemName {color:#000; margin:0 0 15px; font-weight: 300;}
  214. .common_search .realtime_wrap .item_prod .viewCount {display:table; width: fit-content;height: 30px;color: #fd4802;line-height: 1;font-size: 14px;font-weight: 400;text-align: center;vertical-align: middle;letter-spacing: -.025rem;padding: 6px 12px;border: 2px solid #fd4802;border-radius: 50px;box-sizing: border-box;}
  215. .common_search .realtime_wrap .item_prod .item_state {padding-bottom: 0;}
  216. .common_search .cont_search .area_result .searching_box {margin-top:30px;}
  217. .common_search .cont_search .area_result .searching_box h3 {margin-bottom:24px; color:#222; font-size:18px; font-weight:500;}
  218. .common_search .cont_search .area_result .searching_box .find_brand h3 {margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #ddd;}
  219. .common_search .cont_search .area_result .searching_box .find_brand h3 a {display: inline-block; padding-right: 20px; color:#222; background:url(//image.istyle24.com/Style24/images/pc/ico_dp_arrow.png) no-repeat right 0 top 2px; background-size:7px 13px;}
  220. .common_search .cont_search .area_result .searching_box .find_category li {position: relative; margin-top: 14px; padding:4px 0; padding-left: 67px; overflow:hidden; text-overflow:ellipsis; white-space: nowrap;}
  221. .common_search .cont_search .area_result .searching_box .find_category li:first-child {margin-top: 0;}
  222. .common_search .cont_search .area_result .searching_box .find_category li .category_txt {position: absolute; left: 0; top: 0; padding:5px 8px; background: #f5f5f5; vertical-align: middle; font-size: 11px; color:#666;}
  223. .common_search .cont_search .area_result .searching_box .find_category li a {width: 100%; font-size: 0;}
  224. .common_search .cont_search .area_result .searching_box .find_category li a:after {content:''; display: block; clear:both;}
  225. .common_search .cont_search .area_result .searching_box .find_category li a span {position: relative; font-size: 14px; color:#888; padding-right: 30px; vertical-align: middle;}
  226. .common_search .cont_search .area_result .searching_box .find_category li a span:after {content:''; background: url(//image.istyle24.com/Style24/images/pc/ico_bread_root.png) no-repeat center/100%; position: absolute; top: 1px; right: 11px; width: 6px; height: 11px;}
  227. .common_search .cont_search .area_result .searching_box .find_category li a span:last-child {padding-right: 0;}
  228. .common_search .cont_search .area_result .searching_box .find_category li a span:last-child:after {display: none;}
  229. .common_search .searching_box .pd_list.relate {margin-top:30px;}
  230. .common_search .searching_box [class*="_blk"] {float:left; position:relative; width:calc(50% - 60px); margin-right:60px;}
  231. .common_search .searching_box .exfind_blk {margin-right: 0; width: 50%;}
  232. .common_search .searching_box .autokeyword_blk ul li a em,
  233. .common_search .searching_box .exfind_blk .find_brand h3 a em,
  234. .common_search .searching_box .exfind_blk .find_category a em {color:#fd4802;}
  235. .common_search .searching_box .exfind_blk .find_category a em {color:#222; font-weight: 400;}
  236. .common_search .searching_box .autokeyword_blk ul li {margin-bottom:10px; color:#666; font-size:14px; font-weight:300; float:left; margin-right: 20px;}
  237. .common_search .searching_box .exfind_blk .find_category ul li a:last-child::after {display:none;}
  238. .common_search .itemPrice.cols .itemPrice_original {display: table-cell;width: 100%;}
  239. .common_search .itemPrice.cols .itemPercent{top: auto;bottom: 0;}
  240. /* 브랜드검색 */
  241. .common_search.schBrand .default_box .recent_blk {width: 100%; margin-right: 0;}
  242. .common_search.schBrand .default_box .popular_blk {display: none;}
  243. .common_search.schBrand .searching_box [class*="_blk"] {width: 100%; margin-right: 0;}
  244. /* footer */
  245. #footer {position:relative;}
  246. .common_footer {position:relative; width:100%; min-width:1360px; box-sizing:border-box; padding:60px 70px 50px; background-color:#f1f1f1;}
  247. .common_footer > div {padding-right:170px; box-sizing:border-box;}
  248. .common_footer .service_support {position: relative;margin: 0 auto; border-top: 0 none !important; zoom: 1;}
  249. .common_footer .service_support h2 {margin:0;}
  250. .common_footer .service_support .support_txt {display:block; padding-top:35px;}
  251. .common_footer .service_support .support_txt::after {content:''; clear:both; display:block;}
  252. .common_footer .service_support .support_txt li {float:left; position:relative; margin-left:20px; padding-left:20px; font-size:16px; font-weight:300; line-height:1;}
  253. .common_footer .service_support .support_txt li a span em {line-height: 10px;}
  254. .common_footer .service_support .support_txt li::before {content:''; position:absolute; left:0; top:2px; bottom:2px; border-left:1px solid #ddd; z-index:2;}
  255. .common_footer .service_support .support_txt li:first-child {margin-left:0; padding-left:0;}
  256. .common_footer .service_support .support_txt li:first-child::before {display:none;}
  257. .common_footer .service_support .family_link {position:absolute; z-index: 99; right:0; top:0px; width:170px;}
  258. .common_footer .service_support .family_link h2 a {display:block; position:relative; height:32px; padding:10px; color: #444; font-weight: 300; font-size: 14px; letter-spacing: 0; line-height:1; text-align: left; border: solid 1px transparent; border-bottom: solid 1px #222222; -webkit-box-sizing: border-box; box-sizing: border-box;}
  259. .common_footer .service_support .family_link h2 a:hover{background-color: rgb(255 255 255);}
  260. .common_footer .service_support .family_link h2 a:focus{background-color: rgb(255 255 255); border: 1px solid #222222; border-top: 1px solid transparent;}
  261. .common_footer .service_support .family_link h2 a .ico {position:absolute; top:10px; right:15px; margin-right:0;}
  262. .common_footer .service_support .family_link dl {display:none; position: absolute; bottom:32px; left:0; width: 170px; border: 1px solid #222222; padding:3px 0px 13px 0px; background-color:#fff; box-sizing:border-box;}
  263. .common_footer .service_support .family_link dl dt {position: relative; font-size: 10px;font-weight: bold;letter-spacing: 1px;color: #222222;padding: 8px 0 2px 0px; text-indent: 12px;display: block;}
  264. .common_footer .service_support .family_link dl dd {text-indent: 12px;}
  265. .common_footer .service_support .family_link dl dd a {font-size: 14px; font-weight: 300; color:#222; text-decoration: none;padding: 12px 0px;display: block;letter-spacing: -.025em;line-height: 15px;}
  266. .common_footer .service_support .family_link dl dd a:hover {background:#efefef;}
  267. .common_footer .service_support .connect {position:absolute; top:76px; right:0px; text-align:left; width:170px; line-height:1.2; z-index:2;}
  268. .common_footer .service_support .connect .cs_box .clickable {color:#222; font-size:16px; font-weight:300;letter-spacing: -.025em;}
  269. .common_footer .service_support .connect .cs_box .clickable .ico_ft_arrow_r:before {vertical-align:top; margin-top:2px;}
  270. .common_footer .service_support .connect .cs_box span {display:inline-block; color:#666;}
  271. .common_footer .service_support .connect .cs_box span.time {font-size:14px; line-height: 22px;}
  272. .common_footer .service_support .connect .cs_box span.tel {font-size:18px;font-weight: 300;}
  273. .common_footer .service_support .connect .cs_box span.fax,
  274. .common_footer .service_support .connect .cs_box span.mail {color:#888; font-size:14px;font-weight: 200;}
  275. .common_footer .service_support .connect .sns_box a {display:inline-block; width:20px; height:20px; background:no-repeat url('//image.istyle24.com/Style24/images/pc/ico_ft_sns.png');}
  276. .common_footer .service_support .connect .sns_box a.fbook {background-position:0 0;}
  277. .common_footer .service_support .connect .sns_box a.insta {background-position:-20px 0;}
  278. .common_footer .service_support .connect .isms_box {padding:12px 0; color:#666; font-size:12px; font-weight: 200; line-height:16px; border-top:1px solid #ddd; border-bottom:1px solid #ddd;}
  279. .common_footer .service_support .connect .isms_box p {padding:5px 0 5px 60px; background:no-repeat url('//image.istyle24.com/Style24/images/pc/ico_ft_isms.png') 5px 3px;}
  280. .common_footer .corporation_info {position:relative; min-height:30px; color:#888; font-size:14px; line-height:26px; letter-spacing:-0.5px;}
  281. .common_footer .corporation_info .ft_cpinfo {margin-top:27px;}
  282. .common_footer .corporation_info .ft_cpinfo dl dt {font-weight:500;}
  283. .common_footer .corporation_info .ft_cpinfo dl dd {font-weight:200;}
  284. .common_footer .corporation_info .ft_cpinfo dl dd span {margin-right:10px;}
  285. .common_footer .corporation_info .ft_cpinfo dl .clickable {padding-bottom:2px; border-bottom:1px solid #888; color:#888; font-size:12px;}
  286. .common_footer .copyright {min-height:25px; margin-top:28px; color:#888; font-weight: 200;font-size:14px; line-height:1.5; letter-spacing:-0.5px;}
  287. .common_footer .cmfooter_corp_wrap {min-height:30px; font-size:14px; line-height:26px; letter-spacing:-0.5px; color:#888;}
  288. .common_footer .cmfooter_corp_wrap .cmfooter_corp_in {position: relative;margin: 0 auto;zoom: 1;}
  289. .common_footer .cmfooter_corp_wrap .cmfooter_corp_in:after {display: block;clear: both;content: "";}
  290. .common_footer .cmfooter_corp_wrap .cmfooter_corp_in .cmfooter_corp_txwrap .clickable {padding-bottom:2px; border-bottom:1px solid #888; color:#888; font-size:12px;}
  291. .common_footer .cmfooter_corp_wrap .cmfooter_corp_info {float: left;}
  292. .common_footer .cmfooter_corp_wrap .cmfooter_corp_in dl {margin-top:40px;}
  293. .common_footer .cmfooter_corp_wrap .cmfooter_corp_in dl dt {font-weight:500;}
  294. .common_footer .cmfooter_corp_wrap .cmfooter_corp_in dl dd {font-weight:200;}
  295. .common_footer .cmfooter_corp_wrap .cmfooter_corp_in dl dd span {margin-right: 10px;}
  296. .common_footer .cmfooter_corp_wrap .cmfooter_corp_rgt {position: absolute; top:3px; right:0px; text-align:left; width:150px;}
  297. .common_footer .cmfooter_corp_wrap .cmfooter_corp_hosting {margin-top:50px; font-weight:300;}
  298. .common_footer .cmfooter_corp_wrap .cmfooter_mark {position: relative;margin-left: 44px;}
  299. .common_footer .cmfooter_corp_wrap .cmfooter_corp_copy {display: block;width: 164px;height: 41px;margin: 0 auto;background-position: -200px 0;}
  300. .common_footer .sp_cmfooter,
  301. .common_footer .cmfooter_corp_wrap .cmfooter_corp_cs .cmfooter_cs_tel:before {display: inline-block;vertical-align: top;}
  302. .partners_pop {max-width: 600px;padding: 60px;}
  303. .partners_pop .modal-body p{color: #666;font-size: 16px;line-height: 26px;letter-spacing: -0.04em;padding-bottom: 30px;}
  304. .partners_pop .tbl.type2 table th, .partners_pop .tbl.type2 table td{font-size: 14px;}
  305. .partners_pop .tbl.type2 table td {font-size: 14px; font-weight: 300; color:#666;}
  306. /* 퀵메뉴 */
  307. #quick_menu {position:fixed; bottom:0; right:0; z-index:102;}
  308. #quick_menu.active {right: 0;}
  309. #quick_menu:before {content:''; position: fixed; bottom: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.5); display: none;}
  310. #quick_menu.active:before {display: block;}
  311. #quick_menu .quick_btn {background: #222;position: absolute; left:-60px; width:60px; bottom:0;}
  312. #quick_menu .quick_btn li {width: 60px; height: 60px; text-align: center;}
  313. #quick_menu .quick_btn li button {display: block; width: 60px; height: 60px;}
  314. #quick_menu .quick_btn .count {display: block; margin-top: 6px; font-size: 12px; color: #fd4802;}
  315. #quick_menu .tabs_con {display:none; position: relative; margin-right:-363px; transition:all 0.3s;}
  316. #quick_menu.active .tabs_con {display:block; margin-right:0px;}
  317. #quick_menu .quick_close_btn {position: absolute; right:30px; top: 30px; width: 22px; height: 22px; background: url('//image.istyle24.com/Style24/images/pc/ico_quick_close.png') no-repeat center/100%; z-index: 8;}
  318. #quick_menu .quick_con {display:none;position:relative;background:#fff;width:363px;height: auto;max-height: 700px;min-height: 400px;}
  319. #quick_menu .quick_con .quick_head {position: relative; height:94px; padding: 30px; padding-bottom: 40px;}
  320. #quick_menu .quick_con .quick_head::after {display:none;}
  321. #quick_menu .quick_con .quick_head h3 {font-size: 24px; font-weight: 500; margin-bottom: 0;}
  322. #quick_menu .quick_con .quick_head h3 a {color: #222; position: relative; display: inline-block; padding-right: 22px;}
  323. #quick_menu .quick_con .quick_head h3 a:after {content:''; position: absolute; top: 50%; transform:translateY(-60%); right: 0; width: 8px; height: 15px; background: url('//image.istyle24.com/Style24/images/pc/ico_dp_arrow.png') no-repeat center/100%;}
  324. #quick_menu .quick_con .quick_body {padding:0 30px 30px; height: 605px;min-height:325px;max-height:605px;overflow-y:scroll;}
  325. #quick_menu .quick_con .quick_body::after {display:none;}
  326. #quick_menu .quick_con .product_count {margin-bottom: 20px; font-size: 16px; color: #888;}
  327. #quick_menu .quick_con .product_count span {font-weight: 500;}
  328. #quick_menu .quick_body::-webkit-scrollbar {width:4px;}
  329. #quick_menu .quick_body::-webkit-scrollbar-thumb {background-color:#222222; border-radius:50px; -webkit-border-radius:50px; background-clip:padding-box; border:1px solid transparent;}
  330. #quick_menu .quick_body::-webkit-scrollbar-track {background-color:#f8f8f8; border-radius:50px; -webkit-border-radius:50px;}
  331. #quick_menu.on {position: absolute; bottom: 539px; width: 60px; height: 539px;}
  332. /* 퀵메뉴_최근 본 상품 */
  333. #quick_menu .history .itemsGrp {margin:0 -7px;}
  334. #quick_menu .history .item_prod {width: 50%;}
  335. #quick_menu .history .item_state {padding:0; margin:0 7px 14px;}
  336. #quick_menu .history .itemPic {margin-bottom: 0;}
  337. #quick_menu .history .no_item {display: none;}
  338. #quick_menu .history .quick_body.nodata .item_prod, #quick_menu .quick_con .quick_body.nodata .product_count {display: none;}
  339. #quick_menu .history .quick_body.nodata .item_prod {display: none;}
  340. #quick_menu .history .quick_body.nodata .no_item {display: block; line-height: 700px; text-align: center; font-size: 16px; color: #888;}
  341. #quick_menu .itemsGrp:not(.rowtype) .item_prod .item_state.soldout::before {top: 50%; transform:translate(-50%, -50%);}
  342. /* 퀵메뉴_쇼핑백 */
  343. .itemsGrp {margin-bottom:0;}
  344. #quick_menu .shopingbag .quick_body {height: auto;/*height: 655px; */overflow-y:scroll;}
  345. #quick_menu .shopingbag .quick_body.nodata {height: 608px;}
  346. #quick_menu .shopingbag .quick_body .itemsGrp.empty {display: none;}
  347. #quick_menu .shopingbag .quick_body.nodata .itemsGrp.existence {display: none;}
  348. #quick_menu .shopingbag .quick_body.nodata .itemsGrp .item_prod:first-child{padding-top: 20px;}
  349. #quick_menu .shopingbag .quick_body.nodata .itemsGrp .item_prod .viewCount{display:table; width: fit-content;height: 30px;color: #fd4802;line-height: 1;font-size: 14px;font-weight: 400;text-align: center;vertical-align: middle;letter-spacing: -.025rem;padding: 6px 12px;border: 2px solid #fd4802;border-radius: 50px;box-sizing: border-box;}
  350. #quick_menu .shopingbag .quick_body.nodata .itemsGrp.empty {display:block; text-align:left;}
  351. #quick_menu .shopingbag .quick_body.nodata .itemsGrp.empty .desc {font-size: 16px; line-height: 1.6; color: #888; text-align: center;padding-bottom: 40px;}
  352. #quick_menu .shopingbag .quick_body.nodata .itemsGrp.empty .item_prod:last-child {border-bottom: 0; padding-bottom: 0;}
  353. #quick_menu .shopingbag .quick_body.nodata .purchase_btn {display: none;}
  354. #quick_menu .shopingbag .quick_body {scrollbar-width: 2px; scrollbar-3dLight-Color: #f8f8f8; scrollbar-arrow-color: #f8f8f8; scrollbar-base-color: #f8f8f8; scrollbar-Face-Color: #888888; scrollbar-Track-Color: #f8f8f8; scrollbar-DarkShadow-Color: #f8f8f8; scrollbar-Highlight-Color: #f8f8f8; scrollbar-Shadow-Color: #f8f8f8;}
  355. #quick_menu .shopingbag .itemsGrp .item_prod {width: 100%; overflow: hidden; padding:30px 0; border-bottom: 1px solid #ddd;}
  356. #quick_menu .shopingbag .itemsGrp .item_prod .delete_btn {position: absolute; top: 30px; right: 0; width: 14px; height: 14px; background: url('//image.istyle24.com/Style24/images/pc/ico_close1.png') no-repeat center;}
  357. #quick_menu .shopingbag .itemsGrp .item_prod:first-child .delete_btn {top: 0;}
  358. #quick_menu .shopingbag .itemsGrp .item_prod:first-child {padding-top: 0;}
  359. #quick_menu .shopingbag .itemsGrp .item_prod:last-child {border-bottom: 0;}
  360. #quick_menu .shopingbag .itemsGrp .item_prod .itemBadge, #quick_menu .shopingbag .itemsGrp .item_prod .itemcolorchip {display: none;}
  361. #quick_menu .shopingbag .itemsGrp .item_prod .item_state {display: table; padding-left: 150px; padding-right: 0; padding-bottom: 0; width: 100%; min-height:180px;}
  362. #quick_menu .shopingbag .itemsGrp .item_prod .itemLink {display: table-cell; position: static; vertical-align: middle;}
  363. #quick_menu .shopingbag .itemsGrp .item_prod .itemLike {z-index: 99;}
  364. #quick_menu .shopingbag .itemsGrp .item_prod .itemPic {position: absolute; top: 0; left: 0; margin-bottom: 0; width: 120px; padding-top: 180px;}
  365. #quick_menu .shopingbag .itemsGrp .item_prod .itemPic .shape {z-index: 89;}
  366. #quick_menu .shopingbag .itemsGrp .item_prod .itemBrand {margin:0px 0 15px; font-size: 12px; line-height:14px; font-weight: 300;}
  367. #quick_menu .shopingbag .itemsGrp .item_prod .itemComment {font-size: 12px;margin-left: 0;}
  368. #quick_menu .shopingbag .itemsGrp .item_prod .itemName {margin:0px 0 13px; font-size: 14px; font-weight: 300; line-height: 1.5; max-height:44px; overflow:hidden;}
  369. #quick_menu .shopingbag .itemsGrp .item_prod .itemSize {font-size: 12px; margin-bottom: 20px; color: #888;}
  370. #quick_menu .shopingbag .itemsGrp .item_prod .itemPrice {font-size: 16px; line-height: 1; font-weight: 500; margin:0 0 10px}
  371. #quick_menu .shopingbag .itemsGrp .item_prod .itemPrice_original {display: inline-block; font-size: 14px; font-weight: 200;}
  372. #quick_menu .shopingbag .itemsGrp .item_prod .itemLink .purchase_btn {width: 100%; border:1px solid #a7a7a7; font-weight:300;}
  373. #quick_menu .shopingbag .purchase_btn {width: 100%; position: absolute; left: 50%; bottom: 30px; z-index: 90; width: 302px; height: 60px; line-height: 60px; background: #fd4802; color: #fff; font-size: 18px; font-weight: 300; transform: translateX(-50%); box-shadow: 3px 4px 14px 0px rgba(0, 0, 0, 0.41); border:1px solid #fd4802;}
  374. #quick_menu .shopingbag .shape {z-index: 90; width: 78px; max-width:78px; min-height:28px; background: #fd4802;}
  375. #quick_menu .shopingbag .shape:after {height: 18px; border-left:10px solid #fd4802;}
  376. #quick_menu .shopingbag .shape span {width: 100%; font-size: 13px; font-weight: 300;}
  377. /* 퀵메뉴_위시리스트 */
  378. #quick_menu .wishlist .itemsGrp {margin:0 -7px;}
  379. #quick_menu .wishlist .item_prod {width: 50%;}
  380. #quick_menu .wishlist .item_state {margin:0 7px 14px; padding: 0;}
  381. #quick_menu .wishlist .itemPic {margin-bottom: 0;}
  382. #quick_menu .wishlist .no_item {display: none;}
  383. #quick_menu .wishlist .quick_body.nodata .item_prod, #quick_menu .quick_con .quick_body.nodata .product_count {display: none;}
  384. #quick_menu .wishlist .quick_body.nodata .item_prod {display: none;}
  385. #quick_menu .wishlist .quick_body.nodata .no_item {display: block; line-height: 675px; text-align: center; font-size: 16px; color: #888;}
  386. #quick_menu .wishlist .quick_body.need_login .product_count {display: none;}
  387. #quick_menu .wishlist .quick_body.need_login .itemsGrp {display: none;}
  388. #quick_menu .wishlist .quick_body.need_login .login_con {display: block;}
  389. #quick_menu .login_con {position: relative; height: 675px; display: none;}
  390. #quick_menu .login_con > div {width: 100%; text-align: center; position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%);}
  391. #quick_menu .login_con p {font-size: 16px; color: #888; margin-bottom: 30px;}
  392. #quick_menu .login_con .btn {width: 85px; padding: 10px 14px; font-size: 14px; border:1px solid #a7a7a7; font-weight: 300;}
  393. #quick_menu .wishlist .shape {z-index: 90; width: 78px; max-width:78px; min-height:28px; background: #fd4802;}
  394. #quick_menu .wishlist .shape:after {height: 18px; border-left:10px solid #fd4802;}
  395. #quick_menu .wishlist .shape span {width: 100%; font-size: 13px; font-weight: 300;}
  396. #quick_menu .wishlist .itemLike {top: 10px;}
  397. #quick_menu .wishlist .hover_con {z-index:98; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,.4); display: none;}
  398. #quick_menu .wishlist .hover_con .cart_btn {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%);}
  399. #quick_menu .wishlist .item_prod:hover .hover_con {display: block;}
  400. #quick_menu .wishlist .itemsGrp .item_prod .cart_btn {width: 91px; border:1px solid #ddd; font-size: 13px; padding: 6px 0;}
  401. #quick_menu .wishlist .itemsGrp .item_prod .cart_btn.on {background: #fff; color: #222; border:1px solid #fff;}
  402. #quick_menu .wishlist .itemsGrp .item_prod .cart_btn:hover.on {background: #222; color: #fff; border:1px solid #222;}
  403. /* 퀵메뉴_나의 쿠폰_발급 가능 쿠폰 */
  404. #quick_menu .coupon .quick_body {overflow:hidden;}
  405. #quick_menu .coupon .quick_body.need_login {height: 100%;}
  406. #quick_menu .coupon .quick_body .login_con {display: none;}
  407. #quick_menu .coupon .quick_body.need_login .login_con {display: block;}
  408. #quick_menu .coupon .quick_body.need_login .coupon_area, #quick_menu .coupon .quick_body.need_login .coupon_tab, #quick_menu .coupon .quick_body.need_login .more_btn {display: none !important;}
  409. #quick_menu .coupon .coupon_tab {margin-bottom: 30px;}
  410. #quick_menu .coupon .coupon_tab a {position: relative; font-size: 16px; color: #888;}
  411. #quick_menu .coupon .coupon_tab a:first-child {margin-right: 25px;}
  412. #quick_menu .coupon .coupon_tab a:first-child:after {content:''; position: absolute; top: 0; right: -15px; width: 1px; height: 16px; background: #ddd;}
  413. #quick_menu .coupon .coupon_tab a.active {font-weight: 300; color:#222;}
  414. #quick_menu .coupon .more_btn {width: 100%; position: absolute; left: 50%; bottom: 30px; z-index: 90; width: 302px; height: 42px; line-height: 42px; color: #222; font-size: 14px; font-weight: 300; transform: translateX(-50%); text-align: center; border:1px solid #ddd; background:#fff url('//image.istyle24.com/Style24/images/pc/ico_more_sm.png') no-repeat left 177px center;}
  415. #quick_menu .coupon .coupon_area {height:480px;overflow-y:auto;margin-bottom: 50px;}
  416. #quick_menu .coupon .coupon_area::-webkit-scrollbar {width:4px;}
  417. #quick_menu .coupon .coupon_area::-webkit-scrollbar-thumb {background-color:#222222; border-radius:50px; -webkit-border-radius:50px; background-clip:padding-box; border:1px solid transparent;}
  418. #quick_menu .coupon .coupon_area::-webkit-scrollbar-track {background-color:#f8f8f8; border-radius:50px; -webkit-border-radius:50px;}
  419. #quick_menu .coupon #coupon_type01 .coupon_list {line-height:1;}
  420. #quick_menu .coupon #coupon_type01 .coupon_list li {margin-top:30px;}
  421. #quick_menu .coupon #coupon_type01 .coupon_list li:first-child {margin-top:0;}
  422. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon {position:relative; border:1px solid #ddd; box-sizing:border-box; background:#fff;}
  423. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon > div {position:relative;}
  424. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon > div::after {content:''; position:absolute; top:50%; right:-1px; transform:translateY(-50%); width:15px; height:30px; background:#fff; z-index:2; border:1px solid #ddd; border-right:none; border-top-left-radius:15px; border-bottom-left-radius:15px; overflow:hidden;}
  425. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon p {padding:0 20px;}
  426. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_name {padding-top:30px; color:#222; font-size:14px; font-weight:300;}
  427. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_cont {margin-top:10px;}
  428. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_cont span {color:#fd4802; font-size:22px; font-weight:500;}
  429. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_cont span em {font-size:28px; font-weight:600;}
  430. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_condition {margin-top:16px; padding-bottom:30px; color:#888; font-size:12px; font-weight:300;}
  431. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_condition span {display:block; margin-top:5px;}
  432. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .btn_coupon_down span {position:relative; display:inline-block; padding-right:24px;}
  433. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .btn_coupon_down span::after {content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); width:14px; height:15px; margin-left:10px; background:url('//image.istyle24.com/Style24/images/pc/ico_cp_down.png') no-repeat 0 0;}
  434. #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .btn_coupon_done:disabled{background:#aaa; border-color:#aaa; opacity:1;}
  435. /* 퀵메뉴_나의 쿠폰_보유 쿠폰 */
  436. #quick_menu .coupon #coupon_type02 .coupon_list li {float:left; width: 100%; margin:0 0 30px 0; position: relative; position: relative; overflow: hidden;}
  437. #quick_menu .coupon #coupon_type02 .coupon_list li:nth-child(4n) {margin-right: 0;}
  438. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_top {position: relative; overflow: hidden;}
  439. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail { z-index: 99; border:1px solid #ddd; border-bottom: 0; padding:30px 20px 18px; padding-right: 5px;}
  440. #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_detail {background: #f5f5f5; border:1px solid #f5f5f5;}
  441. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .tit {padding:0; margin-bottom: 10px; font-size: 14px;}
  442. #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_detail .tit {color:#888;}
  443. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .sale_t {display: block; color: #fd4802; font-size: 30px; margin-bottom: 15px;}
  444. #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_detail .sale_t {color:#888;}
  445. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .sale_t span {font-weight: 600;}
  446. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .sale_t.won_t {font-size: 22px;}
  447. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .sale_t.won_t span {font-size: 28px;}
  448. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .cp_cont {padding:0; font-size: 12px; margin-bottom: 10px; font-weight: 300; color: #888;}
  449. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .cp_cont span {font-size: 12px; font-weight: 300; color: #888;}
  450. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .cp_cnt {background: #fff5f3; padding:5px 8px; border:1px solid #fd4802; font-size: 10px; color: #fd4802 !important; font-weight: 500;}
  451. #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_detail .cp_cnt {background: #f5f5f5; padding:5px 8px; border:1px solid #888; font-size: 10px; color: #888 !important; font-weight: 500;}
  452. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_shape {position:absolute; top:50%; right:0; transform:translateY(-50%); width:16px; height:32px; background:#fff; z-index:2; border:1px solid #ddd; border-right:none; border-top-left-radius:15px; border-bottom-left-radius:15px; overflow:hidden;}
  453. #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_shape {border:1px solid #f5f5f5;}
  454. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_date {border:1px solid #ddd; padding:17px 5px; border-top: 1px dashed #ddd; color: #222; font-weight: 300; text-align: center;}
  455. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_date .cp_off {display: none; color: #888;}
  456. #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_date span {display: none;}
  457. #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_date .cp_off {display: block; font-weight: 200;}
  458. #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_date {background: #f5f5f5; border:1px solid #f5f5f5; border-top:1px dashed #ddd;}
  459. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_info {text-align: center; margin-top: 20px;}
  460. #quick_menu .coupon #coupon_type02 .coupon_list li .cp_info button span {display: inline-block; border-bottom: 1px solid #888; color: #888;}
  461. /* 퀵메뉴_카테고리 */
  462. #quick_menu .category .quick_body {padding: 0;}
  463. #quick_menu .category .quick_cate_wrap > li > ul {display: none; background: #f5f5f5;}
  464. #quick_menu .category .quick_cate_wrap > li:first-child > a {padding-top: 0;}
  465. #quick_menu .category .quick_cate_wrap > li > a {display: block; padding:20px 30px; font-size: 18px; font-weight: 300;}
  466. #quick_menu .category .quick_cate_wrap > li > a:hover span {color: #fd4802; border-bottom: 1px solid #fd4802;}
  467. #quick_menu .category .quick_cate_wrap > li.has_children > a {background: url('//image.istyle24.com/Style24/images/pc/ico_quick_cate.png') no-repeat right 30px center;}
  468. #quick_menu .category .quick_cate_wrap > li.has_children.active > a {background: url('//image.istyle24.com/Style24/images/pc/ico_quick_cate_on.png') no-repeat right 30px center; font-size: 18px; color: #fd4802;}
  469. #quick_menu .category .quick_cate_wrap > li.has_children.active > a span {border-bottom: 1px solid #fd4802;}
  470. #quick_menu .category .quick_cate_wrap > li.has_children > ul {padding: 15px 0;}
  471. #quick_menu .category .quick_cate_wrap > li.has_children > ul > li > a {display: block; font-size: 16px; color: #888; padding:15px 40px;}
  472. #quick_menu .category .quick_cate_wrap > li.has_children > ul > li > a:hover span {color: #fd4802; border-bottom: 1px solid #fd4802;}
  473. #quick_menu .category .quick_cate_txt {border-top: 1px solid #ddd; padding:30px;}
  474. #quick_menu .category .quick_cate_txt a {display: inline-block; position: relative; font-size: 14px; color: #888; margin-right: 20px;}
  475. #quick_menu .category .quick_cate_txt a:after {content:''; position: absolute; top: 2px; right: -12px; width: 1px; height: 8px; background: #ddd;}
  476. #quick_menu .category .quick_cate_txt a:last-child:after {display: none;}
  477. /* 상품리스트 정렬, 상품수 표기 영역 */
  478. .container .count_wrap::after {content:''; display: block; clear:both;}
  479. .container .count_wrap {padding:60px 0 20px;}
  480. .container .count_wrap div:nth-child(1) {float: left;}
  481. .container .count_wrap div:nth-child(1) p {color:#888;}
  482. .container .count_wrap div:nth-child(1) p span {color:#fd4802; font-weight:300;}
  483. .container .count_wrap div:nth-child(2) {float:right;}
  484. .container .count_wrap div:nth-child(2) ul::after {content:''; clear:both; display:block;}
  485. .container .count_wrap div:nth-child(2) ul li {float:left; position:relative; padding-left:32px;}
  486. .container .count_wrap div:nth-child(2) ul li a {color:#888; font-size:14px; font-weight:200;}
  487. .container .count_wrap div:nth-child(2) ul li a.on {color:#222; font-weight:300;}
  488. .container .count_wrap div:nth-child(2) ul li::before {content:''; position:absolute; width:1px; height: 13px; background: #ccc; top:50%; left: 15px; transform: translateY(-50%);}
  489. .container .count_wrap div:nth-child(2) ul li:first-child::before {display:none;}
  490. /* 검색필터 : START */
  491. .color-check input:checked ~ [class*="pdColor"]:after {content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,0.2) url(//image.istyle24.com/Style24/images/pc/ico_color_check.png) no-repeat 50% 50%; border-radius: 50%; z-index: 2;}
  492. .pdColor-color01::before {background-color: #000;}
  493. .pdColor-color02::before {background-color: #7f7f7f;}
  494. .pdColor-color03::before {background-color: #ff0306;}
  495. .pdColor-color04::before {background-color: #f98473;}
  496. .pdColor-color05::before {background-color: #ff99ec;}
  497. .pdColor-color06::before {background-color: #9c1d88;}
  498. .pdColor-color07::before {background-color: #9c5a28;}
  499. .pdColor-color08::before {background-color: #655611;}
  500. .pdColor-color09::before {background-color: #ffffaf;}
  501. .pdColor-color10::before {background-color: #ff8700;}
  502. .pdColor-color11::before {background-color: #012061;}
  503. .pdColor-color12::before {background-color: #0170c1;}
  504. .pdColor-color13::before {background-color: #bfffdd;}
  505. .pdColor-color14::before {background-color: #13b987;}
  506. .pdColor-color15::before {background-color: #5c5527;}
  507. .filter_list {background: url('//image.istyle24.com/Style24/images/pc/ico_filter02.png') no-repeat left 20px center; padding: 22px 30px; padding-left: 54px; border-top: 1px solid #222; border-bottom: 1px solid #ddd; max-height:60px; min-height:60px;}
  508. .filter_list::after {content:''; display: block; clear:both;}
  509. .filter_list .form_field {float: right; width:inherit;}
  510. .filter_list .form_field div:last-child {margin-left: 20px;}
  511. .filter_list > ul {float:left; display: flex;}
  512. .filter_list ul li {position: relative; margin-right: 40px;}
  513. .filter_list ul li a {color:#222; font-size: 16px; font-weight: 300;}
  514. .filter_list ul li.on a {color:#fd4802; font-weight:500;}
  515. .filter_list > ul > li:first-child button{padding-left: 30px; position: relative;}
  516. .filter_list > ul > li:first-child button span {color:#888;}
  517. .filter_list > ul > li:first-child button::before {display:none; content:''; position: absolute; width:12px; height:10px; background: url(//image.istyle24.com/Style24/images/pc/ico_filter.png)no-repeat; top:44%; left: 0; transform:translateY(-50%);}
  518. .filter_list > ul > li:hover > a {color:#fd4802;}
  519. .filter_list .form_field div label span {color:#666;}
  520. .filter_content .sort {display:none; position: relative; padding: 40px 35px 80px; border: 1px solid #ddd; border-bottom: 0; border-top: none;}
  521. .filter_content .sort.on {display:block;}
  522. .filter_content .sort .tap_close {position: absolute; bottom: 30px; right: 40px; display: block; width: 30px; height: 30px; text-indent: -9999px; background-image: url(//image.istyle24.com/Style24/images/pc/ico_pop_cls.png); background-size: contain; background-repeat: no-repeat; background-position: center center; z-index: 98;}
  523. .filter_content .sort > ul {max-height: 350px; min-height: 40px;overflow-y: auto;}
  524. .filter_content .sort label span {color:#666; font-size:14px; font-weight:300;}
  525. .filter_content .sort label input:checked + span {color:#fd4802; font-weight:500;}
  526. .filter_content .sort.tap01 > ul {position: relative;}
  527. .filter_content .sort.tap01 > ul > li {width: 170px; margin-bottom: 20px;}
  528. .filter_content .sort.tap01 ul li div {position: absolute; width:170px; left:170px; top:0; padding-left: 40px; display: none;}
  529. .filter_content .sort.tap01 ul li div::before {content:''; position: absolute; top:0; left:0; width:1px; height: 270px; background: #ccc;}
  530. .filter_content .sort.tap01 ul li div ul li {margin-bottom: 20px;}
  531. .filter_content .sort.tap01 ul li a {color:#666; position: relative;}
  532. .filter_content .sort.tap01 ul li a:hover {color:#fd4802;}
  533. .filter_content .sort.tap01 ul li.noDepth.on > a {color:#fd4802;}
  534. .filter_content .sort.tap01 ul li.noDepth.on > a::after {content:''; position:absolute; top:0; right:-18px; border-style:solid; border-width:5px; border-color:transparent transparent transparent #fd4802;}
  535. .filter_content .sort.tap02 { padding-right:0;}
  536. .filter_content .sort.tap02 ul::after {content:''; display: block; clear:both;}
  537. .filter_content .sort.tap02 ul li {/*float:left;*/ padding-right:40px; margin-bottom:20px;}
  538. .filter_content .sort.tap02 ul li {display: inline-flex;flex-direction: row;flex-wrap: nowrap;align-content: center;justify-content: space-around;align-items: center;}
  539. .filter_content .sort.tap03 {padding-right:0;}
  540. .filter_content .sort.tap03 ul li {position: relative; border-bottom: 1px solid #ccc; padding-left: 100px;padding-top: 30px;padding-bottom: 30px;}
  541. .filter_content .sort.tap03 ul li::after {content: ''; display: block; clear: both;}
  542. .filter_content .sort.tap03 ul li:first-child {padding-top: 0px;padding-bottom: 30px;}
  543. .filter_content .sort.tap03 ul li:first-child strong {top: 2px;}
  544. .filter_content .sort.tap03 ul li:last-child {padding-top: 30px;padding-bottom: 0px; border: none;}
  545. .filter_content .sort.tap03 ul li strong {width:100px;color:#222; font-weight:300; height: 21px;float: left; position: absolute; top: 32px; left: 0;}
  546. .filter_content .sort.tap03 ul li label {color:#666; margin-right:40px; margin-bottom: 3px; line-height: 1.4; display: inline-block; word-break:keep-all;position:relative;}
  547. .filter_content .sort.tap03 ul li label:last-child {margin-right:0;}
  548. .filter_content .sort.tap03 ul li .size_btn,
  549. .filter_content .sort.tap02 ul li .brand_btn,
  550. .filter_content .sort.tap06 ul li .Age_btn,
  551. .filter_content .sort.tap07 ul li .Season_btn,
  552. .filter_content .sort.tap09 ul li .Benefits_btn {cursor: pointer;}
  553. .filter_content .sort.tap03 ul li .size_btn input:checked+span,
  554. .filter_content .sort.tap02 ul li .brand_btn input:checked+span,
  555. .filter_content .sort.tap06 ul li .Age_btn input:checked+span,
  556. .filter_content .sort.tap07 ul li .Season_btn input:checked+span,
  557. .filter_content .sort.tap09 ul li .Benefits_btn input:checked+span {color:#fd4802;}
  558. .filter_content .sort.tap03 ul li .size_btn input,
  559. .filter_content .sort.tap02 ul li .brand_btn input,
  560. .filter_content .sort.tap06 ul li .Age_btn input,
  561. .filter_content .sort.tap07 ul li .Season_btn input,
  562. .filter_content .sort.tap09 ul li .Benefits_btn input{position: absolute; display: block; overflow: hidden; height: 1px; width: 1px; clip: rect(1px, 1px, 1px, 1px);}
  563. .filter_content .sort.tap04 ul {display: flex; justify-content: center; padding: 0 215px;}
  564. .filter_content .sort.tap04 ul::after {content: ""; position: absolute; left: 20%; top: 46px; width: 60%; height: 2px; background: #222; z-index: -2;}
  565. .filter_content .sort.tap04 ul li {text-align: center; width:20%;}
  566. .filter_content .sort.tap04 ul li:last-child {margin-right: 0;}
  567. .filter_content .sort.tap04 ul li input {position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;}
  568. .filter_content .sort.tap04 ul li input + label span:last-child {color:#666;}
  569. .filter_content .sort.tap04 ul li input:checked + label span:first-child {border-color: #fd4802;}
  570. .filter_content .sort.tap04 ul li input:checked + label span:last-child {color:#fd4802;}
  571. .filter_content .sort.tap04 ul li span {display: block; cursor: pointer;}
  572. .filter_content .sort.tap04 ul li span:first-child {position: relative; display: inline-block; width:10px; height: 10px; background: #fff; border: 2px solid #222; border-radius: 50%;}
  573. .filter_content .sort.tap04 ul li:first-child span:first-child::before {display: none;}
  574. .filter_content .sort.tap04 ul li input:checked + label span:first-child::before {content:''; position: absolute; width: 208px; height: 2px; top:2px; right:100%; background: #fd4802; z-index: -1;}
  575. .filter_content .sort.tap04 .range {width:1000px; margin: 0 auto;}
  576. .filter_content .irs {font-family: 'LATO', 'Noto Sans kr', sans-serif;}
  577. .range .irs--round .irs-from,
  578. .range .irs--round .irs-to,
  579. .range .irs--round .irs-single {background-color: #fff; color:#222; display: none;}
  580. .range .irs--round .irs-from:before,
  581. .range .irs--round .irs-to:before,
  582. .range .irs--round .irs-single:before {display: none;}
  583. .range .irs--round .irs-line {background-color:#222; height:2px; overflow:visible;}
  584. .range .irs--round .irs-line::before,
  585. .range .irs--round .irs-line::after {content:''; position:absolute; top:-6px; width:14px; height:14px; border:2px solid #222; background:#fff; border-radius:50%; box-sizing:border-box;}
  586. .range .irs--round .irs-line::before {left:0;}
  587. .range .irs--round .irs-line::after {right:0;}
  588. .range .irs--round .irs-bar {background-color: #fd4802; height: 2px;}
  589. .range .irs--round .irs-handle {width:14px; height:14px; top:50%; margin-top:-3px; border-color: #fd4802; border: 2px solid #fd4802; box-shadow: none; cursor:pointer; margin-left: 0;}
  590. .range .irs--round .irs-grid {z-index:0;}
  591. .range .irs--round .irs-grid-text {display:block; color:#666; font-size:14px; font-weight:300;}
  592. .range .irs--round .irs-min,
  593. .range .irs--round .irs-max {display: none;}
  594. .range .irs-grid-pol.small {display: none;}
  595. .range .irs-from,
  596. .range .irs-to,
  597. .range .irs-single {top:52px;}
  598. .range .irs-grid-pol {margin-left:1px}
  599. .filter_content .sort.tap05 ul {display: flex; justify-content: center; padding: 0 150px;}
  600. .filter_content .sort.tap05 ul::after {content: ""; position: absolute; left: 14.5%; top: 46px; width: 70.2%; height: 2px; background: #222; z-index: -2;}
  601. .filter_content .sort.tap05 ul li {text-align: center; width:10%;}
  602. .filter_content .sort.tap05 ul li:last-child {margin-right: 0;}
  603. .filter_content .sort.tap05 ul li input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;}
  604. .filter_content .sort.tap05 ul li input + label span:last-child {color:#666;}
  605. .filter_content .sort.tap05 ul li input:checked + label span:first-child {border-color: #fd4802;}
  606. .filter_content .sort.tap05 ul li input:checked + label span:last-child {color:#fd4802;}
  607. .filter_content .sort.tap05 ul li span {display: block; cursor: pointer;}
  608. .filter_content .sort.tap05 ul li span:first-child {position: relative; display: inline-block; width:10px; height: 10px; background: #fff; border: 2px solid #222; border-radius: 50%;}
  609. .filter_content .sort.tap05 ul li:first-child span:first-child::before {display: none;}
  610. .filter_content .sort.tap05 ul li input:checked + label span:first-child::before {content:''; position: absolute; width: 135px; height: 2px; top:2px; right:100%; background: #fd4802; z-index: -1;}
  611. .filter_content .sort.tap06 ul::after,
  612. .filter_content .sort.tap07 ul::after,
  613. .filter_content .sort.tap09 ul::after {content:''; display: block; clear: both;}
  614. .filter_content .sort.tap06 ul li,
  615. .filter_content .sort.tap07 ul li,
  616. .filter_content .sort.tap09 ul li {float: left; margin-right: 48px;margin-bottom: 20px;}
  617. .filter_content .sort.tap06 ul li:last-child,
  618. .filter_content .sort.tap07 ul li:last-child,
  619. .filter_content .sort.tap09 ul li:last-child {margin-right: 0;}
  620. .filter_content .sort.tap08 ul::after {content:''; display: block; clear:both;}
  621. .filter_content .sort.tap08 ul li {float: left; margin-left: 20px;}
  622. .filter_content .sort.tap08 ul li:first-child {margin-left: 0;}
  623. .filter_content .sort.tap08 ul li .color-check input {position:absolute; display:block; overflow:hidden; height:1px; width:1px; clip:rect(1px, 1px, 1px, 1px);}
  624. .filter_content .sort.tap08 ul li .color-check [class*="pdColor"],
  625. .filter_content [class*="pdColor"] {position: relative; display: inline-block; width:26px; height: 26px; cursor: pointer;border-radius: 50%;box-sizing: border-box;}
  626. .filter_content .sort.tap08 ul li [class*="pdColor"]:before {content: ""; display: inline-block; width: 100%; height: 100%; border-radius: 50%; box-sizing: border-box;}
  627. .fillter {display: none; position: relative; padding: 25px 20px; padding-bottom: 10px; padding-right: 115px; background: #f5f5f5; border:1px solid #ddd; border-top: 0;}
  628. .fillter::after,
  629. .fillter .fillter_box::after {content:''; display: block; clear:both;}
  630. .fillter .fillter_box > span {float:left; position:relative; padding-right:20px; margin-right:30px; margin-bottom:10px; vertical-align:middle; color:#666; font-size:14px; font-weight:500; line-height:1;}
  631. .fillter .fillter_box [class*="pdColor"] {position: relative; display: inline-block; width:13px; height: 13px; /*cursor: pointer;*/ margin-right: 0; margin-bottom: 0; padding-right: 0;}
  632. .fillter .fillter_box [class*="pdColor"]:before { content: ""; display: inline-block; width: 13px; height: 13px; border-radius: 50%; box-sizing: border-box;}
  633. .fillter .fillter_box [class*="pdColor"] + .filter_delete {top:1px}
  634. .fillter .fillter_box .filter_delete {position:absolute; top:-1px; right: 0; background: url('//image.istyle24.com/Style24/images/pc/ico_filter_close.png') no-repeat 50% 50%; width:14px; height:14px;}
  635. .fillter .fillter_reset {position: absolute; top:50%; right:10px; transform:translateY(-50%); padding:10px 10px 10px 20px; background: #f5f5f5; line-height:1 !important;}
  636. .fillter .fillter_reset::before {content:''; position: absolute; top:50%; left:0px; transform: translateY(-50%); width:11px; height: 9px; background: url(//image.istyle24.com/Style24/images/pc/ico_filter_reset.png)no-repeat;}
  637. .fillter .fillter_reset span {color:#222; font-size:14px; font-weight:300;}
  638. /* 검색필터 : END */
  639. /* modal popup */
  640. .modal .input_wrap .form_control {float:none; width: 100%; padding:5px 20px;}
  641. .modal .input_wrap .form_control,
  642. .modal .form_field .select {height: 42px; font-size: 14px;}
  643. .modal .select_dress {padding:11px 20px;}
  644. .modal .desc {color:#999; font-size: 14px;}
  645. .modal .input_wrap {width: 100%;}
  646. .modal .modal-body section {margin-bottom: 0px;}
  647. .modal .modal-footer {text-align: center;}
  648. .modal .modal-footer button.btn {width: 100%; height: 60px; font-size: 18px; font-weight:300;}
  649. .modal div::after,
  650. .modal ul::after,
  651. .modal dl::after {content:''; clear:both; display:block;}
  652. .modal .form_field input[type="radio"] + label {padding-left:30px;}
  653. .modal .form_field input[type="radio"] + label:before,
  654. .modal .form_field input[type="radio"]:checked + label:after,
  655. .modal .form_field input[type="checkbox"] + label:before,
  656. .modal .form_field input[type="checkbox"]:checked + label:after,
  657. .modal .form_field input[type="checkbox"]:disabled + label:after {top:50%; transform:translateY(-50%);}
  658. /* layout */
  659. .container {width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; *zoom:1;}
  660. .container:after {clear:both; content:"";display:block;}
  661. .container .wrap {position:relative; width:100%; min-width:1360px; max-width:1920px; margin:0px auto; box-sizing:border-box;}
  662. .container .wrap .content {position:relative; margin-left:auto; margin-right:auto; padding-left:70px; padding-right:70px;}
  663. .container .wrap .content:after {content:''; clear:both; display:block;}
  664. .container .wrap .content.wide {width:100%; padding-left:0px; padding-right:0px; margin-left:auto; margin-right:auto;}
  665. .container .wrap .content section {display:block;}
  666. /* max-width: 1820px; */
  667. /* min-width: 1350px; */
  668. @media screen and (max-width:1459px) {}
  669. /* 검색 */
  670. .fs25 {font-size: 25px;}
  671. .fs18 {font-size: 18px;}
  672. .fwb {font-weight:bold;}
  673. /* breadcrumb */
  674. .breadcrumb {padding:0px 70px; margin:40px auto 60px;}
  675. .breadcrumb ul li {display: inline-block; color: #888;}
  676. .breadcrumb ul li:last-child {color:#222; font-weight: 300;}
  677. .breadcrumb ul li:first-of-type::before {content:none;}
  678. .breadcrumb ul li::before {content:''; display: inline-block; width:6px; height: 11px; padding: 0 12px; background: url('//image.istyle24.com/Style24/images/pc/ico_bread_root.png')no-repeat center center;}
  679. .area_top_list_info {position:relative; width:100%; margin:60px auto 30px}
  680. .area_top_list_info .total_count {font-size:16px; color:#888; font-weight:200;}
  681. .area_top_list_info .total_count span {color:#fd4802; font-weight:300;}
  682. .area_top_list_info .ui_right {position:absolute; right:0; top:50%; transform:translateY(-50%);}
  683. .area_thumb_list .thumb_list ul li {float:left; width:calc((100% - 60px)/4); margin-left:20px; margin-top:70px;}
  684. .area_thumb_list .thumb_list ul li:nth-child(4n-3){margin-left:0;}
  685. .area_thumb_list .thumb_list ul li:nth-child(-n+4) {margin-top:0;}
  686. .area_thumb_list .thumb_list ul li a {display:block; position:relative;}
  687. .area_thumb_list .thumb_list ul li a .rank {z-index:2;}
  688. .area_thumb_list .thumb_list ul li a .thumb {display:block; position:relative; width:100%; height:0; padding-top:100%; background:#f5f5f5;}
  689. .area_thumb_list .thumb_list ul li a .thumb img {position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%; z-index:1;}
  690. .area_thumb_list .thumb_list ul li a .txt {margin-top:15px; padding:0px 5px 0px;}
  691. .area_thumb_list .thumb_list ul li a .txt .title {display:block; display: -webkit-box; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; height:68px; line-height:34px; color:#222; font-weight:500; font-size:24px; word-break:keep-all; white-space:normal;}
  692. .area_thumb_list .thumb_list ul li a .txt .date {display:block; margin-top:15px; color:#888; font-size:14px; font-weight:300;}
  693. .area_thumb_list .nodata {padding:80px 0 100px; text-align:center;}
  694. .area_thumb_list .nodata .txt_box {color:#666; font-size:16px; font-weight:300; line-height:26px;}
  695. .area_thumb_list .nodata .txt_box::before {content:''; display:block; width:36px; height:46px; margin:0 auto 24px; background:url('//image.istyle24.com/Style24/images/pc/ico_content_none.png') no-repeat;}
  696. .area_thumb_list .nodata .txt_box span {color:#fd4802; font-weight:500;}
  697. .area_thumb_list .nodata .btn_box {margin-top:40px;}
  698. .area_thumb_list .nodata .btn_box .btn span {color:#222; font-size:14px; font-weight:300;}
  699. /* swiper_nav_style */
  700. .content .swiper-pagination-bullet{display:inline-block; margin:0 5px; background:#dddddd !important; opacity:1!important; width:10px !important; height:10px !important; vertical-align: middle;}
  701. .content .swiper-pagination-bullet-active{background-color:#fd4802 !important;}
  702. .content .swiper-pagination-progressbar {background: #dddddd !important;}
  703. .content .swiper-pagination-progressbar-fill {background: #222222 !important;}
  704. .content .swiper-scrollbar {background:#ddd; height:2px; opacity: 1 !important;}
  705. .content .swiper-scrollbar-drag {border-radius:0; background:#222;}
  706. .content .swiper-button-prev,
  707. .content .swiper-button-next {display:inline-block; width:26px; height:50px; background-image:url('//image.istyle24.com/Style24/images/pc/ico_slide_arrow.png'); background-repeat:no-repeat; background-size:auto 100%;}
  708. .content .swiper-button-prev {background-position:0 50%;}
  709. .content .swiper-button-next {background-position:100% 50%;}
  710. .content .swiper-button-prev::after,
  711. .content .swiper-button-next::after {display:none; color:transparent;}
  712. .content .swiper-button-prev.white,
  713. .content .swiper-button-next.white {background-image:url('//image.istyle24.com/Style24/images/pc/ico_slide_arrow_white.png');}
  714. /* content */
  715. .cont_body::after {content: ''; display: block; clear: both;}
  716. @media screen and (max-width: 1620px){
  717. /*.container .wrap,*/
  718. .breadcrumb,
  719. .common_header > .area,
  720. .gnb,
  721. .common_footer,
  722. #header.minify .common_header > .area,
  723. #header.minify .common_header > .gnb,
  724. #br_header.minify .common_header > .area,
  725. #br_header.minify .common_header > .gnb {padding-left:70px; padding-right:70px;}
  726. /*.container.dp .wrap {padding-left:70px; padding-right:70px;}*/
  727. .container.dp.omitt .wrap {padding: 0;}
  728. .container.dp.omitt .list_content {padding: 0 70px;}
  729. }
  730. @media screen and (max-width: 1459px){
  731. }
  732. @media (min-width:1440px){
  733. .visual > .area{height:532px;}
  734. }
  735. @media screen and (max-width: 1439px) {
  736. .visual > .area{height:445px;}
  737. }
  738. @keyframes caption_animation {
  739. from {right:30px;bottom:20px;opacity:0}
  740. to {bottom:41px;opacity:1}
  741. }
  742. @keyframes img_animation_a {
  743. from {top:30px;opacity:0}
  744. to {top:0;opacity:1}
  745. }
  746. @keyframes img_animation_b {
  747. from {left:30px;opacity:0}
  748. to {left:0;opacity:1}
  749. }
  750. .area .banner_left {top:0}
  751. .area .banner_right {top:0}
  752. /* LNB_layout */
  753. .lnb,.my_lnb {float: left; width:17.80822%;}
  754. .lnb + .cont,.my_cont {float: left; width:82.191780%;}
  755. .lnb + .cont {float:right;}
  756. .lnb_tit,.sec_head {margin-bottom: 60px;}
  757. .lnb_tit h2 {font-size: 36px; font-weight: 500;}
  758. .lnb_list ul li {margin-bottom:35px; line-height:1;}
  759. .lnb_list ul li a {color:#888; font-size:19px; font-weight:200; letter-spacing:-0.025em;}
  760. .lnb_list ul li a.on {color:#222; border-bottom: 2px solid #222; font-weight:500;}
  761. .lnb .lnb_category {padding-bottom:30px; border-bottom:1px solid #ddd; line-height:1;}
  762. .lnb .lnb_category .category > li > a.on,
  763. .lnb .lnb_category .sub_cate ul > li > a.on {color:#fd4800; font-weight:300;}
  764. .lnb .lnb_category .category > li > a.on::before,
  765. .lnb .lnb_category .sub_cate ul > li > a.on::before {content:''; position:absolute; bottom:1px; left:0; right:0; width:100%; border-bottom:1px solid #fd4800;}
  766. .lnb .lnb_category .category > li {margin-top:20px;}
  767. .lnb .lnb_category .category > li:first-child {margin-top:0;}
  768. .lnb .lnb_category .category > li a {display:inline-block; position:relative; color:#222; font-size:20px; font-weight:300;}
  769. .lnb .lnb_category .sub_cate {display:none; padding-bottom:10px;}
  770. .lnb .lnb_category .sub_cate > ul > li {margin-top:16px;}
  771. .lnb .lnb_category .sub_cate > ul > li > .sub_cate {padding-left:15px;}
  772. .lnb .lnb_category .sub_cate > ul > li > a {color:#888; font-weight:200;}
  773. .lnb .lnb_category .category > li > .sub_cate > ul > li > a {font-size:18px}
  774. .lnb .lnb_category .category > li > .sub_cate > ul > li > .sub_cate > ul > li > a {font-size:16px;}
  775. .lnb .lnb_category .category > li > .sub_cate > ul > li > .sub_cate > ul > li > .sub_cate > ul > li > a {font-size:16px;}
  776. .lnb .lnb_category .category > li > .sub_cate > ul > li > .sub_cate > ul > li > .sub_cate > ul > li > a::after {content:''; position:absolute; left:-15px; top:50%; transform:translateY(-50%); width:6px; height:6px; background:url('//image.istyle24.com/Style24/images/pc/ico_bracket.png') no-repeat 50% 50%; background-size:100% 100%;}
  777. .lnb .lnb_category .category > li > .sub_cate > ul > li > .sub_cate > ul > li > .sub_cate > ul > li > a.on::after {background-image:url('//image.istyle24.com/Style24/images/pc/ico_bracket_primary.png');}
  778. @media screen and (max-width:1459px) {
  779. .lnb, .my_lnb {width: 17.80822%;padding-left: 70px;}
  780. .lnb + .cont {width: 79.19178%;margin-right: 15px;}
  781. }
  782. .lnb_foot {padding-top:30px; line-height:1;}
  783. .lnb_foot ul li {margin-bottom:20px;}
  784. .lnb_foot ul li p {color:#222; font-weight:300; font-size:14px; line-height:1;}
  785. .lnb_foot ul li:nth-child(2) p {font-size:28px; font-weight:800;}
  786. .lnb_foot ul li:nth-child(3) p {color:#888; line-height:20px;}
  787. .dp .lnb, .sch_result .lnb {width:230px;}
  788. .dp .lnb_tit, .sch_result .lnb_tit {margin-bottom:30px;}
  789. .dp .lnb_tit h3, .sch_result .lnb_tit h3 {padding:20px 0 20px 32px; margin-bottom: 0; max-height:60px; min-height:60px; border-top: 1px solid #222; border-bottom: 1px solid #ddd; background:url('//image.istyle24.com/Style24/images/pc/ico_lnb_category.png') no-repeat 2px 50%; text-align:left;}
  790. .dp .lnb_tit h3, .sch_result .lnb_tit h3 {font-size: 18px;}
  791. /* 상품리스트 > 상품 form */
  792. .item_gd figure {padding:0; margin:0}
  793. .item_gd figure a {display:block; position:relative;}
  794. .item_gd figure::after {clear:both; display:block; content:'';}
  795. .item_gd figure figcaption {display:block;}
  796. .item_gd figure figcaption a {display:block;}
  797. .item_gd figure figcaption .brand {margin-top:0; color:#888; font-size:12px; font-weight:300;}
  798. .item_gd figure figcaption .name {color:#222; font-size:14px; font-weight:300; line-height:1.4; display:-webkit-box; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical;}
  799. .item_gd figure figcaption .price {line-height:20px;}
  800. .item_gd figure figcaption .price::after {content:''; display:block; clear:both;}
  801. .item_gd figure figcaption .price .selling_price {float:left; color:#222; font-size:16px; font-weight:500;}
  802. .item_gd figure figcaption .price del {float:left; padding-left:10px; color:#888; font-size:14px; font-weight:300;}
  803. .item_gd figure figcaption .price .discount {color:#fd4802; font-size:16px; font-weight:300;}
  804. .item_gd figure figcaption .option {color:#888; font-size:12px; line-height:1.4;}
  805. .item_gd span.thumb {display:block; position:relative; height:0; line-height:0; padding-top:150%; background-color:#eee;}
  806. .item_gd span.thumb img {position:absolute; left:0; top:50%; transform:translateY(-50%); bottom:0; width:100%; z-index:2;}
  807. /* 상품리스트 slide */
  808. .item_slide .item_gd {padding:0 10px;}
  809. .item_slide .item_gd figcaption {padding:0 5px;}
  810. .item_slide .item_gd a .brand {margin-top:20px;}
  811. .item_slide .item_gd a .name {margin-top:15px;}
  812. .item_slide .item_gd a .price {margin-top:40px;}
  813. .item_slide .item_gd a .price .discount {float:right;}
  814. .item_slide .item_gd a .itemLike {right:20px; top:20px;}
  815. .item_slide .slick-dots {bottom:-70px;}
  816. .item_slide .slick-dots li button {background-color:#ddd;}
  817. .item_slide .slick-prev,
  818. .item_slide .slick-next {position:absolute; top:50%; transform:translateY(-50%); margin-top:-60px; font-size:0;}
  819. .item_slide .slick-prev {left:-50px;}
  820. .item_slide .slick-next {right:-50px;}
  821. .item_slide .slick-prev::after,
  822. .item_slide .slick-next::after {content: ''; display:inline-block; width:27.5px; height:50px; background:url(//image.istyle24.com/Style24/images/pc/ico_arr_lg.png) no-repeat;}
  823. .item_slide .slick-prev::after {background-position:0 50%;}
  824. .item_slide .slick-next::after {background-position:100% 50%;}
  825. /* 테이블 type1 수평 행,열별 구분선 없음 */
  826. .tbl.type1 {padding:15px 0; border-top:1px solid #000; border-bottom:1px solid #ddd;}
  827. .tbl.type1 table {text-align:left; word-break:keep-all;}
  828. .tbl.type1 table th,
  829. .tbl.type1 table td {position:relative; font-weight:200; font-size:16px; letter-spacing:-0.025em;}
  830. .tbl.type1 table th {padding:10px 0px 10px 40px; font-weight:500; text-align: left;}
  831. .tbl.type1 table td {padding:10px 40px 10px 0px;}
  832. .tbl.type1 table tr td:first-child {padding-left:40px;}
  833. .tbl.type1 table tr td:last-child {padding-right:40px;}
  834. /* 테이블 type2 - 수직형 행,열별 구분선 있음 */
  835. .tbl.type2 {padding:0; border-top:1px solid #000;}
  836. .tbl.type2 table {word-break:keep-all;}
  837. .tbl.type2 table th,
  838. .tbl.type2 table td {position:relative; padding:20px 0; border-bottom:1px solid #ddd; font-weight:500; font-size:16px; letter-spacing:-0.025em; text-align:center;}
  839. .tbl.type2 table th {font-weight:500;}
  840. /* 테이블 type3 - 결제정보 (구 버전) */
  841. .tbl.type3 {padding:0; border:1px solid #000;}
  842. .tbl.type3 table {word-break:keep-all;}
  843. .tbl.type3 table th,
  844. .tbl.type3 table td {position:relative; padding:25px 40px; border-bottom:1px solid #ddd; border-left:1px solid #ddd; font-weight:200; font-size:16px; letter-spacing:-0.025em; text-align:left; vertical-align:top;}
  845. .tbl.type3 table th {font-weight:300;}
  846. .tbl.type3 table tr:last-child td {border-bottom:none;}
  847. /* 테이블 type4 - 수평 th 컬러구분 */
  848. .tbl.type4 table {border-top:1px solid #000;}
  849. .tbl.type4 table th,
  850. .tbl.type4 table td {padding-top:25px; padding-bottom:25px; border-bottom:1px solid #ddd; font-size:16px; letter-spacing:-0.5px; text-align:center;}
  851. .tbl.type4 table th {background:#f5f5f5; color:#222; font-weight:500;}
  852. .tbl.type4 table td {position:relative; font-weight:200;}
  853. /* 테이블 type5 - 수직형 행,열별, th구분선 있음 */
  854. .tbl.type5 {padding:0; border-top:1px solid #000;}
  855. .tbl.type5 table {word-break:keep-all;}
  856. .tbl.type5 table th,
  857. .tbl.type5 table td {position:relative; padding:20px 0; font-size:16px; letter-spacing:-0.025em; text-align:center;}
  858. .tbl.type5 table td {border-bottom:1px solid #ddd; font-weight:200;}
  859. .tbl.type5 table th {border-bottom:1px solid #000; font-weight:500;}
  860. /* 테이블 type6 - 결제정보 (신 버전) */
  861. .tbl.type6 {padding:35px 0; border-top:1px solid #000; border-bottom:1px solid #ddd;}
  862. .tbl.type6 table {text-align:left; word-break:keep-all;}
  863. .tbl.type6 table th,
  864. .tbl.type6 table td {position:relative; padding:0px 40px; font-weight:200; font-size:16px; letter-spacing:-0.025em; border-left:1px dashed #ddd; vertical-align:top;}
  865. .tbl.type6 table th {font-weight:500;}
  866. .tbl.type6 table tr td:first-child {border-left:none;}
  867. .tbl.type6 table tr td dl::after,
  868. .tbl.type6 table tr td dl > div::after {content: '';display: block;clear: both;}
  869. .tbl.type6 table tr td > dl {margin-top:20px;}
  870. .tbl.type6 table tr td > dl:first-child {margin-top:0px;}
  871. .tbl.type6 table td dl dt {float:left; font-size:16px; font-weight:300; color:#222;}
  872. .tbl.type6 table td dl dd {float:right; font-size:15px; font-weight:200; color:#222;}
  873. .tbl.type6 table td dl dd em {font-size:16px;}
  874. .tbl.type6 table td dl dd .btn.btn_sm {height:34px; margin-top:-8px; margin-left:10px; padding:10px 14px; font-size:14px;}
  875. .tbl.type6 table td dl dd .btn.btn_sm:first-child {margin-left:0;}
  876. .tbl.type6 table td dl dd .btn.btn_sm span {vertical-align:top; font-weight:200; line-height:1;}
  877. .tbl.type6 table td dl dd .btn.btn_sm.btn_default {color:#222; border:1px solid #a7a7a7;}
  878. .tbl.type6 table td dl .price {font-size:22px; font-weight:700;}
  879. .tbl.type6 table td dl .price em {font-size:24px;}
  880. .tbl.type6 table td dl .price .oder_total_price {color:#222;}
  881. .tbl.type6 table td dl .price .pay_total_price {color:#fd4802;}
  882. .tbl.type6 table td dl .price .return_total_price {color:#fd4802;}
  883. .tbl.type6 table td dl .save_point {position:relative; padding-left:22px;}
  884. .tbl.type6 table td dl .save_point::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:16px; height:16px; background:url('//image.istyle24.com/Style24/images/pc/ico_point.png') no-repeat 0 50%;}
  885. .tbl.type6 table td dl > div {margin-top:20px;}
  886. .tbl.type6 table td dl > div:first-child {margin-top:0px;}
  887. .tbl.type6 table td dl > div.include_item dt {padding-left:15px; background:url('//image.istyle24.com/Style24/images/pc/ico_bracket2.png') no-repeat 0 50%;}
  888. /* 테이블 내용 나열 폼 */
  889. .tbl th,
  890. .tbl td {vertical-align:top;}
  891. .tbl td .single_line::after {content:''; clear:both; display:block;}
  892. .tbl td .single_line ul li {float:left; position:relative; padding:0px 15px; margin:0;}
  893. .tbl td .single_line ul li::before {content:''; position:absolute; width:1px; height:14px; left:0px; top:50%; transform:translateY(-50%); background:#ddd;}
  894. .tbl td .single_line ul li:first-child {padding-left:0;}
  895. .tbl td .single_line ul li:first-child::before {display:none;}
  896. .tbl td .single_line ul li > span {margin-right:0;}
  897. .tbl td .block_line {position:relative;}
  898. .tbl td .block_line ul li {margin-top:5px; height:100%;}
  899. .tbl td .block_line ul li:first-child {margin-top:0;}
  900. .tbl td .block_line ul li > span {vertical-align:top;}
  901. .tbl td .block_line ul li .tag {margin-left:6px; margin-top:2px; vertical-align:top;}
  902. .tbl td .block_line ul li .btn.btn_sm {height:34px; margin-top:-6px; padding:10px 14px; font-size:14px; font-weight:200;}
  903. /* 스크롤 테이블 */
  904. .tbl.scroll_tbl {position: relative;}
  905. .tbl.scroll_tbl::before {display:none; content:''; position: absolute; top: 0; right: 0; width: 2rem; height: 100%; background:linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 1%,rgba(255,255,255,0.5) 36%,rgba(255,255,255,1) 100%); z-index: 5;}
  906. .tbl.scroll_tbl::after {content:''; clear:both; display: block;}
  907. .tbl.scroll_tbl table th, .tbl.scroll_tbl table td {padding:20px 10px;}
  908. .tbl.scroll_tbl .head_t {float:left; width: 25% !important; display: block;}
  909. .tbl.scroll_tbl .head_t td {font-weight: 400;}
  910. .tbl.scroll_tbl .head_t + .body_t {width: 75% !important;}
  911. .tbl.scroll_tbl .body_t {float:left; width: 100% !important; display: block; white-space: nowrap; overflow-x: auto;}
  912. /* 별점노출 */
  913. .star_score {position:relative; height:14px;}
  914. .star_score .star {display:inline-block; position:relative; width:95px; height:14px; background:#f5f5f5;}
  915. .star_score .star::after {content:''; position:absolute; left:0; top:0; z-index:3; width:100%; height:14px; background:url('//image.istyle24.com/Style24/images/pc/star_empty.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
  916. .star_score .star .progbar {display:inline-block; height:14px; background:#fd4802;}
  917. .star_score .score {color:#222; font-size:16px; font-weight:200; line-height:1;}
  918. .star_score .score em {font-weight:500;}
  919. /* 배송관련 아이콘 */
  920. .tag {display:inline-block; height:22px; padding:5px 8px; border:1px solid #ddd; color:#666; font-size:11px; font-weight:300; text-align:center; line-height:1;}
  921. .tag.gray {background:#f5f5f5; border-color:#f5f5f5; color:#666;}
  922. .tag.deepgray {background:#aaa; border-color:#aaa; color:#fff;}
  923. .tag.primary {background:#fd4802; border-color:#fd4802; color:#fff;}
  924. .tag.primary_line {background:#fff3f2; border-color:#fd4802; color:#fd4802;line-height: 14px;}
  925. /* 밑줄 탭 스타일 */
  926. .taps {text-align:center;}
  927. .taps > div {display:inline-block;}
  928. .taps > div > ul::after {content:''; clear:both; display:block;}
  929. .taps > div > ul li {float:left; padding:0px 20px;}
  930. .taps > div > ul li a {display:block; border-bottom:2px solid #fff; color:#888; font-size:20px; font-weight:200;line-height: 20px; padding-bottom: 2px;}
  931. .taps > div > ul li.active a {border-color:#222; color:#222; font-weight:500;}
  932. .taps > div > ul li a > span {display:inline-block;}
  933. /* 안내1 */
  934. .com_info_txt {padding:40px 40px 35px; border:1px solid #ddd;}
  935. .com_info_txt .tit {position: relative; font-size: 16px; color: #666; padding-left:30px; font-weight:300; line-height:1;}
  936. .com_info_txt .tit:after {content:''; position: absolute; top:50%; left:0; transform:translateY(-50%); width: 20px; height: 20px; margin-top:-1px; background: url(//image.istyle24.com/Style24/images/pc/ico_null02.png) no-repeat center;}
  937. .com_info_txt ul {margin-top:15px;}
  938. .com_info_txt ul li {position: relative; font-size: 14px; color: #888; padding-left: 15px; margin-top:5px; line-height:24px; font-weight:200;}
  939. .com_info_txt ul li:first-child {margin-top:0;}
  940. .com_info_txt ul li:after {content:''; position: absolute; top:9px; left: 0; background: #858585; width: 3px; height: 3px;}
  941. /* 안내2 */
  942. .announce_txt {position:relative; max-width:1200px; margin:auto;}
  943. .announce_txt::after {content:''; clear:both; display:block;}
  944. .announce_txt .note_txt {float:left; width:65px; margin-top:2px; margin-right:60px; text-align:center;}
  945. .announce_txt .note_txt p {color:#888; font-size:18px; font-weight:300; margin-top:20px;}
  946. .announce_txt .announce_list {float:left; width:calc(100% - 125px);}
  947. .announce_txt .announce_list .tit {color:#888; font-size:16px; font-weight:300; margin-bottom:20px;}
  948. .announce_txt .announce_list ul {margin-bottom:40px;}
  949. .announce_txt .announce_list ul:last-of-type {margin-bottom:0px;}
  950. .announce_txt .announce_list ul li {position: relative; margin-top:5px; padding-left:12px; color:#888; font-size:16px; font-weight:200; line-height:24px;}
  951. .announce_txt .announce_list ul li:before {content:''; position:absolute; top:10px; left:0; width:2px; height:2px; background:#888;}
  952. .announce_txt .announce_list ul li:first-child {margin-top:0;}
  953. /* 주문내역 테이블 리스트 */
  954. .part_deliver {position:relative;}
  955. .part_deliver .tbl.type2 {border-bottom:1px solid #ddd;}
  956. .part_deliver .tbl.type2 table td {padding-top:0px; padding-bottom:0px; border-bottom:none; border-top:1px dashed #ddd; border-left:1px solid #ddd; vertical-align:middle;}
  957. .part_deliver .tbl.type2 table td.merge_row {border-top:1px solid #ddd;}
  958. .part_deliver .tbl.type2 table tr.bundle_row {border-top:1px solid #ddd;}
  959. .part_deliver .tbl.type2 table tr:first-of-type {border-top:none;}
  960. .part_deliver .tbl.type2 table tr:first-of-type td.merge_row {border-top:none;}
  961. .part_deliver .tbl.type2 table td:first-child {border-left:none;}
  962. .part_deliver .tbl.type2 table tr.bundle_row td:first-child {border-top:none;}
  963. .part_deliver table .info_item {display:table; position:relative; width:900px; text-align:left; box-sizing:border-box;}
  964. .part_deliver table .info_item > div {display:table-cell; vertical-align:middle; padding-top:30px; padding-bottom:30px;}
  965. .part_deliver table .info_item .form_box {width:40px; position:relative; height:150px; vertical-align:top;}
  966. .part_deliver table .info_item .thumb_box {width:100px; height:150px; vertical-align:top;}
  967. .part_deliver table .info_item .thumb_box a {display:block; background:#f5f5f5;}
  968. .part_deliver table .info_item .info_box {padding-left:30px; padding-right:30px;}
  969. .part_deliver table .info_item .info_box > * {line-height:1;}
  970. .part_deliver table .info_item .info_box .od_name a {display:block;}
  971. .part_deliver table .info_item .info_box .od_name span {display:inline-block; line-height:1;}
  972. .part_deliver table .info_item .info_box .od_name .brand {color:#888; font-size:14px; font-weight:200;}
  973. .part_deliver table .info_item .info_box .od_name .reserv_date {position:relative; padding-left:10px; margin-left:10px; color:#fd4802; font-size:14px; font-weight:200;}
  974. .part_deliver table .info_item .info_box .od_name .reserv_date::before {content:''; position:absolute; left:-1px; top:50%; transform:translateY(-50%); width:1px; height:10px; border-left:1px solid #ddd;}
  975. .part_deliver table .info_item .info_box .od_name .name {width:100%; max-height:44px; margin-top:7px; color:#222; font-size:16px; font-weight:300; line-height:22px; display:-webkit-box; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical; word-break:break-all;}
  976. .part_deliver table .info_item .info_box .od_opt {margin-top:14px; color:#666; font-size:14px;}
  977. .part_deliver table .info_item .info_box .od_opt .option {display:block;}
  978. .part_deliver table .info_item .info_box .od_opt .count {display:block; margin-top:12px;}
  979. .part_deliver table .info_item .info_box .od_opt em {position:relative; padding-left:10px; margin-left:10px;}
  980. .part_deliver table .info_item .info_box .od_opt em::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); height:10px; border-left:1px solid #ddd;}
  981. .part_deliver table .info_item .info_box .od_opt em:first-child {padding-left:0; margin-left:0;}
  982. .part_deliver table .info_item .info_box .od_opt em:first-child::before {border-left:0;}
  983. .part_deliver table .info_item .info_box .od_modify {margin-top:17px;}
  984. .part_deliver table .info_item .info_box .od_modify button {display:inline-block; width:110px; height:34px; border:1px solid #a7a7a7; box-sizing:border-box; text-align:center;}
  985. .part_deliver table .info_item .info_box .od_modify button span {display:inline-block; color:#222; font-size:14px; font-weight:200; line-height:2.5;}
  986. .part_deliver table .info_item .info_box .od_moresale {position:relative; margin-top:20px; font-size:14px;}
  987. .part_deliver table .info_item .info_box .od_moresale .ico {margin-right:10px;}
  988. .part_deliver table .info_item .info_box .od_moresale .btn_moresale {display:inline-block; position:relative; padding-right:20px; color:#fd4802;}
  989. .part_deliver table .info_item .info_box .od_moresale .btn_moresale::after {content:""; position:absolute; right:0; top:1px; transform:rotate(90deg); width:7px; height:13px; background:url(//image.istyle24.com/Style24/images/pc/ico_mb_arrow2.png) no-repeat 0 0; background-size:auto 100%;}
  990. .part_deliver table .info_item .info_box .od_moresale .btn_moresale.active::after {transform:rotate(-90deg);}
  991. .part_deliver table .info_item .info_box .od_moresale .btn_moresale span {line-height:18px;}
  992. .part_deliver table .info_item .info_box .od_moresale .li_moresale {display:none; position:absolute; left:0px; top:26px; padding:20px 25px 20px 20px; border:1px solid #ddd; background-color:#fff; z-index:2;}
  993. .part_deliver table .info_item .info_box .od_moresale .li_moresale ul li {position:relative; padding-left:10px; color:#666; font-size:14px; line-height:2;}
  994. .part_deliver table .info_item .info_box .od_moresale .li_moresale ul li::before {content:''; position:absolute; left:0px; top:50%; transform:translateY(-50%); width:2px; height:2px; background-color:#666;}
  995. .part_deliver table .info_item .info_box .od_moresale .li_moresale ul li:first-child {margin-top:0;}
  996. .part_deliver table .info_item .info_box .od_moresale .li_moresale ul li a {margin-left:20px; padding-right:15px; background:url(//image.istyle24.com/Style24/images/pc/ico_mb_arrow2.png) no-repeat 100% 0%; color:#fd4802; font-weight:200; line-height:inherit;}
  997. .part_deliver table .info_item .info_calc {width:190px; text-align:center;}
  998. .part_deliver table .info_item .info_calc .btn {width:78px; height:34px; padding:0; font-size:14px; font-weight:200; box-sizing:border-box;}
  999. .part_deliver table .info_calc .price .selling_price {display:block; color:#222; font-size:20px; font-weight:300;}
  1000. .part_deliver table .info_calc .price .selling_price.msale {color:#fd4802;}
  1001. .part_deliver table .info_calc .price del {display:block; margin-top:8px; margin-bottom:5px; color:#888; font-size:12px; font-weight:300; line-height:1;}
  1002. .part_deliver table .info_calc .point {margin-top:10px; margin-bottom:15px; color:#888; font-size:14px; font-weight:200;}
  1003. .part_deliver table .info_calc .util {display:inline-block; margin-top:10px;}
  1004. .part_deliver table .info_calc .util::after {content:''; clear:both; display:block;}
  1005. .part_deliver table .info_calc .util > span {float:left; position:relative; margin-left:24px;}
  1006. .part_deliver table .info_calc .util > span::before {content:''; position:absolute; left:-13px; top:50%; transform:translateY(-50%); width:1px; height:10px; background-color:#ddd;}
  1007. .part_deliver table .info_calc .util > span:first-child {margin-left:0;}
  1008. .part_deliver table .info_calc .util > span:first-child::before {display:none;}
  1009. .part_deliver table .info_calc .util button {position:relative; display:inline-block;}
  1010. .part_deliver table .info_dlvr .dlvr_fee {display:block; color:#222; font-size:18px; font-weight:300;}
  1011. .part_deliver table .info_dlvr .dlvr_shop {display:block; margin-top:12px; color:#666; font-size:14px; font-weight:200;}
  1012. .part_deliver table .info_dlvr a {display:inline-block; margin-top:12px; border-bottom:1px solid #888; color:#888; font-size:12px; font-weight:200; line-height:1.2;}
  1013. .part_deliver table .info_item.unable .info_unable {display:block; padding:20px 0 0 0; color:#fd4802; font-size:14px;}
  1014. .part_deliver table .info_item.unable .info_calc .btn {opacity:1; background-color:#aaa; color:#fff; border-color:#aaa;}
  1015. /* 주문내역 테이블 리스트 ver.1 */
  1016. .part_goods {display:block; position:relative; border:1px solid #ddd;}
  1017. .part_goods::after,
  1018. .part_goods div::after {content:''; display:block; clear:both;}
  1019. .part_goods .goods_head {padding:20px 40px; background:#f5f5f5}
  1020. .part_goods .goods_head p {float:left; color:#888; font-size:18px; font-weight:300;}
  1021. .part_goods .goods_head p span {margin-left:15px; color:#222; font-weight:500;}
  1022. .part_goods .goods_head a {float:right; height:16px; padding-right:16px; color:#888; font-size:16px; font-weight:300; background:url('//image.istyle24.com/Style24/images/pc/ico_more_sm.png') no-repeat 98% 2px;}
  1023. .part_goods .goods_cont {padding:40px;}
  1024. .part_goods .goods_cont .goods_info {margin-top:40px; padding-top:40px; border-top:1px dashed #ddd;}
  1025. .part_goods .goods_cont .goods_info:first-child {margin-top:0; padding-top:0; border-top:none;}
  1026. .part_goods .goods_cont .goods_info .order_desc .goods_box {vertical-align:top;}
  1027. .part_goods .goods_cont .goods_info .order_desc .goods_box .gd_item .thumb {position:absolute; top:0; transform:translateY(0);}
  1028. .part_goods .goods_foot .order_gift {display:block; position:relative; padding:30px 40px 30px 170px; border-top:1px solid #ddd}
  1029. .goods_foot .order_gift .title {display:inline-block; position:absolute; left:57px; top:50%; transform:translateY(-50%); padding-left:25px; background:url(//image.istyle24.com/Style24/images/pc/ico_giftbox.png) no-repeat 0 0; font-size:16px; font-weight:300; line-height:20px;}
  1030. .goods_foot .order_gift ul li {margin-top:10px; padding-left: 15px; background:url(//image.istyle24.com/Style24/images/pc/ico_bracket.png) no-repeat 0 2px; color:#222; font-size:16px; font-weight:200;}
  1031. .goods_foot .order_gift ul li span {color:#fd4802;}
  1032. .goods_foot .order_delivery {position:relative; padding:25px 40px; background:#f5f5f5; text-align:center; font-size:16px; font-weight:300;}
  1033. .goods_foot .order_delivery [class^="dlvr_"] {position:relative; display:inline-block; padding:0px 18px;}
  1034. .goods_foot .order_delivery [class^="dlvr_"]::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:1px; height:13px; background:#ddd;}
  1035. .goods_foot .order_delivery [class^="dlvr_"]:first-child::before {display:none;}
  1036. .goods_foot .order_delivery .dlvr_shop {color:#666;}
  1037. .goods_foot .order_delivery a.btn_popup_save {position:absolute; right:40px; top:25px; display:inline-block; padding-right:20px; color:#fd4802; font-size:12px; font-weight:200; line-height:14px; text-decoration:underline; background:url('//image.istyle24.com/Style24/images/pc/ico_go_save.png') no-repeat 98% 50%;}
  1038. .goods_info {display:block; position:relative; width:100%;}
  1039. .goods_info .price_org {position:relative; color:#888; font-weight:200;}
  1040. .goods_info .price_org:after{content: ''; display:inline-block; width:100%; height:1px; background:rgb(204, 204, 204); position:absolute; top:50%; left:0; bottom:auto; right:auto; transform:translateY(-50%);}
  1041. .goods_info .price_sale {color:#222; font-weight:500;}
  1042. .goods_info .point {padding-left:22px; color:#888; font-weight:200; background:url('//image.istyle24.com/Style24/images/pc/ico_point.png') no-repeat 0 50%;}
  1043. .goods_info .point strong {font-weight:300;}
  1044. .goods_info .order_desc {display:table; width:100%; height:150px;}
  1045. .goods_info .order_desc [class*="_box"] {display:table-cell; vertical-align:middle;}
  1046. .goods_info .order_desc .form_box {width:40px; padding-right:20px; padding-top:65px; vertical-align:top;}
  1047. .goods_info .order_desc .form_box .form_field input[type="checkbox"] + label {padding:0}
  1048. .goods_info .order_desc .goods_box {padding-left:130px;}
  1049. .goods_info .order_desc .goods_box [class^="gd_"] {max-width:550px;}
  1050. .goods_info .order_desc .goods_box .gd_item {position:relative;}
  1051. .goods_info .order_desc .goods_box .gd_item a {display:block;}
  1052. .goods_info .order_desc .goods_box .gd_item p::after {content:''; display:block; clear:both;}
  1053. .goods_info .order_desc .goods_box .gd_item .thumb {position:absolute; left:-130px; top:50%; transform:translateY(-50%); width:100px; height:150px; background:#f5f5f5;}
  1054. .goods_info .order_desc .goods_box .gd_item .thumb img {position:relative; width:100%; top:50%; transform:translateY(-50%);}
  1055. .goods_info .order_desc .goods_box .gd_item .buy_date {display:block; margin-bottom:16px; color:#222; font-size:16px; font-weight:300;}
  1056. .goods_info .order_desc .goods_box .gd_item .name {float:none; display:block; display:-webkit-box; width:100%; height:auto; max-height:40px; margin-top:15px; color:#222; font-size:16px; font-weight:300; line-height:20px; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical;}
  1057. .goods_info .order_desc .goods_box .gd_item .brand {float:left;margin-right:10px; color:#888; font-size:14px; font-weight:200;}
  1058. .goods_info .order_desc .goods_box .gd_item .tag {float:left; margin-right:6px; margin-top:-5px;}
  1059. .goods_info .order_desc .goods_box .gd_item.soldout .thumb:before {content:'SOLD OUT'; position: absolute; top: 50%; left: 50%; font-size: 14px; font-weight: 500; color:#fff; background: rgba(0,0,0,.7); width: 100%; height: 100%; transform:translate(-50%, -50%); line-height: 142px; z-index: 20; text-align: center;}
  1060. .goods_info .order_desc .goods_box .gd_opt {margin-top:15px;}
  1061. .goods_info .order_desc .goods_box .gd_opt .option_wrap {margin-top:15px;}
  1062. .goods_info .order_desc .goods_box .gd_opt .option_wrap:first-child {margin-top:0;}
  1063. .goods_info .order_desc .goods_box .gd_opt .option_wrap .title {margin-bottom:10px; color:#fd4802; font-size:14px; font-weight:300;}
  1064. .goods_info .order_desc .goods_box .gd_opt .option_wrap .option {display:block; display:-webkit-box; width:100%; height:auto; max-height:40px; overflow:hidden; margin-top:5px; color:#666; font-size:14px; font-weight:200; line-height:20px; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical;}
  1065. .goods_info .order_desc .goods_box .gd_calc {margin-top:15px;}
  1066. .goods_info .order_desc .goods_box .gd_calc p {float:left; position:relative; padding:0px 12px;}
  1067. .goods_info .order_desc .goods_box .gd_calc p::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:1px; height:13px; background:#ddd;}
  1068. .goods_info .order_desc .goods_box .gd_calc p:first-child {padding-left:0;}
  1069. .goods_info .order_desc .goods_box .gd_calc p:first-child::before {display:none;}
  1070. .goods_info .order_desc .goods_box .gd_calc p span {display:inline-block; font-size:15px;}
  1071. .goods_info .order_desc .goods_box .gd_calc p span em {font-size:16px;}
  1072. .goods_info .order_desc .goods_box .gd_calc p span.count {color:#666;}
  1073. .goods_info .order_desc .goods_box .gd_calc p span.price_sale {margin-left:5px;}
  1074. .goods_info .order_desc .goods_box .gd_exinfo,
  1075. .goods_info .order_desc .goods_box .gd_exinfo a {color:#fd4802; font-size:14px;}
  1076. .goods_info .order_desc .goods_box .gd_exinfo {margin-top:20px;}
  1077. .goods_info .order_desc .goods_box .gd_exinfo p {margin-top:8px;}
  1078. .goods_info .order_desc .goods_box .gd_exinfo p:first-child {margin-top:0;}
  1079. .goods_info .order_desc .goods_box .gd_exinfo a {display:inline-block; padding-right:20px; color:#fd4802; font-weight:200; background:url('//image.istyle24.com/Style24/images/pc/ico_go_save.png') no-repeat 100% 50%;}
  1080. .goods_info .order_desc .goods_box .gd_exinfo .tag {width:56px; margin-right:10px; padding-left:7px; padding-right:7px;}
  1081. .goods_info .order_desc .status_box {width:130px; color:#222; font-size:18px; font-weight:300; text-align:center;}
  1082. .goods_info .order_desc .status_box p {margin-top:10px;}
  1083. .goods_info .order_desc .status_box p:first-child {margin-top:0;}
  1084. .goods_info .order_desc .status_box .date,
  1085. .goods_info .order_desc .status_box .time {display:block; margin-top:10px; color:#888; font-size:14px;}
  1086. .goods_info .order_desc .status_box .date {margin-top:12px;}
  1087. .goods_info .order_desc .status_box .restock_ready {display:inline-block; padding-left:25px; color:#222; background:url('//image.istyle24.com/Style24/images/pc/ico_restock_ready.png') no-repeat 0% 50%;}
  1088. .goods_info .order_desc .status_box .restock_remain {display:inline-block; padding-left:25px; color:#fd4802; background:url('//image.istyle24.com/Style24/images/pc/ico_restock_remain.png') no-repeat 0% 50%;}
  1089. .goods_info .order_desc .status_box .restock_past {display:inline-block; padding-left:25px; color:#888; background:url('//image.istyle24.com/Style24/images/pc/ico_restock_past.png') no-repeat 0% 50%;}
  1090. .goods_info .order_desc .calc_box {width:150px; text-align:center;}
  1091. .goods_info .order_desc .calc_box .price_org {display:inline-block; margin-bottom:10px; font-size:14px; font-weight:300;}
  1092. .goods_info .order_desc .calc_box .price_sale {display:inline-block; font-size:20px; font-weight:500;}
  1093. .goods_info .order_desc .calc_box .point {display:inline-block; margin-top:13px; font-size:14px; line-height:18px;}
  1094. .goods_info .order_desc .button_box {width:220px; padding-left:90px; text-align:center;}
  1095. .goods_info .order_desc .button_box p {margin-top:10px;}
  1096. .goods_info .order_desc .button_box p:first-child {margin-top:0;}
  1097. .goods_info .order_desc .button_box .btn {display:block; width:100%; height:42px; padding:14px; font-size:14px;}
  1098. .goods_info .order_desc .button_box .btn.btn_primary_line:hover,
  1099. .goods_info .order_desc .button_box .btn.btn_primary_line:focus,
  1100. .goods_info .order_desc .button_box .btn.btn_primary_line:active{color:#fd4802; border-color:#fd4802;}
  1101. .goods_info .order_desc .button_box .btn span {line-height:1;}
  1102. .goods_info .order_desc .button_box .util {margin-top:12px;}
  1103. .goods_info .order_desc .button_box .util span {position:relative; display:inline-block; margin-left:24px;}
  1104. .goods_info .order_desc .button_box .util span::before {content:''; position:absolute; left:-13px; top:50%; transform:translateY(-50%); width:1px; height:10px; background-color:#ddd;}
  1105. .goods_info .order_desc .button_box .util span:first-child {margin-left:0;}
  1106. .goods_info .order_desc .button_box .util span:first-child::before {display:none;}
  1107. .goods_info .order_desc .button_box .count_modify .txt {display:block; margin-bottom:8px; color:#222; font-size:16px; font-weight:300;}
  1108. .goods_info .order_desc .button_box .count_modify .select_custom.select_count {margin-bottom:10px; font-size:14px; text-align:left;}
  1109. .goods_info .order_desc .button_box .count_modify .select_custom.select_count .combo .select {padding:14px 15px; color:#666; font-size:14px;}
  1110. .goods_info .order_desc .button_box .count_modify .select_custom.select_count .combo .list > li {padding:0 15px;}
  1111. .goods_info .order_text {display:block; width:100%; margin-top:20px; padding:20px 30px; background-color:#fff6f2;}
  1112. .goods_info .order_text p {margin-top:10px; padding-left:20px; color:#222; font-size:14px; font-weight:300; line-height:1; background:url('//image.istyle24.com/Style24/images/pc/ico_primary_check.png') no-repeat 0 50%;}
  1113. .goods_info .order_text p:first-child {margin-top:0;}
  1114. .goods_info .order_review {position:relative; padding-top:40px; margin-top:40px;}
  1115. .goods_info .order_review::before {content:''; position:absolute; top:0; left:-40px; right:-40px; border-top:1px dashed #ddd;}
  1116. .goods_info .order_review .review dl::after {content:''; display:block; clear:both;}
  1117. .goods_info .order_review .review dl dt,
  1118. .goods_info .order_review .review dl dd {float:left;}
  1119. .goods_info .order_review .review dl > div {float:left;}
  1120. .goods_info .order_review .review .info_box .star_score {float:left;}
  1121. .goods_info .order_review .review .info_box .star_score .star {display:inline-block; position:relative; width:101px; height:16px; background:#f5f5f5;}
  1122. .goods_info .order_review .review .info_box .star_score .star::after {content:''; position:absolute; left:0; top:0; z-index:3; width:100%; height:100%; background:url('//image.istyle24.com/Style24/images/pc/star_empty_big.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
  1123. .goods_info .order_review .review .info_box .star_score .star .progbar {display:inline-block; height:100%; background:#fd4802;}
  1124. .goods_info .order_review .review .info_box .writer {float:right;}
  1125. .goods_info .order_review .review .info_box .writer span {position:relative; margin-left:20px; padding-left:20px; color:#888; font-size:14px; line-height: 18px;}
  1126. .goods_info .order_review .review .info_box .writer span::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); height:12px; width:1px; background:#ddd;}
  1127. .goods_info .order_review .review .info_box .writer span:first-child {margin-left:0; padding-left:0;}
  1128. .goods_info .order_review .review .info_box .writer span:first-child::after {display:none;}
  1129. .goods_info .order_review .review .response_box {margin-top:25px;}
  1130. .goods_info .order_review .review .response_box > div {margin-top:15px;}
  1131. .goods_info .order_review .review .response_box > div:first-child {margin-top:0;}
  1132. .goods_info .order_review .review .response_box > div dl div {margin-right:30px;}
  1133. .goods_info .order_review .review .response_box > div dl div dt {color:#888;}
  1134. .goods_info .order_review .review .response_box > div dl div dd {margin-left:12px; color:#fd4802;}
  1135. .goods_info .order_review .review .photo_box {margin-top:20px;}
  1136. .goods_info .order_review .review .photo_box .photo_list > ul li {float:left; width:calc((100% - 90px)/10); margin-left:10px;}
  1137. .goods_info .order_review .review .photo_box .photo_list > ul li:nth-child(10n-9) {margin-left:0;}
  1138. .goods_info .order_review .review .photo_box .photo_list > ul li .pic .thumb {position:relative; display:block; height:0; padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
  1139. .goods_info .order_review .review .photo_box .photo_list > ul li .pic .thumb.mov::after {content:''; position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.3) url('//image.istyle24.com/Style24/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
  1140. .goods_info .order_review .review .txt_review_box {margin-top:25px; line-height:24px;}
  1141. .goods_info .order_review .review .reply_box {margin-top:30px; padding-top:15px;}
  1142. .goods_info .order_review .review .reply_box .reply {position:relative; padding:30px; background:#f5f5f5;}
  1143. .goods_info .order_review .review .reply_box .reply::after {content:''; position:absolute; left:0px; top:-15px; width:0px; height:0px; border:15px solid #f5f5f5; border-top-color:transparent; border-right-color:transparent;}
  1144. .goods_info .order_review .review .reply_box .reply .reply_writer span {display:inline-block; position:relative;}
  1145. .goods_info .order_review .review .reply_box .reply .reply_writer .wr_name {padding-left:24px; font-weight:300;}
  1146. .goods_info .order_review .review .reply_box .reply .reply_writer .wr_name::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:16px; height:16px; background:url('//image.istyle24.com/Style24/images/pc/ico_admin.png') no-repeat 0 0;}
  1147. .goods_info .order_review .review .reply_box .reply .reply_writer .wr_date {padding-left:20px; margin-left:20px; color:#888; font-size:200;}
  1148. .goods_info .order_review .review .reply_box .reply .reply_writer .wr_date::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); height:12px; width:1px; background:#ddd;}
  1149. .goods_info .order_review .review .reply_box .reply .reply_txt {margin-top:20px; color:#666; font-size:14px; line-height:24px;}
  1150. /* 주문내역 테이블 리스트 ver.2 */
  1151. .area_part {border-top:1px solid #ddd;}
  1152. .area_part .part_goods {border:none;}
  1153. .area_part .part_goods .goods_cont {padding:40px 0;}
  1154. .area_part .part_goods .goods_cont .order_desc .calc_box {width:190px; padding-left:20px;}
  1155. .area_part .part_goods .goods_cont .order_desc .button_box {width:250px; padding-right:40px; padding-left:90px;}
  1156. .area_part .part_goods .goods_cont .order_desc .goods_box .gd_item {position:static;}
  1157. .area_part .part_goods .goods_cont .goods_info .order_desc .goods_box {position:relative; vertical-align:middle;}
  1158. .area_part .part_goods .goods_cont .goods_info .order_desc .goods_box .gd_item .thumb {left:0;}
  1159. .area_part .part_goods .goods_cont .goods_info .order_desc .button_box .btn {height:34px; padding:9px; font-weight:200;}
  1160. .area_part .part_goods .goods_cont .goods_info .order_desc .button_box .btn_default {color:#222;}
  1161. /* 상품권 */
  1162. .voucher {position:relative; border:1px solid #ddd; box-sizing:border-box; background:#fff;}
  1163. .voucher div:first-child {height:160px;}
  1164. .voucher > div {position:relative;}
  1165. .voucher .vch_name {padding:30px 30px 0; color:#222; font-size:14px; font-weight:300;}
  1166. .voucher .vch_price {margin-top:10px; padding:0 30px; text-align:right;}
  1167. .voucher .vch_remain {margin-top:10px; padding:0 30px; text-align:right; color:#fd4802; font-size:20px; font-weight:700;}
  1168. .voucher .vch_remain span {margin-left:4px; font-size:26px;}
  1169. .voucher .vch_remain span em {font-size:32px;}
  1170. .voucher .vch_code {margin-top:15px; padding:0 30px; text-align:right; color:#888; font-size:12px; font-weight:300;}
  1171. .voucher .vch_date {padding:18px 0 19px; border-top:1px dashed #ddd; text-align:center; color:#222; font-size:14px; font-weight:200;}
  1172. .voucher.disable {background:#f5f5f5;}
  1173. .voucher.disable * {color:#888;}
  1174. .voucher.disable .cp_cont span {color:#888;}
  1175. .voucher.disable .tag {border-color:#888; background:none;}
  1176. .voucher.disable .vch_remain {font-size:28px;}
  1177. /* 쿠폰 */
  1178. .coupon {position:relative; border:1px solid #ddd; box-sizing:border-box; background:#fff;}
  1179. .coupon > div:first-child {height:160px;}
  1180. .coupon > div {position:relative;}
  1181. .coupon > div::after {content:''; position:absolute; top:50%; right:-1px; transform:translateY(-50%); width:15px; height:30px; background:#fff; z-index:2; border:1px solid #ddd; border-right:none; border-top-left-radius:15px; border-bottom-left-radius:15px; overflow:hidden;}
  1182. .coupon p {padding:0 20px;}
  1183. .coupon .cp_name {padding-top:30px; color:#222; font-size:14px; font-weight:300;}
  1184. .coupon .cp_cont {margin-top:10px;}
  1185. .coupon .cp_cont span {color:#fd4802; font-size:22px; font-weight:500;}
  1186. .coupon .cp_cont span em {font-size:28px; font-weight:700;}
  1187. .coupon .cp_condition {margin-top:16px; padding-bottom:30px; color:#888; font-size:12px; font-weight:300;}
  1188. .coupon .cp_condition span {display:block; margin-top:5px;}
  1189. .coupon .btn_coupon_down span {position:relative; display:inline-block; padding-right:24px;}
  1190. .coupon .btn_coupon_down span::after {content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); width:14px; height:15px; margin-left:10px; background:url('//image.istyle24.com/Style24/images/pc/ico_cp_down.png') no-repeat 0 0;}
  1191. .coupon .btn_coupon_done:disabled{background:#aaa; border-color:#aaa; color:#fff; opacity:1;}
  1192. .coupon .cp_date {padding:18px 0 19px; border-top:1px dashed #ddd; text-align:center; color:#222; font-size:14px; font-weight:200;}
  1193. .coupon + .btn_underline {display:block; margin:23px auto 0; color:#888; border-color:#888; font-size:12px;}
  1194. .coupon.disable {background:#f5f5f5;}
  1195. .coupon.disable * {color:#888;}
  1196. .coupon.disable .cp_cont span {color:#888;}
  1197. .coupon.disable .tag {border-color:#888; background:none;}
  1198. /* nodata_데이터 없을시 안내 */
  1199. .nodata {padding:80px 0; text-align:center;}
  1200. .nodata .txt_box {color:#666; font-size:16px; font-weight:300; line-height:26px;}
  1201. .nodata .txt_box::before {content:''; display:block; width:36px; height:46px; margin:0 auto 20px; background:url('//image.istyle24.com/Style24/images/pc/ico_content_none.png') no-repeat;}
  1202. .nodata .btn_box {margin-top:40px;}
  1203. .nodata .btn_box .btn {color:#222; font-size:14px; font-weight:300;padding: 9px 23px;}
  1204. /* page_end_point 안내*/
  1205. .last_page {padding:30px; margin-top:120px; margin-left:70px; margin-right:70px; max-width:100%; color:#888; font-size:16px; font-weight:300; text-align:center; line-height:1.24;}
  1206. /* sub */
  1207. /* mb_공통 */
  1208. .mb .wrap {padding:160px 0 220px; font-weight:200;}
  1209. .mb .cont_head {margin-bottom:40px; text-align:center; line-height:1;}
  1210. .mb [class^="ico_content_"]::before {margin:0px auto 22px;}
  1211. .mb input[type="text"],
  1212. .mb input[type="password"] {float:none; width:100%; height:52px; padding:17px 0 17px 19px; color:#222; font-size:16px; font-weight:300; line-height:1;}
  1213. .mb .form_field {display:block;}
  1214. .mb .form_field input[type="radio"] + label {line-height:1;}
  1215. .mb .form_field input[type="radio"] + label:before,
  1216. .mb .form_field input[type="radio"]:checked + label:after {top:50%; transform:translateY(-50%);}
  1217. .mb .btn {font-size:18px; font-weight:300;}
  1218. .mb .btn.btn_block {height:60px; line-height:1;}
  1219. .mb .ui_row {margin-top:0px; margin-bottom:0;}
  1220. .mb .btn_group_block {float:none; margin-top:40px;}
  1221. .mb .btn_group_block [class^='ui_col_'] {overflow:hidden; margin-right:5px; margin-left:5px;}
  1222. .mb .btn_group_block [class^='ui_col_']:first-child {margin-left:0;}
  1223. .mb .btn_group_block [class^='ui_col_']:last-child {margin-right:0;}
  1224. .mb .btn_group_block button {padding-top:15px; padding-bottom:16px;}
  1225. .mb div::after, .mb ul::after, .mb dl::after, .mb dl div::after {content:''; display:block; clear:both;}
  1226. .mb .cont_body {width:530px; margin: 0 auto;}
  1227. .mb .form_wrap .form_info {text-align:center;}
  1228. .mb .form_wrap .form_info p {color:#222; font-size:18px; font-weight:300; line-height:26px;}
  1229. .mb .form_wrap .form_info p.t_info {margin-top:10px !important; font-size:16px; color:#888; font-weight:300;}
  1230. .mb .form_wrap .form_field input::placeholder {color:#888; font-weight:200;}
  1231. .mb .form_wrap .form_field {margin-top:10px;}
  1232. .mb .form_wrap .form_field:first-child {margin-top:0px;}
  1233. .mb .foldGroup {margin:0;}
  1234. .mb .form_group{display:none;}
  1235. .mb .form_group:first-of-type{display:block;}
  1236. .mb .form_group::after {display: block; content: ''; clear: both;}
  1237. .mb .fold_tit,
  1238. .mb .fold_tit span {width: inherit !important;}
  1239. .mb .fold_head .fold_tit {padding: 0 0 0 34px;}
  1240. .mb .fold_head .fold_tit::before {content:''; display: inline-block; width:20px; height: 20px; position:absolute; top:50%; left:0; transform:translateY(-50%); background: url('//image.istyle24.com/Style24/images/pc/ico_chk_rdi.png')no-repeat -60px 0px;}
  1241. .mb .fold_head .fold_tit span {font-size:18px; line-height:1;}
  1242. .mb .fold_head.on .fold_tit::before {background-position:-80px 0;}
  1243. .mb .foldGroup .fold_cont {display:none; padding:40px 30px; box-sizing: border-box; background: #f5f5f5; border-top: 1px solid #ddd;}
  1244. .mb .foldGroup .fold_cont .txt {font-size:16px; color:#666; font-weight:300; text-align:center;}
  1245. .mb .find_result {padding:0px 0px 0px; font-weight:200;}
  1246. .mb .find_result .help_block {text-align:left;}
  1247. .mb .find_result input {font-size:16px;}
  1248. .mb .find_result .form_print_bar {padding:40px 0; display: flex; display: -ms-flexbox; justify-content: center; align-items: center; background: #f5f5f5; text-align: left; color:#222; font-size:16px; font-weight:300;}
  1249. .mb .find_result .form_print_bar ul li {margin-top: 16px;}
  1250. .mb .find_result .form_print_bar ul li:first-child {margin-top: 0;}
  1251. .mb .find_result .form_print_bar ul li span {display:inline-block;}
  1252. .mb .find_result .form_print_bar ul li span.t_span {width:120px; color:#888; font-size:14px;}
  1253. .mb .registration_nav {margin-bottom:40px;}
  1254. .mb .registration_nav ul::after {content:''; display: block; clear:both;}
  1255. .mb .registration_nav ul li {float: left; width:50%; text-align: center; background:#f5f5f5; box-sizing: border-box; border-bottom:1px solid #222;}
  1256. .mb .registration_nav ul li.active {background:#fff; border:1px solid #222; border-bottom:none;}
  1257. .mb .registration_nav ul li a {display:inline-block; width:100%; height:60px; line-height:60px; color:#888; font-size:18px; font-weight:200;}
  1258. .mb .registration_nav ul li.active a {color:#222; font-weight:500;}
  1259. .mb .registration_tap .form_group > .form_field {margin-bottom:40px; text-align:center;}
  1260. .mb .registration_tap .form_group > .form_field input[type="radio"] + label {padding-left:34px;}
  1261. .mb .registration_tap .form_group > .form_field > div {display:inline-block; width:auto; margin-left:50px}
  1262. .mb .registration_tap .form_group > .form_field > div:first-child {margin-left:0}
  1263. .mb .registration_tap .registration_cont .regist_box {display:none; color:#666; font-size:16px; line-height:1.625; text-align:center;}
  1264. .mb .registration_tap .registration_cont .regist_box.on {display:block;}
  1265. .mb .registration_tap .foldGroup li:first-child {border-top: none;}
  1266. .mb .registration_tap .foldGroup li .fold_head.on::after {background-repeat: no-repeat; background-position: 0 0%;}
  1267. .mb .registration_tap .foldGroup li .fold_head::after {background: url(//image.istyle24.com/Style24/images/pc/ico_mb_arrow.png)no-repeat; background-position: 0 100%;}
  1268. .mb .sns_wrap {position:relative; margin-top:45px; text-align:center;}
  1269. .mb .sns_wrap h5 {color:#222; font-size:18px; font-weight:500; margin:0 0 20px;}
  1270. .mb .sns_wrap ul {display:inline-block;}
  1271. .mb .sns_wrap ul::after {content:''; clear:both; display:block;}
  1272. .mb .sns_wrap ul li {float:left; width:60px; margin-left:40px;}
  1273. .mb .sns_wrap ul li:first-child {margin-left:0;}
  1274. .mb .sns_wrap ul li a {display:block; text-align:center;}
  1275. .mb .sns_wrap ul li a span {display:block; color:#222; font-size:14px; font-weight:300; margin-top:10px; line-height:1.25;}
  1276. .mb .sns_wrap ul li a .ico_snslogin {margin-right:10px;}
  1277. .mb .sns_wrap ul li a .ico_snslogin::before {width:60px; height:60px; background-image:url(//image.istyle24.com/Style24/images/pc/ico_sns_bg.png);}
  1278. .mb .sns_wrap ul li a .ico_snslogin.kakao::before {background-position:-70px 0;}
  1279. .mb .sns_wrap ul li a .ico_snslogin.naver::before {background-position:0 0;}
  1280. .mb .sns_wrap ul li a .ico_snslogin.yes24::before {background-position:-140px 0;}
  1281. .mb .new_benefits {padding:50px 0 70px; background: #f5f5f5; text-align: center;}
  1282. .mb .new_benefits h5 {margin-top: 0; margin-bottom: 40px; font-size: 18px; font-weight: 300; line-height: 1.5;}
  1283. .mb .new_benefits .benefits_list {display: inline-block;}
  1284. .mb .new_benefits .benefits_list li {float:left; margin:0 25px;}
  1285. .mb .new_benefits .benefits_list li p {margin-top: 14px; font-size: 14px; font-weight: 300; line-height: 1.4;}
  1286. .mb .btn_nonMb {display:inline-block; color:#888; font-size:14px; font-weight:200; border-bottom:1px solid #888;}
  1287. .mb .t_err {position:relative; padding-left:24px; font-weight:200; font-size:14px; line-height:1;}
  1288. .mb .t_err::before {position:absolute; left:0; top:50%; transform:translateY(-50%); margin-top:-1px;}
  1289. .mb .help_block {margin:0; text-indent:0; text-align:left;}
  1290. .mb .help_block .t_err {margin-top:10px;}
  1291. /* mb_login : 로그인 */
  1292. .login .help_block {margin-top:18px; text-indent:0; text-align:left;}
  1293. .login .help_block .t_err {line-height:20px;}
  1294. .login .help_block .t_err::before {top:0; transform:translateY(0%); margin-top:1px;}
  1295. .login .help_block .captcha {padding: 30px; background: #f5f5f5; text-align: left;}
  1296. .login .help_block .captcha ul {display: flex; align-items: center;}
  1297. .login .help_block .captcha .captcha_box {width:235px; height: 72px; border: 1px solid #ddd; background: rgb(127, 255, 0);}
  1298. .login .help_block .captcha .captcha_btn_dual {margin: 0 18px 0 10px;}
  1299. .login .help_block .captcha .captcha_btn_dual button {width:33px; height: 33px; display: block; border:1px solid #ddd; border-radius: 3px; text-indent: -9999px; background: url('//image.istyle24.com/Style24/images/pc/ico_captcha_btn.png')no-repeat center 9px;}
  1300. .login .help_block .captcha .captcha_btn_dual button:first-child {margin-bottom: 8px;}
  1301. .login .help_block .captcha .captcha_btn_dual button:last-child {background-position:center -31px;}
  1302. .login .help_block .captcha .captcha_area {margin-bottom: -7px;}
  1303. .login .help_block .captcha .captcha_area input {width:200px; padding: 17px 0 17px 14px;}
  1304. .login .help_block .captcha .captcha_area label { display: block; width: 100%; margin:-8px 0 4px 0;}
  1305. .login .login_check {margin:15px 0 0;}
  1306. .login .login_check::after {content:''; display: block; clear:both;}
  1307. .login .login_check .form_field {float:left; width:59%; text-align:left}
  1308. .login .login_check .form_field input[type="checkbox"] + label {font-size:16px; font-weight:200; line-height:1;}
  1309. .login .login_check .form_field input[type="checkbox"] + label:before,
  1310. .login .login_check .form_field input[type="checkbox"] + label::after {top:50%; transform:translateY(-50%);}
  1311. .login .btn_mb_wrap {margin:20px 0 0 0; text-align:center;}
  1312. .login .btn_mb_wrap ul {display:inline-block;}
  1313. .login .btn_mb_wrap ul::after {content:''; clear:both; display:block;}
  1314. .login .btn_mb_wrap ul li {float:left; position:relative; margin-left:15px; padding-left:15px; font-size: 14px;}
  1315. .login .btn_mb_wrap ul li::before {content:''; position: absolute; width:1px; height:14px; left:0px; top:50%; transform: translateY(-50%); background: #ddd;}
  1316. .login .btn_mb_wrap ul li:first-child {margin-left: 0px; padding-left:0;}
  1317. .login .btn_mb_wrap ul li:first-child::before {display:none;}
  1318. .login .btn_mb_wrap ul li a {display:inline-block; color:#222; line-height:24px; font-weight:200;}
  1319. .login .ui_row .ui_col_12 {margin: 0;}
  1320. /* mb_join_1 : 회원가입_intro */
  1321. .join1 .form_wrap .form_sign_up {position:relative; display:block; font-weight:500;}
  1322. .join1 .form_wrap .form_sign_up p {color:#888; font-size:16px; font-weight:300; line-height:24px;}
  1323. .join1 .form_wrap .form_sign_up p.c_primary {font-size:24px; font-weight:500; line-height:1;}
  1324. /* mb_join_2 : 회원가입_회원정보 입력 */
  1325. .join2 .form_wrap .desc_wrap p {font-size:16px; line-height:1.75; font-weight:200; color:#888;}
  1326. .join2 .form_wrap .desc_wrap p a {margin-left: -6px; color:#666; font-weight:300;}
  1327. .join2 .form_wrap .desc_wrap label span {line-height: 2;}
  1328. .join2 .help_block::after {clear:both; display:block; width:100%;}
  1329. .join2 .help_block .btn.btn_sm {float:left; margin-right:8px; padding:6px 15px; border-color:#222; font-size:14px;}
  1330. .join2 .help_block span[class^='c_'] {display:block;}
  1331. .join2 .form_field .ui_row [class^='ui_col_'] {margin-left:0; margin-right:0;}
  1332. .join2 .form_field .ui_col_9 input {width:388px;}
  1333. .join2 .form_field .ui_col_3 .btn {width:132px; height:52px; padding:17px 0px 17px; font-weight:300; font-size:16px;}
  1334. .join2 .form_field .ui_col_3 .btn span {line-height:1;}
  1335. /* mb_join_3 : 회원가입_이미 가입된 회원안내 */
  1336. .join3 .form_wrap {text-align:center;}
  1337. .join3 .form_wrap .print_bar {padding:40px 0; background: #f5f5f5;}
  1338. .join3 .form_wrap .print_bar p {font-size:18px;}
  1339. .join3 .btn_group_md .btn_default {border-color:#a7a7a7;}
  1340. /* mb_join_4 : 회원가입_완료 */
  1341. .mb .join4 .btn_group_block.btn_group_md .btn span {position:relative; text-indent:-20px;}
  1342. .mb .join4 .btn_group_block.btn_group_md .btn span::after {content:''; position:absolute; right:-20px; top:50%; transform:translateY(-50%); width:6px; height:11px; background:url('//image.istyle24.com/Style24/images/pc/ico_bread_root_w.png') no-repeat 50% 50%;}
  1343. /* mb_idInquiry_1 */
  1344. .find h4 {margin-bottom:45px;}
  1345. .find .find_result {padding-top:20px;}
  1346. .find .input_wrap {position: relative; width:100%;}
  1347. .find .input_wrap .form_control {height: inherit;}
  1348. .find .input_wrap .btn {padding:6px 22px; border:none; position: absolute; top:50%; transform: translateY(-50%); right:10px; font-size:14px; font-weight:200;}
  1349. .find .registration_cont .regist_box .txt {padding:20px 0;}
  1350. .find .registration_cont .regist_box .txt p {font-weight:300;}
  1351. .find .registration_cont .regist_box .txt + .ui_row.mt20 {margin-top:35px;}
  1352. /* mb_idInquiry_2 */
  1353. /* mb_idInquiry_3,mb_idInquiry_4 */
  1354. /* mb_idInquiry_5 */
  1355. /* mb_idInquiry_6 */
  1356. .dormant .form_wrap .form_btn::after {clear:both; display:block; content:'';}
  1357. .dormant .form_wrap .ui_row button {position:relative; height:90px; padding:0px; border-radius:45px;}
  1358. .dormant .form_wrap .ui_row button span {font-size: 18px; font-weight: 300;}
  1359. .dormant .form_wrap .ui_row button span .ico {margin-right:10px;}
  1360. .dormant .form_wrap .ui_row button span .ico::before {margin-top:-6px;}
  1361. .dormant .form_wrap .form_summary {margin-top:40px; padding-top:40px; border-top:1px solid #ddd;}
  1362. .dormant .form_wrap .form_summary strong {font-size: 16px; font-weight:300;}
  1363. .dormant .form_wrap .form_summary p {margin-top: 14px; color:#888; font-weight:200; line-height:1.857; word-break:keep-all;}
  1364. /* mb_idInquiry_7 */
  1365. /* mb_idInquiry_8 */
  1366. .non_mb_oder .form_summary {padding-top:40px; border-top:1px solid #ddd;}
  1367. .non_mb_oder .form_summary .txt {position:relative; margin-bottom:10px; font-size:18px; line-height:1;}
  1368. .non_mb_oder .form_summary .txt span.c_primary {font-size:20px; font-weight:700;}
  1369. .non_mb_oder .form_summary .btn {position:absolute; top:1px; right:145px; padding:10px 25px; color:#222; font-size:14px; font-weight:300; border-color:#a7a7a7;}
  1370. .non_mb_oder .form_summary .t_info {display:block; color:#888; font-size:16px;}
  1371. /* mb_campaign */
  1372. .campaign .info_txt {padding:40px 40px; margin-top:40px; background:#f5f5f5;}
  1373. .campaign .info_txt ul li {position:relative; padding-left:13px; margin-bottom:7px; color:#888; font-size:14px; font-weight:200; line-height:20px;}
  1374. .campaign .info_txt ul li:last-child {margin-bottom:0;}
  1375. .campaign .info_txt ul li:after {content:''; position:absolute; top:7px; left:0; background:#858585; width:3px; height:3px;}
  1376. .campaign .info_txt ul li .mb_name {font-weight:300;}
  1377. .campaign .info_txt ul li em {font-weight:300;}
  1378. /* cs_공통 */
  1379. .cs {line-height:1.2; padding-bottom:160px;}
  1380. .cs .wrap .content {max-width:1460px; padding-left:0; padding-right:0;}
  1381. .cs .foldGroup {margin-top: 60px;}
  1382. .cs .history_wrap {width: 100%; height: 173px; padding: 50px; box-sizing: border-box; background: #f5f5f5;}
  1383. .cs .history_wrap::after {content:''; display: block; clear:both;}
  1384. .cs .history_wrap .hist_status {float:left;}
  1385. .cs .history_wrap .txt {float:left; padding-left:50px; color: #666; font-size: 14px; font-weight:200; box-sizing:border-box; line-height:24px;}
  1386. .cs .history_wrap ul li {position:relative; float:left; width:180px; text-align:center;}
  1387. .cs .history_wrap ul li::before {content:''; position:absolute; left:0; top:50%; transform: translateY(-50%); height:30px; border-left:1px solid #ddd}
  1388. .cs .history_wrap ul li:first-child::before {display:none;}
  1389. .cs .history_wrap .btn_area {margin-top:24px;}
  1390. .cs .history_wrap .btn_area .btn {padding:10px 32px; border:1px solid #a1a1a1; color:#222; font-weight:300;}
  1391. .cs .history_wrap div ul li span {display: block; font-size: 16px; font-weight: 300; letter-spacing: -0.025em; color:#666; line-height:1;}
  1392. .cs .history_wrap div ul li a {display:inline-block; position:relative; margin-top:15px; font-size:50px; line-height:40px; color:#222;font-weight:300;}
  1393. .cs .history_wrap div ul li a::after {content:''; position:absolute; left:4px; right:4px; bottom:-2px; border-bottom:2px solid #222;}
  1394. .cs .history_wrap div ul li a.doing {color:#888}
  1395. .cs .history_wrap div ul li a.doing::after {display:none;}
  1396. .cs .ui_row.nodata {display: inherit; padding-top: 124px; margin-bottom: 0; text-align: center;}
  1397. .cs .ui_row.nodata .foldGroup {display:none;}
  1398. .cs .ui_row.nodata + .ui_foot {display:none;}
  1399. .cs .ui_row.nodata::before {content: ''; display: block; width: 36px; height: 46px; margin:0 auto; background: url('//image.istyle24.com/Style24/images/pc/ico_null.png')no-repeat;}
  1400. .cs .ui_row.nodata::after {content: '등록된 문의가 없습니다.'; display: block; padding: 25px 0 160px; font-size: 16px; font-weight: 300; color: #666;}
  1401. /* cs_faq */
  1402. .faq .ui_row.nodata {border:none;}
  1403. .faq .ui_row.nodata::after, .contactUs .ui_row.nodata::after {content:'총 0개의 목록이 있습니다.';}
  1404. .faq .quick_list {margin-bottom:50px;}
  1405. .faq .quick_list ul,.faq .quick_list ul li {box-sizing: border-box;}
  1406. .faq .quick_list ul {width:100%; height: 260px; display: flex; display: -ms-flexbox; flex-wrap: wrap; border:2px solid #000; align-items: center;}
  1407. .faq .quick_list ul li {width: 19.99%; height: 49.9%; text-align: center; border-left: 1px solid #ddd; border-bottom: 1px solid #ddd;}
  1408. .faq .quick_list ul li:nth-child(1),.faq .quick_list ul li:nth-child(6) {border-left:none;}
  1409. .faq .quick_list ul li:nth-child(6),.faq .quick_list ul li:nth-child(7),.faq .quick_list ul li:nth-child(8),.faq .quick_list ul li:nth-child(9),.faq .quick_list ul li:nth-child(10) {border-bottom: none;}
  1410. .faq .quick_list ul li a {display: flex; display: -ms-flexbox; justify-content: center; word-break: keep-all; overflow: hidden; width:100%; height: 100%; line-height:26px; font-size:16px; font-weight: 200; align-items: center; color:#222; letter-spacing:-0.025em;padding: 0 15px;}
  1411. .faq .search_wrap {margin-bottom:60px;}
  1412. .faq .search_wrap .faq_search {height:190px; background:#f5f5f5; padding:50px; box-sizing:border-box; text-align:center;}
  1413. .faq .search_wrap .faq_search .search_box {display:inline-block; position:relative; width:600px; padding-right:50px; border-bottom:2px solid #222; box-sizing: border-box; text-align:left;}
  1414. .faq .search_wrap .faq_search .search_box input[type='text'] {display:inline-block; width:100%; height:50px; padding-left:0; border:none; background:none; color:#222; font-size:30px; font-weight:200; letter-spacing:-0.025em; line-height:1;}
  1415. .faq .search_wrap .faq_search .search_box input[type='text']::placeholder {color:#888;}
  1416. .faq .search_wrap .faq_search .search_box .btn_search {display:inline-block; position:absolute; right:0; top:11px; width:28px; height:28px; overflow:hidden; background:url('//image.istyle24.com/Style24/images/pc/ico_search_faq.png') no-repeat 50% 50%; font-size:1px; text-indent:-9999px; z-index:2}
  1417. .faq .search_wrap .faq_search .t_info {width:600px; margin:15px auto 0; font-weight:200; text-align:left;}
  1418. .faq .fold_nav {width:100%;}
  1419. .faq .fold_nav ul {display: flex; display: -ms-flexbox; flex-wrap: wrap; margin-top:-12px}
  1420. .faq .fold_nav ul li {margin:12px 12px 0 0;}
  1421. .faq .fold_nav ul li a {display:inline-block;padding:15px 22px;border: 1px solid #ddd;font-size: 16px;font-weight: 300;line-height: 1; letter-spacing:-0.025em;}
  1422. .faq .fold_nav ul li a.on {position: relative; background: #222; color:#fff; border: 1px solid #222;}
  1423. .faq .fold_nav ul li a.on::after {content:''; position: absolute; width:0; height: 0; bottom:-1px; right:-1px; border-bottom: 13px solid #fff; border-left: 13px solid transparent;}
  1424. .faq .foldGroup {margin-top:50px}
  1425. .faq .foldGroup .fold_head .fold_tit {max-width: 820px;}
  1426. .faq .foldGroup .fold_answer .answer_head {margin-bottom:10px;}
  1427. .faq .foldGroup .fold_cont > div:first-of-type {padding-top:35px; border-top:1px solid #ddd}
  1428. /* cs_product, cs_contactUs */
  1429. .product .history_wrap,
  1430. .contactUs .history_wrap * {box-sizing: border-box;}
  1431. .product .fold_head .fold_tit .prod::before {display: none;}
  1432. .product .case1 .fold_head .fold_tit {max-width: 760px;}
  1433. .product .case1 .fold_head .fold_tit span {width: 760px;}
  1434. .product .ui_row.nodata,
  1435. .contactUs .ui_row.nodata {border-top:none;}
  1436. .contactUs .fold_cont .img_group .thumb_pic {background:#fff;}
  1437. .contactUs .fold_cont .img_group .thumb_pic img{position:absolute; left:50%; right:0; top:50%; bottom:auto; transform:translate(-50%, -50%); width:auto; height:auto; max-height:100%; max-width:100%; margin:auto 0; cursor:pointer;}
  1438. /* cs_contactUs_my */
  1439. .contactUs_my .blt_dot {position:relative; padding-left:10px;}
  1440. .contactUs_my .blt_dot::before {content:''; position:absolute; left:0; top:50%; margin-top:-2px; width:3px; height:3px; background:#888;}
  1441. .contactUs_my textarea,
  1442. .contactUs_my .select,
  1443. .contactUs_my input[type="text"] {width:100%; padding:7px 0 7px 20px; font-weight:200; box-sizing:border-box; color:#222; font-size:14px; font-weight:300;}
  1444. .contactUs_my input[type="text"]::placeholder,
  1445. .contactUs_my textarea::placeholder {color:#888; font-weight:200;}
  1446. .contactUs_my .form_wrap {padding:30px 40px; border-top:1px solid #222; border-bottom:1px solid #ddd;}
  1447. .contactUs_my .form_control {height:42px; color:#222; font-size:14px;}
  1448. .contactUs_my textarea {height:200px; padding:20px;}
  1449. .contactUs_my .input_label {line-height:42px;}
  1450. .contactUs_my .form_field {margin-top:20px}
  1451. .contactUs_my .form_field .push_agree > div {float: left;margin-top: 10px;margin-right: 40px;}
  1452. .contactUs_my .form_field .push_agree:after {content: '';display: block;clear: both;}
  1453. .contactUs_my .form_field:first-of-type {margin-top:0;}
  1454. .contactUs_my .form_field .cellphone {display:block;}
  1455. .contactUs_my .form_field .cellphone input[type="text"]{width:400px;}
  1456. .contactUs_my .form_field .cellphone .ck_box {display:inline-block;}
  1457. .contactUs_my .form_field .imgUpload+.imgUpload{margin-left:20px;}
  1458. .contactUs_my .form_field .pics{position: absolute;top: 0;left: 0;z-index: 2;}
  1459. .contactUs_my .contactus_cnt {color:#888;}
  1460. .contactUs_my .select {height:40px; font-size:14px;}
  1461. .contactUs_my .select .select_dress {padding:7px 20px; color:#222; font-weight:200; line-height:26px;}
  1462. .contactUs_my .select .select_dress:after {top:16px; right: 28px; border-color:#888 transparent transparent transparent;}
  1463. .contactUs_my .select .select_dress.active:after {top:10px; border-color: transparent transparent #888 transparent;}
  1464. .contactUs_my .select .select_options {color:#666;}
  1465. .contactUs_my .help_block {margin-top:10px; text-indent:0;}
  1466. .contactUs_my .ck_box {padding:10px 20px;}
  1467. .contactUs_my .ck_box input[type="checkbox"] + label {font-size:16px; font-weight:200;}
  1468. .contactUs_my .t_err {font-weight:200;}
  1469. .contactUs_my .t_err::before {background-image:url('//image.istyle24.com/Style24/images/pc/ico_err2.png');}
  1470. .contactUs_my .info_addfile {margin-top:20px; color:#666; font-size:14px; line-height:24px; font-weight:200;}
  1471. .contactUs_my .sec_foot {margin-top:60px;}
  1472. .contactUs_my .sec_foot .btn.btn_md {margin:0px 5px; font-weight:300; padding:15px 90px;}
  1473. .contactUs_my .txt_cnt {text-align:right; margin-top:10px;}
  1474. /* cs_notice */
  1475. .cs .notice .foldGroup {margin-top: 0;}
  1476. .cs .notice .case1 .fold_head .fold_tit::before {display:none;}
  1477. .notice .foldGroup .critical .fold_head,
  1478. .notice .foldGroup .critical .fold_detail,
  1479. .notice .foldGroup .critical .fold_answer {background:#fff6f2;}
  1480. .notice .foldGroup .critical .fold_tit span {font-weight:500;}
  1481. .notice .foldGroup .critical .fold_category {font-weight:100;}
  1482. .notice .foldGroup .fold_head .fold_tit span {width:700px; font-weight:300;}
  1483. .notice .fold_cont > div:first-of-type {padding-top:35px; border-top:1px solid #ddd;}
  1484. .notice .sec_body.nodata {border-top: 1px solid #222;}
  1485. .notice .ui_row.nodata::after {content:'등록된 게시글이 없습니다.';}
  1486. /* dp_공통 */
  1487. .dp .itemsGrp {margin:0 -10px;}
  1488. /* 정렬타입 [ cutcut1 ~ 4 ] 추가 */
  1489. .dp .itemsGrp.cut1 {width: 100%;margin:0 -10px;display: flex;justify-content: center;flex-direction: column;flex-wrap: nowrap;align-content: center;align-items: center;}
  1490. .dp .itemsGrp.cut1 .item_prod {width: 394px;display: block;}
  1491. .dp .itemsGrp.cut2 {width: 100%;margin:0 -10px;margin: 0 auto;display: inline-block;padding: 0 calc((28.8% - 20px)/2);}
  1492. .dp .itemsGrp.cut2 .item_prod {width: calc((100% - 0px)/2);}
  1493. .dp .itemsGrp.cut3 {width: 100%;margin:0 -10px;margin: 0 auto;display: inline-block;padding: 0 calc((28.75% - 20px)/2);}
  1494. .dp .itemsGrp.cut3 .item_prod {width: calc((100% - 1px)/3);}
  1495. .dp .itemsGrp.cut4 {width: 100%;margin:0 -10px;margin: 0 auto;display: inline-block;padding: 0 calc((28.8% - 20px)/2);}
  1496. .dp .itemsGrp.cut4 .item_prod {width: calc((100% - 0px)/4);}
  1497. .dp .wrap {padding-bottom:160px;}
  1498. .dp .cont_body {position:relative;}
  1499. .container.dp {background: #ffffff;}
  1500. .dp .content .cont_head .displayH {margin-bottom: 60px; text-align: center;}
  1501. .dp h3 {margin-bottom: 0; padding-bottom: 60px; font-size: 40px; line-height: 1; text-align: center;}
  1502. .dp h4 {margin-bottom:60px; color:#222; font-size:30px; font-weight:500; text-align:center;}
  1503. .dp h4 a {color:#222;}
  1504. .dp .cont_head > div {position:relative;}
  1505. .dp .cont_head > div.item_header {padding: 80px 0 60px;}
  1506. .dp .cont_head > div.item_header h3 {padding:20px 0 0;}
  1507. .dp .wide .cont_head div div.shareSet {position: absolute; width:28px; height: 30px; top:0; right:70px; background: url(//image.istyle24.com/Style24/images/pc/ico_sns_share.png)no-repeat;}
  1508. .dp .wide .cont_head div div.shareSet a {display: inline-block; width:100%; height: 100%; text-indent: -9999px;}
  1509. .dp .list_content.nodata .count_wrap {display:none;}
  1510. .dp .list_content.nodata .itemsGrp {display:none;}
  1511. .dp .list_content.nodata .list_defult {display:block;}
  1512. .dp .list_defult {display:none; text-align:center; padding: 120px 0 160px;}
  1513. .dp .list_defult > div:first-child {margin-bottom:40px;}
  1514. .dp .list_defult > div:first-child p {line-height: 2; font-size: 16px; color:#666; font-weight: 300;}
  1515. .dp .list_defult > div:first-child p::before {content:''; display:block; width:36px; height:46px; margin:0 auto 24px; background:url('//image.istyle24.com/Style24/images/pc/ico_content_none.png') no-repeat;}
  1516. .dp .list_defult .ui_row {justify-content: center; margin-bottom: 0;}
  1517. .dp .list_defult .ui_row .btn {color:#222; font-size:14px; font-weight:300;padding: 9px 23px;}
  1518. /* dp_sticky_nav_리스트 */
  1519. .dp .sticky_nav_list {margin-top:60px;}
  1520. .dp .sticky_nav_list .cont_head {display:block; margin-bottom:50px;}
  1521. .dp .sticky_nav {margin-bottom: 0px !important; padding:20px 0; background: #fff; border-top:1px solid #222; border-bottom:1px solid #222; z-index: 20;}
  1522. .dp .sticky_nav.sticky {position: fixed; width:100%; top: -1px; left: 50%; transform: translateX(-50%); z-index: 100;}
  1523. .dp .sticky_nav.sticky > ul {max-width: 1780px; margin: 0 auto;}
  1524. .dp .sticky_nav ul li {position: relative; display: inline-block; padding: 20px 40px;}
  1525. .dp .sticky_nav ul li:last-child::after {display: none;}
  1526. .dp .sticky_nav ul li::after {content:''; position: absolute; top:50%; right: 0; transform: translateY(-50%); width:1px; height: 14px; background: #ddd;}
  1527. .dp .sticky_nav ul li a {font-size: 16px; font-weight: 500;}
  1528. .dp .sticky_nav ul li a.active {color:#fd4800;}
  1529. .dp .sticky_nav_list .list_content .item_header {padding-top:50px;}
  1530. .dp .sticky_nav_list .list_content .item_header h4 {margin-bottom:60px;}
  1531. /* dp_category 카테고리 바로가기 */
  1532. .dp .dp_category {margin:120px 0; padding:80px 0; background: #f5f5f5; text-align: center;}
  1533. .dp .dp_category h4 {margin-bottom:40px;}
  1534. .dp .dp_category .cont_body {text-align:center;}
  1535. .dp .dp_category .dp_cate_list {width:1370px; display:inline-block; margin-top:-10px;}
  1536. .dp .dp_category .dp_cate_list:after {content:''; display: block; clear: both;}
  1537. .dp .dp_category .dp_cate_list a {float:left; width:calc((100% - 50px) / 6); height:60px; margin-left:10px; margin-top:10px; padding:21px 25px 0; border:1px solid #ddd; border-radius:30px; color:#666; font-size:18px; font-weight:500; text-align:left; background:#fff url('//image.istyle24.com/Style24/images/pc/ico_more_lg.png') no-repeat 90% 50%; line-height:1;}
  1538. .dp .dp_category .dp_cate_list a:nth-child(6n-5) {margin-left:0;}
  1539. /* dp_submain 상단배너 스크롤바 슬라이드 */
  1540. .dp .dp_submain {position:relative;}
  1541. .dp .dp_submain .swiper-container .img {position: relative;width: 100%;margin-bottom: 0;padding-top: 100%;font-size: 0px;overflow: hidden;}
  1542. .dp .dp_submain .swiper-container .img img {position: absolute;width: 100%;height: auto; max-width:430px; top: 50%;left: 0px;transform: translateY(-50%);}
  1543. .dp .dp_submain .swiper-container .txt .subject {margin:20px 0; font-size: 24px; line-height: 1.5; font-weight: 300; color:#222; min-height:66px; max-height:66px; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -webkit-box;}
  1544. .dp .dp_submain .swiper-container .txt span {font-size: 16px; font-weight: 200; color: #222; overflow: hidden;text-overflow: ellipsis;-webkit-line-clamp: 1;-webkit-box-orient: vertical;display: -webkit-box;}
  1545. .dp .dp_submain .swiper-controls {margin-top:60px;}
  1546. .dp .dp_submain .swiper-scrollbar-lock {display: block !important;}
  1547. /* dp_new_item 신상품 슬라이드 */
  1548. .dp .new_item {margin-top: 120px;}
  1549. .dp .new_item .cont_body {padding-left:70px; padding-right:70px;}
  1550. .dp .new_item .item_prod {width:100%;}
  1551. .dp .new_item .item_state {padding:0;}
  1552. .dp .new_item .swiper-wrapper{padding-bottom:0px; min-height:670px;}
  1553. .dp .new_item .swiper-slide {width:calc((100% - 88px)/5 * 0.92); transition:all 200ms ease;}
  1554. .dp .new_item .swiper-slide.scaleBig {width:calc((100% - 88px)/5 * 1.12);}
  1555. .dp .new_item .swiper-button-next,
  1556. .dp .new_item .swiper-button-prev {margin-top:-150px;}
  1557. .dp .new_item .swiper-button-next {right:0px;}
  1558. .dp .new_item .swiper-button-prev {left:0px;}
  1559. .dp .new_item .swiper-pagination {position:relative; margin-top:60px;}
  1560. /* dp_new_item MD추천 아이템 슬라이드 */
  1561. .dp .md_item {margin-top:120px}
  1562. .dp .md_item .swiper-button-prev,
  1563. .dp .md_item .swiper-button-next {margin-top:-140px;}
  1564. .dp .md_item .cont_body {padding:0 70px;}
  1565. .dp .md_item .swiper-pagination {position:relative; margin-top:60px;}
  1566. .dp .md_item .swiper-slide .item_state {padding:0;}
  1567. .dp .md_item .item_prod {width: 100%; margin-bottom: 0;}
  1568. /* dp_list 카테고리별 상품리스트 */
  1569. .dp_list .count_wrap {padding-top:40px;}
  1570. .dp_list .item_prod {width:20%;}
  1571. .dp_list .form_field input[type="checkbox"] + label {font-weight: 200; line-height: 1;}
  1572. .dp_list .form_field input[type="checkbox"] + label:before,
  1573. .dp_list .form_field input[type="checkbox"]:checked + label:after {top: -4px;}
  1574. .dp_list .form_field input[type="checkbox"]:checked + label:before {display: none;}
  1575. /* dp_best 베스트 상품 페이지 */
  1576. .dp .dp_best {max-width:100%; margin-bottom:120px;}
  1577. .dp_best .taps {margin-bottom:40px;}
  1578. .dp_best .dp_best_live {padding-top:80px; padding-bottom:80px; padding-left:70px; padding-right:70px; position:relative; background: #f5f5f5;}
  1579. .dp_best .dp_best_live::after {content: ''; display: block;clear: both;}
  1580. .dp_best .dp_best_live .sec_head {float:left; position:relative; width:260px; line-height: 1.2;}
  1581. .dp_best .dp_best_live .sec_head .displayH {margin-top:20px; text-align:left; font-size:30px; line-height:40px; font-weight:500;}
  1582. .dp_best .dp_best_live .sec_head .displayH span {color:#fd4800;}
  1583. .dp_best .dp_best_live .sec_head button {margin-top:20px; color:#888; font-weight: 300; padding-right: 20px; position: relative;}
  1584. .dp_best .dp_best_live .sec_head button:after {content:''; position: absolute; top: 50%; right: 0; width: 14px; height: 14px; background: url('//image.istyle24.com/Style24/images/pc/ico_filter_reset02.png') no-repeat center; margin-top: -6px;}
  1585. .dp_best .dp_best_live .sec_body{float: left; width:calc(100% - 260px);}
  1586. .dp_best .dp_best_live .sec_body .item_state {padding:0 0 60px;}
  1587. .dp_best .dp_best_live .sec_body .item_prod {margin-bottom: 0; margin-right: 0; width: 100%;}
  1588. .dp_best .dp_best_live .it_nav { width: 300px;position: absolute;left: 135px;top: 310px;}
  1589. .dp_best .dp_best_live .item_prod .viewCount{display:table; width: fit-content;height: 30px;color: #fd4802;line-height: 1;font-size: 14px;font-weight: 400;text-align: center;vertical-align: middle;letter-spacing: -.025rem;padding: 6px 12px;border: 2px solid #fd4802;border-radius: 50px;box-sizing: border-box;}
  1590. /* dp_best 베스트TOP100 상품리스트 */
  1591. .dp_best_top100 .cont_body {position:relative;}
  1592. .dp_best_top100 .ui_row {position:absolute; right:0; top:-62px;}
  1593. .dp_best_top100 .ui_row .ui_col_12 {margin: 0;}
  1594. .dp_best_top100 .ui_row .ui_col_12 .form_field {justify-content: flex-end;}
  1595. .dp_best_top100 .ui_row .ui_col_12 .select_custom {width:180px;}
  1596. .dp_best_top100 .ui_row .ui_col_12 .select_custom:first-child {margin-right: 10px;}
  1597. .dp_best_top100 .select_custom .combo .list {border-top:1px solid #ddd; z-index: 100;}
  1598. .dp_best_top100 .select_custom .combo .list > li {padding-left:15px; padding-right:15px; font-size:14px; line-height:40px;}
  1599. .dp_best_top100 .select_custom .combo .select {font-size: 14px; padding:14px 15px;}
  1600. .dp_best_top100 .list_content .item_prod {width: 20%;}
  1601. /* dp_best 베스트 상품리스트 */
  1602. .dp .dp_best_list {margin-top:120px}
  1603. .dp_best_list .cont_body {padding-left:70px; padding-right:70px;}
  1604. .dp_best_list .list_content .item_prod {width: 20%;}
  1605. /* dp_Exhibition 기획전리스트 */
  1606. .dp_Exhibition .count_wrap {padding-top:20px;}
  1607. .dp_Exhibition .item_prod .item_state {display: table; vertical-align: middle; padding: 0; width: 100%; padding-left:130px; height: 100%;}
  1608. .dp_Exhibition .exhi_list {margin-bottom:80px; margin:0 -10px 80px;}
  1609. .dp_Exhibition .exhi_list::after {content:''; clear:both; display:block;}
  1610. .dp_Exhibition .exhi_list .exhi_item {float:left; width:calc((100% - 60px)/4); overflow: hidden; margin-bottom:60px; margin-left:20px; min-height:717px;}
  1611. .dp_Exhibition .exhi_list .exhi_item:nth-child(4n-3) {margin-left:0;}
  1612. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img .thumb {position: relative; width: 100%; height:0; display: block; padding-bottom: 100%;}
  1613. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height:auto;}
  1614. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img a {position: relative; width: 100%; display: block;}
  1615. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img a .shape {max-width:52px; min-height:52px; width: 42px;}
  1616. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img a .shape span {width: 43px; font-weight: 300;}
  1617. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img a .shape:after {height: 42px;}
  1618. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img a:after {content:''; position: absolute; left: 0; bottom: 0; width: 100%; height: 342px; background: linear-gradient(0deg, rgba(0,0,0,1) 0%, transparent 100%); z-index: 8;}
  1619. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img .exhi_detail {position: absolute; left: 0; bottom: 100px; z-index: 9; padding: 23px; padding-bottom: 0;}
  1620. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img .exhi_detail * {display: -webkit-box; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: #fff; font-weight: 300; letter-spacing: 0;}
  1621. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img .exhi_detail .brand {font-size: 14px;}
  1622. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img .exhi_detail .tit {margin:20px 0 15px; padding-bottom: 0; max-height:66px; font-size:24px; line-height:1.4; word-break:keep-all; text-align:left;}
  1623. .dp_Exhibition .exhi_list .exhi_item .exhi_item_img .exhi_detail .sale {font-size: 14px; -webkit-line-clamp: 1; height: 13px;}
  1624. .dp_Exhibition .exhi_list .exhi_item_pr {background: #fff; padding: 20px; position: relative; z-index: 9; width: 88.4%; margin:-70px auto 0; min-height:356px;}
  1625. .dp_Exhibition .exhi_list .exhi_item_pr li {height: 150px; margin-bottom: 16px;}
  1626. .dp_Exhibition .exhi_list .exhi_item_pr li:last-child {margin-bottom: 0;}
  1627. .dp_Exhibition .exhi_list .exhi_item_pr .item_prod {width: 100%; margin-right: 0; margin-bottom: 0; height: 150px;}
  1628. .dp_Exhibition .exhi_list .exhi_item_pr .itemPic {position: absolute; left: 0; top: 0; width: 100px; height: 150px; padding-top: 0; margin-bottom: 0; background:#f9f9f9;}
  1629. .dp_Exhibition .exhi_list .exhi_item_pr .itemLink {position: static; display: table-cell; vertical-align:middle;}
  1630. .dp_Exhibition .exhi_list .exhi_item_pr .itemName {font-size: 14px; line-height: 1.4; max-height: none; margin: 0px 0px 15px; height:auto;}
  1631. .dp_Exhibition .exhi_list .exhi_item_pr .itemPrice {margin-left: 0; margin-right: 0;}
  1632. /* dp_기획전상세_모듈 */
  1633. /* dp_기획전상세 : 상단 프로모션 배너 */
  1634. .dp .dp_detail_visual {padding-bottom:60px;}
  1635. .dp .dp_detail_visual h3 {padding-top:10px; padding-bottom:80px;}
  1636. .dp .dp_detail_visual .cont_head > div .period {position:absolute; left:50%; bottom:40px; transform:translateX(-50%); font-size:14px; font-weight:300; color:#888; text-align:center;}
  1637. .dp .dp_detail_visual .coner_item01 p img {max-width: 100%;}
  1638. .dp_detail_visual .promotion_visual {position:relative; width:100%;}
  1639. .dp_detail_visual .promotion_visual img {width: 100%; height: auto;}
  1640. .dp_detail_visual .promotion_visual.type1 img {position:relative; left:50%; top:0; transform:translateX(-50%);}
  1641. .dp_detail_visual .promotion_visual.type2 .swiper-button-prev {left:70px;}
  1642. .dp_detail_visual .promotion_visual.type2 .swiper-button-next {right:70px;}
  1643. .dp_detail_visual .promotion_visual.type2 .swiper-pagination {width:100%; bottom:40px;}
  1644. /* dp_기획전상세 : 출석 체크 이벤트 */
  1645. .stamp_event {position:relative;}
  1646. .stamp_event .event_calander {padding:120px 0; background-color:#f4f3ef; background-image:url('//image.istyle24.com/Style24/images/pc/bg_check01.png'), url('//image.istyle24.com/Style24/images/pc/bg_check02.png'); background-position:0px 50%, 100% 50%; background-repeat:no-repeat;}
  1647. .stamp_event .event_calander > div {width:1200px; margin-left:auto; margin-right:auto;}
  1648. .stamp_event .event_calander .check_title {position: relative; z-index: 2; text-align: center;}
  1649. .stamp_event .event_calander .check_title > p {margin-bottom:30px; font-size: 30px; font-weight:200;}
  1650. .stamp_event .event_calander .check_title .title {font-size:90px; font-weight:700;}
  1651. .stamp_event .event_calander .check_title .title strong {color:#fd4802; font-weight:700;}
  1652. .stamp_event .event_calander .check_info {position: relative; margin-top:30px; margin-bottom:20px; text-align:right;}
  1653. .stamp_event .event_calander .check_info span {position:relative; font-size:18px; margin-left:20px; padding-left:25px; font-weight:300;}
  1654. .stamp_event .event_calander .check_info span:after {content:''; position:absolute; top:50%; left:0; transform:translateY(-50%); width:18px; height:18px; border-radius:50%; box-sizing:border-box;}
  1655. .stamp_event .event_calander .check_info span.today:after {background:#f9f2eb; border:2px solid #fd4b07;}
  1656. .stamp_event .event_calander .check_info span.complete:after {background:#ffa27f;}
  1657. .stamp_event .event_calander .my_attend_day {position:relative; height:74px; padding:25px 40px; overflow:hidden; background:#222;}
  1658. .stamp_event .event_calander .my_attend_day > p {float:left; color:#fff; font-size:24px; font-weight:500;}
  1659. .stamp_event .event_calander .my_attend_day > .day {float:right; color:#fff; font-size:24px; font-weight:300;}
  1660. .stamp_event .event_calander .my_attend_day > .day span {color:#ff6b47; font-weight:700;}
  1661. .stamp_event .event_calander .tbl {padding:20px 0; border:2px solid #222; border-top:none; text-align:center; background:#fff;}
  1662. .stamp_event .event_calander .tbl th {background: #fff; padding:20px 0; color:#222; font-size:20px;font-weight:300; vertical-align:middle;}
  1663. .stamp_event .event_calander .tbl td {position:relative; height:90px; font-size:24px; font-weight:300; vertical-align:middle;}
  1664. .stamp_event .event_calander .tbl td .date {position:relative; color:#222; z-index:1;}
  1665. .stamp_event .event_calander .tbl td .date.unused {color:#ddd;}
  1666. .stamp_event .event_calander .tbl td .date::before {content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); margin-top:-2px; width:64px; height:64px; border-radius:50%; z-index:-1;}
  1667. .stamp_event .event_calander .tbl td.today .date::before {border:2px solid #fd4802;}
  1668. .stamp_event .event_calander .tbl td.complete .date::before {background:#ffa27f; border:none;}
  1669. .stamp_event .event_calander .tbl td.complete .date.unused::before {opacity:0.3;}
  1670. .stamp_event .event_calander .tbl_wrap + .btn {display:block; min-width:220px; margin:60px auto 0; height:60px; font-size:18px; font-weight:300; line-height:normal;}
  1671. .stamp_event .event_benefit {margin-top:80px;}
  1672. .stamp_event .event_benefit .title {color:#222; font-size:30px; font-weight:500; text-align:center;}
  1673. .stamp_event .event_benefit .benefit_con {margin-top:40px; text-align:center;}
  1674. .stamp_event .event_benefit .benefit_con ul{margin: -6px auto;width: 1200px;background: #f5f5f5;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
  1675. .stamp_event .event_benefit .benefit_con li{width: 24%;height: 125px;margin:40px 0;position:relative;}
  1676. .stamp_event .event_benefit .benefit_con li::after{content: ''; display: inline-block;width: 1px;height: 100%;padding: 0;margin: 0;background: #e4e4e4;position: absolute;right: 0;top: 0;}
  1677. .stamp_event .event_benefit .benefit_con li:last-child::after{content: ''; display: inline-block; width:0;}
  1678. .stamp_event .event_benefit .benefit_con li:first-child{width: 28%;padding-left: 45px;}
  1679. .stamp_event .event_benefit .benefit_con li:last-child{width: 28%;padding-right: 70px;}
  1680. .stamp_event .event_benefit .benefit_con li:last-child div{ padding-top: 88px;}
  1681. .stamp_event .event_benefit .benefit_con li div{height: 124px;padding-top: 95px;font-size: 18px;font-weight: 400;line-height: 1.4;letter-spacing: -.025em;}
  1682. .stamp_event .event_benefit .benefit_con li div .c_primary{font-weight: 700;}
  1683. .stamp_event .event_benefit .benefit_con li .benfit_point {background: url(//image.istyle24.com/Style24/images/mo/ico_bg_point.png) no-repeat center 0px;background-size: 70px;}
  1684. .stamp_event .event_benefit .benefit_con li .benfit_coupon {background: url(//image.istyle24.com/Style24/images/mo/ico_bg_check.png) no-repeat center 0px;background-size: 70px;}
  1685. /* dp_기획전상세 : 할인쿠폰 */
  1686. .dp .dp_coupon {padding-top:60px; padding-bottom:60px; overflow:hidden;}
  1687. .dp_coupon .coupon_list {max-width:1200px; margin:auto;}
  1688. .dp_coupon .coupon_list ul {margin-top:-60px;}
  1689. .dp_coupon .coupon_list ul::after {content:''; display:block; clear:both;}
  1690. .dp_coupon .coupon_list ul li {float:left; width:calc((100% - 60px)/4); margin-left:20px; margin-top:60px;}
  1691. .dp_coupon .coupon_list ul li:nth-child(4n-3) {margin-left:0;}
  1692. /* dp_기획전상세 : 유의사항 */
  1693. .dp_announce {margin-top: 80px; padding-top: 40px;}
  1694. .dp_announce .cont_head {display:none;}
  1695. .dp_announce.line {margin-top:20px;}
  1696. .dp_announce.line .announce_txt {padding-top:60px;}
  1697. .dp_announce.line .announce_txt:before {content:''; position:absolute; top:0; left:-190px; right:-190px; height: 1px; background: #ddd;}
  1698. /* dp_기획전상세 : 버튼영역 */
  1699. .dp .dp_btn_area {padding-bottom:20px;}
  1700. .dp .dp_btn_area .cont_head {display:none;}
  1701. .dp .dp_btn_area .btn_wrap {text-align:center; margin:0;}
  1702. .dp .dp_btn_area .btn_wrap .btn {min-width:220px; height:60px; font-size:18px; font-weight:300; line-height:35px;}
  1703. .dp .dp_btn_area .btn_wrap .btn.go_next span {display:inline-block; padding-right:20px; background:url('//image.istyle24.com/Style24/images/pc/ico_bread_root_w.png') no-repeat 100% 50%;}
  1704. /* dp_기획전상세 : 리얼후기 */
  1705. .dp .dp_review {margin-top:60px; margin-bottom:60px; padding-top:120px; padding-bottom:120px; background:#f5f5f5;}
  1706. .dp_review .cont_body {padding-left:70px; padding-right:70px;}
  1707. .dp_review .review_list::after {content:''; display:block; clear:both;}
  1708. .dp_review .review_list .reviw_box {float:left; width:calc((100% - 80px)/5); margin-right:20px; margin-bottom: 20px; background:#fff;}
  1709. .dp_review .review_list .reviw_box:nth-child(5n) {margin-right:0;}
  1710. .dp_review .review_list .reviw_box .best_review .pic .thumb {display:block; position:relative; width:100%; padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
  1711. .dp_review .review_list .reviw_box .best_review .pic .thumb.mov::after {content:''; position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.3) url('//image.istyle24.com/Style24/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
  1712. .dp_review .review_list .reviw_box .best_review .star_score {height:auto; padding:30px 30px 0;}
  1713. .dp_review .review_list .reviw_box .best_review .txt_best_review {padding:15px 30px 0;}
  1714. .dp_review .review_list .reviw_box .best_review .txt_best_review p {height:72px; overflow:hidden; line-height:24px; color:#666; font-size:14px; font-weight:200; display:-webkit-box; text-overflow:ellipsis; -webkit-line-clamp:3; -webkit-box-orient:vertical;}
  1715. .dp_review .review_list .reviw_box .best_review .info_writer {padding:15px 30px 30px;}
  1716. .dp_review .review_list .reviw_box .best_review .info_writer > span {position:relative; padding:0 20px;}
  1717. .dp_review .review_list .reviw_box .best_review .info_writer > span::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); height:10px; border-left:1px solid #ddd;}
  1718. .dp_review .review_list .reviw_box .best_review .info_writer > span:first-child {padding-left:0;}
  1719. .dp_review .review_list .reviw_box .best_review .info_writer > span:first-child::after {display:none;}
  1720. .dp_review .review_list .reviw_box .review_item {padding:0px 30px 20px;}
  1721. .dp_review .review_list .reviw_box .review_item .item_prod {text-align:left; width:100%; padding-top:20px; border-top:1px solid #ddd;}
  1722. .dp_review .review_list .reviw_box .review_item .item_prod .item_state {position:relative; padding:0;}
  1723. .dp_review .review_list .reviw_box .review_item .item_prod .itemLink {display:inline-block; width:100%; height:120px; box-sizing:border-box; padding-left:110px; vertical-align:middle;}
  1724. .dp_review .review_list .reviw_box .review_item .item_prod .itemName {margin:30px 0 0; -webkit-line-clamp:1; height:auto; white-space: nowrap; overflow:hidden; text-overflow: ellipsis;}
  1725. .dp_review .review_list .reviw_box .review_item .item_prod .itemPrice {margin:15px 0 0;}
  1726. .dp_review .review_list .reviw_box .review_item .item_prod .itemPic {position:absolute; left:0; top:0; padding:0; width:80px; height:120px; margin:0; z-index:2;}
  1727. /* dp_기획전상세 : 이벤트 댓글 */
  1728. .dp .cmt {margin-top:60px;}
  1729. .cmt .fileAdd {width:110px; height:110px; background-color:#fff;}
  1730. .cmt_wrap {background: #f5f5f5; padding:60px 0 120px;}
  1731. .cmt_wrap > div {width:1200px; margin-left:auto; margin-right:auto;}
  1732. .cmt_wrap .pics {border:none; width:110px; height: 110px; background:#fff;}
  1733. .cmt_wrap .pics .picsThumbs {max-width: 100%; max-height: 100%;}
  1734. .cmt_wrap .cmt_write .cmt_tarea {margin-bottom: 20px;}
  1735. .cmt_wrap .cmt_write .cmt_tarea textarea {background: #fff; padding: 20px; resize: none; width: 100%; height: 140px; font-size: 14px; line-height: 1.3;}
  1736. .cmt_wrap .cmt_write .cmt_thumb + .btn {display:block; margin-top:40px; margin-left:auto; margin-right:auto; width:220px; height:60px; font-size:18px; font-weight:300;}
  1737. .cmt_wrap .cmt_group {margin-top:90px;}
  1738. .cmt_wrap .cmt_group .cmt_list_tit {padding-bottom:30px; border-bottom:1px solid #ddd;}
  1739. .cmt_wrap .cmt_group .cmt_list_tit strong {margin-right: 10px; font-size: 26px; font-weight: 500;}
  1740. .cmt_wrap .cmt_group .cmt_list_tit .cnt {font-size:22px; color: #666; font-weight:200;}
  1741. .cmt_wrap .cmt_group .cmt_list li {padding: 30px 0; border-bottom: 1px solid #ddd;}
  1742. .cmt_wrap .cmt_group .cmt_list li .cmt_top::after {content:''; clear:both; display:block;}
  1743. .cmt_wrap .cmt_group .cmt_list li .cmt_top span {float:left; margin-left:20px; padding-left:20px; border-left:1px solid #ddd;}
  1744. .cmt_wrap .cmt_group .cmt_list li .cmt_top span:first-child {margin-left:0px; padding-left:0px; border-left:none;}
  1745. .cmt_wrap .cmt_group .cmt_list li .cmt_top .writer {color: #666;}
  1746. .cmt_wrap .cmt_group .cmt_list li .cmt_top .date {color: #888;}
  1747. .cmt_wrap .cmt_group .cmt_list li .cmt_cont .img_wrap {margin-top:15px;}
  1748. .cmt_wrap .cmt_group .cmt_list li .cmt_cont p {margin-top:20px; color: #666; font-size:14px; line-height:24px;}
  1749. .cmt_wrap .cmt_group .cmt_list li .cmt_cont .btn {width:72px; height:34px; background:none; border-color:#a1a1a1; padding:0px; margin-top:20px; font-size:14px; color:#222; font-weight:200;}
  1750. .cmt_wrap .cmt_group .cmt_list li .cmt_cont .btn.btn_del span {position:relative; padding-left:20px;}
  1751. .cmt_wrap .cmt_group .cmt_list li .cmt_cont .btn.btn_del span::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); margin-top:-1px; width:13px; height:16px; background:url('//image.istyle24.com/Style24/images/pc/ico_trash.png') no-repeat 0% 50%; opacity:0.85;}
  1752. .cmt_wrap .cmt_group .nodata {margin-top:120px;}
  1753. .cmt_wrap .pageNav > li > a,
  1754. .cmt_wrap .pageNav > li > span {background-color:transparent;}
  1755. .cmt_wrap .paging_wrap {margin-top: 50px; margin-bottom: 0; box-sizing:content-box;}
  1756. /* dp_기획전상세 : 중간 배너 */
  1757. .dp .dp_mid_banner {padding-top:60px; padding-bottom:60px;}
  1758. .dp .dp_mid_banner .mid_banner {position:relative;}
  1759. .dp .dp_mid_banner img {width:100%; height:auto;}
  1760. .dp .dp_mid_banner .mid_banner .swiper-button-prev {left:70px;}
  1761. .dp .dp_mid_banner .mid_banner .swiper-button-next {right:70px;}
  1762. .dp .dp_mid_banner .mid_banner .swiper-pagination {position:relative; width:100%; margin-top:40px;}
  1763. /* dp_기획전상세 : 대표상품 노출 */
  1764. .dp .dp_special {padding-top:60px; padding-bottom:60px;}
  1765. .dp .dp_special h4 {position:relative;}
  1766. .dp .dp_special h4 a {position:relative;}
  1767. .dp .dp_special h4 .ico_arrow {position:relative; display:inline-block; width:13px; height:24px; margin-top:2px; margin-left:5px; background:url(//image.istyle24.com/Style24/images/pc/ico_dp_arrow.png) no-repeat 0 0; vertical-align:top;}
  1768. .dp_special .dp_listItems_cont {position:relative;}
  1769. .dp_special .dp_listItems_cont .item_prod {width:100%;}
  1770. .dp_special .dp_listItems_cont .item_state {padding:0;}
  1771. .dp_special .dp_listItems_cont .swiper-pagination {position:relative; width:100%; margin-top:40px;}
  1772. .dp_special .dp_listItems_cont.type1 {width:900px; margin:auto;}
  1773. .dp_special .dp_listItems_cont.type1 ul li {margin-top:40px;}
  1774. .dp_special .dp_listItems_cont.type1 ul li:first-child {margin-top:0;}
  1775. .dp_special .dp_listItems_cont.type1 .dp_listItems::after {content:''; display:block; clear:both;}
  1776. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_img {float:left; position:relative; width:394px; height:591px; margin-left:45px; overflow:hidden; background:#f5f5f5;}
  1777. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_img img {position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:100%;}
  1778. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info {float:left; width:410px; margin-left:50px; margin-top:150px;}
  1779. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_brand {color:#888; font-size:20px; font-weight:300;}
  1780. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_name {margin-top:15px; color:#222; font-size:22px; font-weight:200; line-height:28px;}
  1781. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price {margin-top:20px; font-size:24px; font-weight:300;}
  1782. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price::after {content:''; clear:both; display:block;}
  1783. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price .price {float:left; color:#222;}
  1784. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price del {float:left; position:relative; color:#888; font-size:22px; margin-left:10px; text-decoration:none;}
  1785. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price del::after {content:''; position:absolute; left:0; right:0; top:50%; border-top:1px solid #888;}
  1786. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .dp_listItems_price .percent {float:left; color:#fd4802; margin-left:20px;}
  1787. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .itemComment {margin:20px 0 0; padding:0; font-size:14px;}
  1788. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .ui_row {margin-top:50px;}
  1789. .dp_special .dp_listItems_cont.type1 .dp_listItems .dp_listItems_info .btn_default {width:180px; border:1px solid #a7a7a7; color:#222; font-size:16px; font-weight:300;}
  1790. .dp_special .dp_listItems_cont.type2 {max-width:950px; margin:auto; padding-left:70px; padding-right:70px;}
  1791. .dp_special .dp_listItems_cont.type3 {padding-left:70px; padding-right:70px;}
  1792. /* dp_기획전상세 : 다른 기획전,이벤트 보기 */
  1793. .dp .other_promotion_slide {margin-top:160px;margin-bottom: -20px;padding:0 140px!important;}
  1794. .dp .other_promotion_slide .cont_head {position:relative; margin-bottom:60px;}
  1795. .dp .other_promotion_slide .cont_head h4 {position:relative; margin-bottom:0;}
  1796. .dp .other_promotion_slide .cont_head a {position:absolute; top: 50%; right: 0; transform:translateY(-50%); padding-right: 20px; background: url('//image.istyle24.com/Style24/images/pc/ico_more_lg.png') no-repeat right top 1px; font-size: 18px; color:#888;}
  1797. .dp .other_promotion_slide .cont_body {position:relative;}
  1798. .dp .other_promotion_slide .swiper-button-next {right:-70px; margin-top:-70px;}
  1799. .dp .other_promotion_slide .swiper-button-prev {left:-70px; margin-top:-70px;}
  1800. .dp .other_promotion_slide .thumb {margin-bottom: 22px; position: relative; width: 100%; height: auto; padding-top: 100%; overflow:hidden;}
  1801. .dp .other_promotion_slide .thumb img {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); width: 100%; height: auto;}
  1802. .dp .other_promotion_slide .brand {display: inline-block; margin-bottom:10px; font-size: 12px; color:#888; font-weight: 300;}
  1803. .dp .other_promotion_slide .txt {margin:0 6px;}
  1804. .dp .other_promotion_slide .txt .tit {display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin:0; min-height:50px; max-height:50px; overflow: hidden; text-overflow: ellipsis; font-size: 18px; line-height: 1.5; color: #222; font-weight: 300; word-break: keep-all;}
  1805. /* dp_hotdeal 타임딜 리스트 */
  1806. .dp_hotdeal .hotdeal {position: relative; width:100%; margin-bottom: 120px; overflow:hidden;}
  1807. .dp_hotdeal .hotdeal > img {display:block; position:relative; left:50%; top:0; transform:translateX(-50%);}
  1808. .dp_hotdeal .hotdeal #countdown{text-align: center; margin: auto; position: absolute; font-size: 0; width:auto; top:256px; left:50%; margin-left: 75px; transform: translateX(-50%);}
  1809. .dp_hotdeal .hotdeal #countdown span{display: inline-block; position: relative; width: auto; font-size: 26px; font-weight: 300; text-align: center; color: #fff;}
  1810. .dp_hotdeal .hotdeal #countdown span:first-child:after {content:''; position: absolute; top: 5px; right: -6px; background: #fff; width: 3px; height: 3px; border-radius: 50%;}
  1811. .dp_hotdeal .hotdeal #countdown span:first-child:before {content:''; position: absolute; top: 15px; right: -6px; background: #fff; width: 3px; height: 3px; border-radius: 50%;}
  1812. .dp_hotdeal .hotdeal #countdown span:nth-child(2) {margin: 0 10px;}
  1813. .dp_hotdeal .hotdeal #countdown span:nth-child(2):after {content:''; position: absolute; top: 5px; right: -7px; background: #fff; width: 3px; height: 3px; border-radius: 50%;}
  1814. .dp_hotdeal .hotdeal #countdown span:nth-child(2):before {content:''; position: absolute; top: 15px; right: -7px; background: #fff; width: 3px; height: 3px; border-radius: 50%;}
  1815. .dp_hotdeal .list_content {padding-left:70px; padding-right:70px;}
  1816. .dp_hotdeal .itemsGrp.rowtype {width:100%; margin:-20px 0 0 0;}
  1817. .dp_hotdeal .itemsGrp.rowtype .itemSpecialPrice {display:block; margin-bottom:20px;}
  1818. .dp_hotdeal .itemsGrp.rowtype .itemSpecialPrice span {display:inline-block; height:34px; padding:10px 18px; background:#fd4802; color:#fff; font-size:16px; font-weight:300; line-height:1; overflow:hidden; border-radius:20px;}
  1819. /* dp_event_list 룩북 리스트 */
  1820. .dp .event_list .event_top {position: relative; margin-bottom: 30px; height: 40px;}
  1821. .dp .event_list .event_top:after {content:''; clear:both; display: block;}
  1822. .dp .event_list .event_top .count {width: 130px; font-size: 16px; font-weight: 200; color: #888; display: inline-block; padding-top: 20px;}
  1823. .dp .event_list .event_top .count span {color: #fd4802; font-weight: 300;}
  1824. .dp .event_list .event_top .event_btn {position: absolute; top: 0; right: 0;}
  1825. .dp .event_list .event_top .event_btn a {display: inline-block; background: url(//image.istyle24.com/Style24/images/pc/ico_more_sm.png) no-repeat right 20px top 10px; padding: 9px 23px; padding-right: 36px; border:1px solid #a7a7a7; font-size: 14px; color: #222; font-weight: 300;}
  1826. .dp .event_list .list li {float:left; position: relative; width: 24.15%; margin: 0 1.12% 80px 0;}
  1827. .dp .event_list .list li:nth-child(4n) {margin: 0 0 80px 0;}
  1828. .dp .event_list .list li .rank {min-width:52px;}
  1829. .dp .event_list .list li .ev_img {margin-bottom: 25px; position: relative; width: 100%; height: auto; padding-top: 100%;}
  1830. .dp .event_list .list li .ev_img img {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); width: 100%; height: auto;}
  1831. .dp .event_list .list li .txt .brand {color: #888; font-weight: 300;}
  1832. .dp .event_list .list li .txt .tit {display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin: 20px 0 0; min-height:66px; max-height:66px; overflow: hidden; text-overflow: ellipsis; font-size: 24px; line-height: 1.4; color: #222; font-weight: 300; word-break: keep-all;}
  1833. .dp .event_list .list .no_con {display: none;}
  1834. .dp .event_list.no_data .list .event_con {display: none;}
  1835. .dp .event_list.no_data .list .no_con {display: block; padding:100px 0;}
  1836. .dp .event_list.no_data .list .no_con li {width: 100%; text-align: center; margin-right: 0;}
  1837. .dp .event_list.no_data .list .no_con li span {display: block; margin: 25px 0 40px; font-size: 16px; color: #666; font-weight: 300;}
  1838. .dp .event_list.no_data .list .no_con li a {display: inline-block; padding: 9px 23px; border:1px solid #a7a7a7; font-size: 14px; color: #222; font-weight: 300;}
  1839. .dp .event_list .ui_row .ui_col_12 .btn_group {float: right;}
  1840. .dp .event_list .ui_row .ui_col_12 .btn_group > .btn {padding: 12px 96px 12px 19px; line-height: 1; font-size: 14px; color: #666;}
  1841. .dp .event_list .ui_row .ui_col_12 .btn_group > .btn .caret {content: ""; width: 0; height: 0; box-sizing: border-box; position: absolute; top: 16px; right: 19px; border: 6px solid transparent; border-color: #888888 transparent transparent transparent;}
  1842. .dp .event_list .ui_row .ui_col_12 .btn_group .btn.on {border-color: #222;}
  1843. .dp .event_list .ui_row .ui_col_12 .btn_group .btn.on .caret { top: 10px; border-color: transparent transparent #888888 transparent;}
  1844. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu { width:720px; padding: 40px; left: inherit; top:98.5%; right: 0; margin: 0; border-color: #222; box-shadow: none;}
  1845. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu ul {padding-bottom: 40px;border-bottom: 1px solid #ddd;display: flex;flex-direction: row;flex-wrap: wrap;align-content: center;justify-content: space-between;align-items: center;}
  1846. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu ul::after {content:''; display: block; clear:both;}
  1847. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu ul li {margin-top: 22px; width: calc(100% /3 );}
  1848. /*
  1849. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu ul {padding-bottom: 40px; border-bottom: 1px solid #ddd;}
  1850. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu ul li {float: left; width:36.3%; margin-top: 22px;}
  1851. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu ul li:nth-child(3n+0) {width:25%;}
  1852. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu ul li:first-child,
  1853. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu ul li:nth-child(2),
  1854. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu ul li:nth-child(3) {margin-top: 0;}
  1855. */
  1856. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu label {cursor: pointer; font-size: 14px; font-weight: 300;}
  1857. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu input {position: absolute; display: block; overflow: hidden; height: 1px; width: 1px; clip: rect(1px, 1px, 1px, 1px);}
  1858. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu input:checked+span {color:#fd4802;}
  1859. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row {justify-content: center; margin: 30px 0 0;}
  1860. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row .fillter_reset {position: relative; padding: 10px 15px 10px 32px; background: #f5f5f5;}
  1861. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row .fillter_reset::before {content:''; position: absolute; top:50%; left:14px; transform: translateY(-50%); width:13px; height: 13px; background: url(//image.istyle24.com/Style24/images/pc/ico_filter_reset.png)no-repeat;}
  1862. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row button {width:92px;}
  1863. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row button:last-child {background: #222;}
  1864. .dp .event_list .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row button:last-child span {color:#fff;}
  1865. /* dp_bulletship 총알배송 */
  1866. .bulletship {width:100%;}
  1867. .bulletship .bulletship_head {width:100%; overflow:hidden;}
  1868. .bulletship .bulletship_head img {position:relative; left:50%; transform:translateX(-50%);}
  1869. .bulletship .bulletship_body {text-align:center; padding:0px 70px;}
  1870. .bulletship .bulletship_body .txt_result {width:720px; margin:0 auto; padding:60px 0;}
  1871. .bulletship .bulletship_body .txt_result > p:nth-child(1) {position:relative; padding-top:40px; color:#555; font-size:20px; font-weight:300;}
  1872. .bulletship .bulletship_body .txt_result > p:nth-child(1)::before {content:''; position:absolute; width:65px; height:32px; top:0; left:50%; transform:translateX(-50%); background:url('//image.istyle24.com/Style24/images/pc/ico_home.png') no-repeat;}
  1873. .bulletship .bulletship_body .txt_result > p:nth-child(2) {padding-top:20px; color:#222; font-size:46px; font-weight:700; line-height:60px;}
  1874. .bulletship .bulletship_body .txt_result > p:nth-child(2) span {color:#fd4802;}
  1875. .bulletship .bulletship_body .bullet_able,
  1876. .bulletship .bulletship_body .normal_able {display:block; margin-top:40px; padding:20px 110px; background:#f5f5f5; color:#666; font-size:20px; font-weight:200; line-height:30px; word-break:keep-all;}
  1877. .bulletship .bulletship_body .txt_result > p:nth-child(2) + .bulletshop_btn {margin-top:50px;}
  1878. .bulletship .bulletship_body .bullet_able + .bulletshop_btn,
  1879. .bulletship .bulletship_body .normal_able + .bulletshop_btn {margin-top:30px;}
  1880. .bulletship .bulletship_body .bulletshop_btn .btn {height:80px; border:1px solid #a7a7a7; color:#222; font-size:22px; font-weight:500;}
  1881. .bulletship .bulletship_body .bulletshop_btn + P {margin-top:30px; padding-bottom:10px; color:#666; font-size:20px; font-weight:200;}
  1882. .bulletship .bulletship_foot {margin-left:70px; margin-right:70px; overflow:hidden;}
  1883. .bulletship .bulletship_foot img {position:relative; left:50%; transform:translateX(-50%);}
  1884. /* od 공통 */
  1885. .container.od .wrap .content {max-width:1460px; padding-left:0; padding-right:0;}
  1886. .od .wrap {padding-top:120px; padding-bottom:160px;}
  1887. .od div::after {clear:both; display:block; content:'';}
  1888. .od .cont_head h2 {margin-bottom:0; color:#222; font-size:40px; font-weight:500; line-height:1; text-align:center; letter-spacing:-1px;}
  1889. .od .btn span {line-height:1;}
  1890. .od .tmark_required {color:#fd4802; font-size:12px; font-weight:300; line-height:14px;}
  1891. .od .tmark_optional {color:#888; font-size:12px; font-weight:200;}
  1892. .od .item_slide .item_gd a .price {margin-top:15px;}
  1893. .od .info_txt {padding:20px 30px; background:#fff6f2;}
  1894. .od .info_txt ul li {position: relative; font-size: 14px; color: #888; padding-left:13px; margin-bottom: 14px;}
  1895. .od .info_txt ul li:last-child {margin-bottom: 0;}
  1896. .od .info_txt ul li:after {content:''; position: absolute; top:5px; left: 0; background: #858585; width: 3px; height: 3px;}
  1897. .od .form_field {display:block;}
  1898. .od .form_field::after {clear:both; display:block; content:'';}
  1899. .od .form_field input[type="radio"] + label,
  1900. .od .form_field input[type="checkbox"] + label {padding-left:30px; line-height:1; color:#222; font-size:16px; font-weight:200;}
  1901. .od .form_field input[type="radio"] + label:before,
  1902. .od .form_field input[type="radio"]:checked + label:after,
  1903. .od .form_field input[type="checkbox"] + label:before,
  1904. .od .form_field input[type="checkbox"]:checked + label:after,
  1905. .od .form_field input[type="checkbox"]:disabled + label:after {top:50%; transform:translateY(-50%);}
  1906. .od .form_field .input_wrap {display:block; width:100%; margin:0;}
  1907. .od .form_field .input_wrap::after {clear:both; display:block;}
  1908. .od .cont_head {margin-bottom:60px;}
  1909. .od .cont_head .oder_steps {margin-top:35px; text-align:center;}
  1910. .od .cont_head .oder_steps ul {display:inline-block; vertical-align:top;}
  1911. .od .cont_head .oder_steps ul::after {content:''; clear:both; display:block;}
  1912. .od .cont_head .oder_steps ul li {float:left; position:relative; margin-left:60px; padding:0 10px; color:#888; font-size:16px; font-weight:200;}
  1913. .od .cont_head .oder_steps ul li.on {color:#fd4802; font-weight:300;}
  1914. .od .cont_head .oder_steps ul li span {font-weight:300;}
  1915. .od .cont_head .oder_steps ul li::before {content:''; position:absolute; left:-60px; top:50%; width:60px; border-bottom:1px solid #ddd;}
  1916. .od .cont_head .oder_steps ul li:first-of-type {margin-left:0;}
  1917. .od .cont_head .oder_steps ul li:first-of-type::before {border:none;}
  1918. .od .od_cont {float:left; width:calc(100% - 380px); min-height:400px;}
  1919. .od .od_cont button span {line-height:1;}
  1920. .od .od_cont button.btn_sm {height:34px; min-width:70px; padding:9px 13px; font-size:14px; font-weight:200;}
  1921. .od .od_cont button.btn_dark {font-weight:200;}
  1922. .od .od_cont button.btn_default {border-color:#a7a7a7; color:#222;}
  1923. .od .od_cont .form_control {min-width:400px; height:42px; padding-left:18px; color:#222; font-size:14px;}
  1924. .od .od_cont .sec_head {margin-bottom:60px;}
  1925. .od .od_cont .sec_head .tbl .number {color:#fd4802; font-weight:500;}
  1926. .od .od_cont .sec_head .tbl td {text-align:left;}
  1927. .od .od_cont .sec_head .tbl td > span {position:relative; margin-left:30px; padding-left:30px; color:#222; font-size:14px}
  1928. .od .od_cont .sec_head .tbl td > span::before {content:''; position:absolute; left:-1px; top:50%; transform:translateY(-50%); width:1px; height:10px; background-color:#ddd;}
  1929. .od .od_cont .sec_head .tbl td > span:first-child {padding-left:0;}
  1930. .od .od_cont .sec_head .tbl td > span:first-child::before {display:none;}
  1931. .od .od_cont .sec_head .tbl td > span em {margin-left:10px; margin-right:5px; font-size:18px;}
  1932. .od .od_cont .sec_body .foldGroup {float:none;}
  1933. .od .od_cont .sec_body .foldGroup > ul > li {padding:0px 30px;}
  1934. .od_cont .foldGroup .fold_head::after {right:0px; z-index:-1;}
  1935. .od_cont .foldGroup .fold_head a {padding:0;}
  1936. .od_cont .foldGroup .fold_head .fold_tit {width:auto; padding:30px 0px;}
  1937. .od_cont .foldGroup .fold_head .fold_tit span {line-height:1; font-size:24px; font-weight:500; overflow:visible;}
  1938. .od_cont .foldGroup .fold_head .data {position:absolute; top:50%; right:50px; transform:translateY(-50%); color:#000; font-size:16px; font-weight:200; z-index:-1;}
  1939. .od_cont .foldGroup .fold_head .data.maxdisc {z-index:2;}
  1940. .od_cont .foldGroup .fold_head .data span {display:inline-block; position:relative; padding-left:20px; margin-left:20px;}
  1941. .od_cont .foldGroup .fold_head .data span::before {content:''; position:absolute; left:-1px; top:50%; transform:translateY(-50%); width:1px; height:10px; background-color:#ddd;}
  1942. .od_cont .foldGroup .fold_head .data span:first-of-type {margin-left:0; padding-left:0;}
  1943. .od_cont .foldGroup .fold_head .data span:first-of-type::before {display:none;}
  1944. .od_cont .foldGroup .fold_mbinfo .fold_head.on .data {display:none;}
  1945. .od_cont .foldGroup .fold_cont {padding:10px 0 40px; line-height:1; box-sizing:border-box;}
  1946. .od_cont .foldGroup dl {font-size:16px;}
  1947. .od_cont .foldGroup dl .btn span {vertical-align:middle;}
  1948. .od_cont .foldGroup dl > div {display:block; margin-top:20px; color:#222;}
  1949. .od_cont .foldGroup dl > div:first-of-type {margin-top:0px;}
  1950. .od_cont .foldGroup dl > div dt {float:left; margin-right:40px; font-weight:300;}
  1951. .od_cont .foldGroup dl > div dt .mid {display:inline-block; margin-top:12px;}
  1952. .od_cont .foldGroup dl > div dd {position:relative; float:left; width:calc(100% - 170px);}
  1953. .od_cont .foldGroup dl::after,
  1954. .od_cont .foldGroup dl div::after {content:''; display:block; clear:both;}
  1955. .od .od_side {float:right; width:320px;}
  1956. .od .od_side h3 {color:#222; font-size:24px; font-weight:500;}
  1957. .od .od_side h4 {font-size:18px; font-weight:500; margin-bottom:20px;}
  1958. .od .od_side .item_gd figure {position:relative; min-height:150px;}
  1959. .od .od_side .item_gd figure::after {content: ''; display: block; clear: both;}
  1960. .od .od_side .item_gd figure .thumb {float:left; width:100px; height:150px; padding-top:0;}
  1961. .od .od_side .item_gd figure figcaption {display:table-cell; width:178px; height:150px; vertical-align:middle; padding-left:20px;}
  1962. .od .od_side .item_gd figure figcaption .name {margin-top:5px;}
  1963. .od .od_side .item_gd figure figcaption .price {position:relative; margin-top:10px; padding-right:50px; box-sizing:border-box;}
  1964. .od .od_side .item_gd figure figcaption .price del {padding-left:0; line-height:1.2;}
  1965. .od .od_side .item_gd figure figcaption .price .discount {position:absolute; right:0; bottom:0;}
  1966. .od .od_side .item_gd figure figcaption .option {margin-top:5px;}
  1967. .od .od_side .area_order {border:1px solid #ddd; border-top-color:#222;}
  1968. .od .od_side .area_order dl dt {float:left;}
  1969. .od .od_side .area_order dl dd {float:right;}
  1970. .od .od_side .area_order div::after,
  1971. .od .od_side .area_order dl::after,
  1972. .od .od_side .area_order dl div::after {content:''; display:block; clear:both;}
  1973. .od .od_side .area_order .tit_box {padding:20px 30px; border-bottom:1px solid #ddd;}
  1974. .od .od_side .area_order .tit_box h3 {display:inline-block; margin-bottom:0}
  1975. .od .od_side .area_order .tit_box span {float:right; display:inline; margin-top:6px; margin-left:5px; color:#888; font-size:16px; font-weight:200; vertical-align:top;}
  1976. .od .od_side .area_order .tit_box span em.number {color:#fd4802; font-weight:500;}
  1977. .od .od_side .area_order .od_item_box {padding:0px 30px 0; border-bottom:1px solid #ddd;}
  1978. .od .od_side .area_order .od_item_box .part_dlvr {padding:30px 0px 30px; border-top:1px solid #ddd;}
  1979. .od .od_side .area_order .od_item_box .part_dlvr:first-child {border-top:none;}
  1980. .od .od_side .area_order .od_item_box .part_dlvr h4 span {margin-left:4px; color:#888; font-size:12px; font-weight:200; vertical-align:middle;}
  1981. .od .od_side .area_order .od_item_box .part_dlvr .gd_list {margin-top:25px; padding-top:25px; border-top:1px dashed #ddd;}
  1982. .od .od_side .area_order .od_item_box .part_dlvr .gd_list:first-of-type {margin-top:0; padding-top:0; border-top:none;}
  1983. .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd {margin-top:24px;}
  1984. .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd:first-of-type{margin-top:0}
  1985. .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd .option .name {margin-top:5px; -webkit-line-clamp:3;}
  1986. .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd .option span {display:block; line-height:1.4;}
  1987. .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd .price {margin-top:5px;}
  1988. .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd .info_reserv {margin-top:10px; color:#fd4802; font-size:14px; font-weight:200;}
  1989. .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd .info_reserv span {margin-left:10px; font-weight:300;}
  1990. .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd.soldout .thumb:before {content:'SOLD OUT'; position: absolute; top: 50%; left: 50%; font-size: 14px; font-weight: 500; color:#fff; background: rgba(0,0,0,.7); width: 100%; height: 100%; transform:translate(-50%, -50%); line-height: 150px; z-index: 20; text-align: center;}
  1991. .od .od_side .area_order .od_amount_box {padding:30px; color:#888; font-size:14px; font-weight:200;}
  1992. .od .od_side .area_order .od_amount_box dl div {margin-top:20px;}
  1993. .od .od_side .area_order .od_amount_box dl div:first-child {margin-top:0px;}
  1994. .od .od_side .area_order .od_amount_box dl dt {font-size:14px; font-weight:300;}
  1995. .od .od_side .area_order .od_amount_box dl dd {color:#222; font-size:16px; font-weight:300;}
  1996. .od .od_side .area_order .od_amount_box dl dd em {font-size:16px;}
  1997. .od .od_side .area_order .od_amount_box dl .disc_amount {color:#fd4802; font-weight:300;}
  1998. .od .od_side .area_order .od_amount_box .t_info {margin-top:20px; text-align:right;}
  1999. .od .od_side .area_order .od_amount_box .btn_link {display:inline-block; padding:0px 13px; height:40px; line-height:38px; color:#222; font-size:14px; font-weight:300; border:1px solid #a7a7a7; box-sizing:border-box;}
  2000. .od .od_side .area_order .od_amount_box .btn_link::after {display:none;}
  2001. .od .od_side .area_order .totalprice_box {padding:0px 30px 40px;}
  2002. .od .od_side .area_order .totalprice_box dl {padding:40px 0 0; border-top:1px solid #ddd; font-size:16px; font-weight:300;}
  2003. .od .od_side .area_order .totalprice_box dl dt {margin-top:5px; font-size:16px; font-weight:500;}
  2004. .od .od_side .area_order .totalprice_box dl dd {color:#fd4802; font-size:18px; font-weight:700;}
  2005. .od .od_side .area_order .totalprice_box dl dd span {font-size:24px; vertical-align:middle;}
  2006. .od .od_side .area_order .totalprice_box .info_point {margin-top:12px; color:#888; font-size:14px; font-weight:300; text-align:right; line-height:16px;}
  2007. .od .od_side .area_order .totalprice_box .info_point .save_point {display:inline-block; padding-left:22px; height:16px; background:url('//image.istyle24.com/Style24/images/pc/ico_point.png') no-repeat 0 50%; color:#fd4802;}
  2008. .od .od_side .area_order .totalprice_box .info_extra {margin-top:12px; color:#888; font-size:14px; font-weight:300; text-align:left; line-height:16px;}
  2009. .od .od_side .area_order .btn_box {padding:0px 30px 35px;}
  2010. .od .od_side .area_order .btn_box .btn {height:60px; font-weight:300; padding:20px;}
  2011. .od .od_side .area_salecoupon {margin-top:35px;}
  2012. .od .od_side .area_salecoupon input {height:42px; padding:12px 15px; color:#222; font-size:14px; font-weight:300;}
  2013. .od .od_side .area_salecoupon .input_wrap {float:left; width:240px;}
  2014. .od .od_side .area_salecoupon .btn {width:70px; height:42px; box-sizing:border-box; font-size:14px; font-weight:200;}
  2015. .od .od_side .area_salecoupon .coupon_box {width:100%; margin-top:20px;}
  2016. .od .od_side .area_salecoupon .coupon_box .coupon {position:relative; margin-top:10px; border:1px solid #ddd; box-sizing:border-box; background:#fff;}
  2017. .od .od_side .area_salecoupon .coupon_box .coupon:first-child {margin-top:0;}
  2018. .od .od_side .area_salecoupon .coupon_box .coupon > div {position:relative;}
  2019. .od .od_side .area_salecoupon .coupon_box .coupon > div::after {content:''; position:absolute; top:50%; right:-1px; transform:translateY(-50%); width:15px; height:30px; background:#fff; z-index:2; border:1px solid #ddd; border-right:none; border-top-left-radius:15px; border-bottom-left-radius:15px; overflow:hidden;}
  2020. .od .od_side .area_salecoupon .coupon_box .coupon p {padding:0 20px;}
  2021. .od .od_side .area_salecoupon .coupon_box .coupon .cp_name {padding-top:30px; color:#222; font-size:14px; font-weight:300;}
  2022. .od .od_side .area_salecoupon .coupon_box .coupon .cp_cont {margin-top:10px;}
  2023. .od .od_side .area_salecoupon .coupon_box .coupon .cp_cont span {color:#fd4802; font-size:22px; font-weight:700;}
  2024. .od .od_side .area_salecoupon .coupon_box .coupon .cp_cont span em {font-size:28px;}
  2025. .od .od_side .area_salecoupon .coupon_box .coupon .cp_condition {margin-top:15px; padding-bottom:15px; color:#888; font-size:12px; font-weight:300; line-height:1.4;}
  2026. .od .od_side .area_salecoupon .coupon_box .coupon .cp_condition span {display:block; margin-top:10px}
  2027. .od .od_side .area_salecoupon .coupon_box .coupon .cp_date {padding:20px 0; border-top:1px dashed #ddd; text-align:center; color:#222; font-size:14px; font-weight:200;}
  2028. .od .od_side .area_salecoupon .coupon_box .btn_underline {display:block; margin:23px auto 0; color:#888; border-color:#888; font-size:12px;}
  2029. .od .od_side .area_saleitem {margin-top:40px;}
  2030. /* od_shopping_Bag */
  2031. .od .shopping_bag table th,
  2032. .od .shopping_bag table td {vertical-align:middle;}
  2033. .shopping_bag .nodata {padding-top:110px;}
  2034. .shopping_bag .nodata .txt_box::before {background-image:url('//image.istyle24.com/Style24/images/pc/ico_cart_empty.png');}
  2035. .shopping_bag .sec_head table .form_field > div {display:inline-block; margin-left:30px;}
  2036. .shopping_bag .sec_head table .form_field span {display:inline-block; height:22px; line-height:22px;}
  2037. .shopping_bag .sec_head table .form_field span .tag {margin-right:5px;}
  2038. .shopping_bag .sec_body .sec_select {margin-top:40px; margin-bottom:30px; padding-bottom:20px; border-bottom:1px solid #222;}
  2039. .shopping_bag .sec_body .sec_select > div {position:relative;}
  2040. .shopping_bag .sec_body .sec_select > div .btn {position:absolute; right:0; top:50%; transform:translateY(-50%); height:34px; padding:10px; font-size:14px; font-weight:200;}
  2041. .shopping_bag .sec_body .sec_part {margin-bottom:60px;}
  2042. .shopping_bag .sec_body .sec_part:last-child {margin-bottom:0;}
  2043. .shopping_bag .sec_body .sec_part h3 {margin-bottom:30px}
  2044. .shopping_bag .sec_body .sec_part h4 {padding-top:40px; margin-bottom:0; border-top:1px dashed #ddd; color:#222; font-size:24px; font-weight:500;}
  2045. .shopping_bag .sec_body .sec_part h4:first-of-type {border-top:none}
  2046. .shopping_bag .sec_body .sec_part h4 .tit_info {margin-left:10px; color:#888; font-size:16px; font-weight:300;}
  2047. .shopping_bag .tip1 .tip_contents{width: 100%; min-width:250px; transform: translate(-61px, 14px); font-size: 12px;}
  2048. .shopping_bag .tip1 .tip_contents:before,
  2049. .shopping_bag .tip1 .tip_contents:after{left: 27%;}
  2050. /* od_shopping_Bag 실시간조회상품 */
  2051. .container .wrap .content.od_realtime {position:relative; max-width:1460px; margin-top:120px;}
  2052. .od_realtime .swiper-container {padding:0px;}
  2053. .od_realtime .swiper-container .swiper-wrapper .swiper-slide .item_prod {width:100%;}
  2054. .od_realtime .swiper-container .swiper-wrapper .swiper-slide .item_state {padding:0;}
  2055. .od_realtime .swiper-button-prev {left:-70px; top:275px;}
  2056. .od_realtime .swiper-button-next {right:-70px; top:275px;}
  2057. .od_realtime .swiper-button-prev::after,
  2058. .od_realtime .swiper-button-next::after {content: ''; display:inline-block; width:27.5px; height:50px; background:url(//image.istyle24.com/Style24/images/pc/ico_arr_lg.png) no-repeat;}
  2059. .od_realtime .swiper-button-prev::after {background-position:0 50%;}
  2060. .od_realtime .swiper-button-next::after {background-position:100% 50%;}
  2061. .od_realtime .swiper-container .swiper-pagination {position:relative; display:block; left:auto; right:auto; bottom:auto; margin-top:60px;}
  2062. /* od_shopping_Bag 추천상품 */
  2063. .container .wrap .content.od_recommend {position:relative; max-width:1460px; margin-top:120px;}
  2064. .od .od_recommend .cont_head {margin-bottom:0;}
  2065. .od_recommend .swiper-container {padding:0px;}
  2066. .od_recommend .swiper-container .swiper-wrapper .swiper-slide .item_prod {width:100%;}
  2067. .od_recommend .swiper-container .swiper-wrapper .swiper-slide .item_state {padding:0;}
  2068. .od_recommend .swiper-button-prev {left:-70px; top:275px;}
  2069. .od_recommend .swiper-button-next {right:-70px; top:275px;}
  2070. .od_recommend .swiper-button-prev::after,
  2071. .od_recommend .swiper-button-next::after {content: ''; display:inline-block; width:27.5px; height:50px; background:url(//image.istyle24.com/Style24/images/pc/ico_arr_lg.png) no-repeat;}
  2072. .od_recommend .swiper-button-prev::after {background-position:0 50%;}
  2073. .od_recommend .swiper-button-next::after {background-position:100% 50%;}
  2074. .od_recommend .swiper-container .swiper-pagination {position:relative; display:block; left:auto; right:auto; bottom:auto; margin-top:60px;}
  2075. /* od_odPayment */
  2076. .odPayment .icon_tag {display:inline-block; vertical-align:top;}
  2077. .odPayment .icon_tag::after {content:''; clear:both; display:inline-block; font-weight:300;}
  2078. .odPayment .icon_tag .tag {float:left; margin-left:6px;}
  2079. .odPayment .input_wrap > .btn.btn_dark.btn_sm {height:42px; min-width:70px; padding:13px; font-size:14px; font-weight:300;}
  2080. .odPayment .foldGroup .fold_head .data .total_gift,
  2081. .odPayment .foldGroup .fold_head .data .total_deduct {color:#fd4802; font-weight:500;}
  2082. .odPayment .foldGroup .fold_head .data .maxdisc_amount {padding:0; margin:0; color:#fd4802;}
  2083. .odPayment .foldGroup .fold_head .data .maxdisc_amount::before {display:none;}
  2084. .odPayment .foldGroup .fold_head .data .maxdisc_amount em {font-weight:500;}
  2085. .odPayment .fold_cont .area_overseas,
  2086. .odPayment .fold_cont .area_customitem,
  2087. .odPayment .fold_cont .area_selpoint {padding-top:30px; margin-top:30px; border-top:1px dashed #ddd;}
  2088. .odPayment .fold_cont .area_selpoint input[type="text"]:read-only,
  2089. .odPayment .fold_cont .area_selpoint input[type="text"]:disabled {background:#fff;}
  2090. .odPayment .fold_cont .area_overseas .info_txt,
  2091. .odPayment .fold_cont .area_customitem .info_txt {margin-top:25px;}
  2092. .odPayment .fold_cont .area_mbinfo > dl > div {float:left; position:relative; margin-top:0; height:16px; padding:0 15px;}
  2093. .odPayment .fold_cont .area_mbinfo > dl > div::after {content:''; position:absolute; left:-1px; top:50%; transform:translateY(-50%); width:1px; height:10px; background-color:#ddd;}
  2094. .odPayment .fold_cont .area_mbinfo > dl > div:first-child {padding-left:0;}
  2095. .odPayment .fold_cont .area_mbinfo > dl > div:first-child::after {display:none;}
  2096. .odPayment .fold_cont .area_mbinfo > dl > div dt {position:absolute;}
  2097. .odPayment .fold_cont .area_mbinfo > dl > div dd {width:auto;}
  2098. .odPayment .fold_cont .area_mbinfo > dl > div dd .btn {margin-top:-9px; margin-left:10px; vertical-align:top;}
  2099. .odPayment .fold_cont .area_receiveinfo.none {padding:0 0 30px;}
  2100. .odPayment .fold_cont .area_receiveinfo > dl > div {margin-top:15px; min-height:16px;}
  2101. .odPayment .fold_cont .area_receiveinfo > dl > div:first-child {margin-top:0;}
  2102. .odPayment .fold_cont .area_receiveinfo > dl > div:last-child {margin-top: 10px;}
  2103. .odPayment .fold_cont .area_receiveinfo > dl > div:nth-child(3) {line-height: 1.4;}
  2104. .odPayment .fold_cont .area_receiveinfo > dl > div dt {position:relative; padding-right:10px; margin-right:10px; font-weight:200;}
  2105. .odPayment .fold_cont .area_receiveinfo > dl > div:last-child dt::after {content:':'; position:absolute; right:-2px; top:-1px;}
  2106. .odPayment .fold_cont .area_receiveinfo.none > dl > div:last-child dt::after {content:'';}
  2107. .odPayment .fold_cont .area_receiveinfo > dl > div dd {min-height:16px;}
  2108. .odPayment .fold_cont .area_receiveinfo > dl > div dd .btn {margin-left:15px;}
  2109. .odPayment .fold_cont .area_receiveinfo > dl > div dd .btn_underline {margin-left:12px;}
  2110. .odPayment .fold_cont .area_receiveinfo .icon_tag {margin-top:-3px; margin-left:4px;}
  2111. .odPayment .fold_cont .area_overseas .form_field > div {float:left; margin-right:40px;}
  2112. .odPayment .fold_cont .area_overseas .info_box {font-size:16px;}
  2113. .odPayment .fold_cont .area_overseas .info_box .t_err {margin-top:5px; font-size:14px;}
  2114. .odPayment .fold_cont .area_overseas .info_box.overs1 {margin-top:20px; margin-right:0}
  2115. .odPayment .fold_cont .area_overseas .info_box.overs2 {margin-top:30px; margin-right:0; color:#666}
  2116. .odPayment .fold_cont .area_overseas .info_box .agree_overs {margin-top:15px; width:85%; word-break:keep-all;}
  2117. .odPayment .fold_cont .area_overseas .info_box .agree_overs label {line-height:24px; color:#666;}
  2118. .odPayment .fold_cont .area_overseas .info_box .agree_overs label::before,
  2119. .odPayment .fold_cont .area_overseas .info_box .agree_overs label::after {top:3px !important; transform:translateY(0%) !important;}
  2120. .odPayment .fold_cont .area_customitem .agree_custom label {color:#666; font-size:16px; line-height:24px;}
  2121. .odPayment .fold_cont .area_customitem .agree_custom label::before,
  2122. .odPayment .fold_cont .area_customitem .agree_custom label::after {top:3px !important; transform:translateY(0%) !important;}
  2123. .odPayment .area_selgift .form_field::after {content:''; clear:both; display:block;}
  2124. .odPayment .area_selgift .gift_box {margin-top:20px;}
  2125. .odPayment .area_selgift .gift_box:first-of-type {margin-top:0;}
  2126. .odPayment .gift_box .txt {margin-bottom:28px;}
  2127. .odPayment .gift_box .txt span {position:relative; padding-right:20px; margin-right:10px; color:#222; font-weight:300;}
  2128. .odPayment .gift_box .txt span::after {content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); width:6px; height:11px; background:url('//image.istyle24.com/Style24/images/pc/ico_arrow_thin.png') no-repeat 0 0;}
  2129. .odPayment .gift_box .form_field .gift {float:left; width:calc((100% - 24px) * 0.3333); margin-left:12px; margin-bottom:20px;}
  2130. .odPayment .gift_box .form_field .gift:after {content:''; display:block; clear:both;}
  2131. .odPayment .gift_box .form_field .gift:first-child {margin-left:0;}
  2132. .odPayment .gift_box .form_field .gift:nth-child(3n-2) {margin-left:0;}
  2133. .odPayment .gift_box .form_field .gift .chk_img+label span {padding:0; border:none;}
  2134. .odPayment .gift_box .form_field .gift .chk_img:checked+label {border:2px solid #e7501b;}
  2135. .odPayment .gift_box .form_field .gift input[type="checkbox"] + label:before,
  2136. .odPayment .gift_box .form_field .gift input[type="checkbox"] + label:after{left:14px;}
  2137. .odPayment .gift_box .form_field .gift .chk_img:checked+label {border:2px solid #e7501b;}
  2138. .odPayment .gift_box .form_field .gift input[type="radio"] + label:before,
  2139. .odPayment .gift_box .form_field .gift input[type="radio"] + label:after{left:14px;}
  2140. .odPayment .gift_box .form_field .gift input[type="checkbox"]:checked + label::before {display:none;}
  2141. .odPayment .gift_box .form_field .gift input[type="checkbox"]:checked + label:after {left:20px; width:10px; height:8px; background:url('//image.istyle24.com/Style24/images/pc/ico_chk_gift_required.png') no-repeat 0 0;}
  2142. .odPayment .gift_box .form_field .gift label {display:table-cell; position:relative; width:332px; height:120px; padding:9px 20px 9px 145px; border:1px solid #ddd; box-sizing:border-box; vertical-align:middle;}
  2143. .odPayment .gift_box .form_field .gift label > span {display:inline-block; width:100%;}
  2144. .odPayment .gift_box .form_field .gift label .thumb {position:absolute; left:50px; top:10px; width:77px; height:98px; background-color:#eee;}
  2145. .odPayment .gift_box .form_field .gift label .thumb img {width:100%;}
  2146. .odPayment .gift_box .form_field .gift label .name {width:100%; color:#666; font-size:14px; line-height:1.4; font-weight:200;}
  2147. .odPayment .gift_box .form_field .gift label .deduct {margin-top:5px;color:#fd4802; font-weight:300; font-size:14px;}
  2148. .odPayment .gift_box .form_field .gift input[type="radio"]:Disabled + label {opacity:1;}
  2149. .odPayment .gift_box .form_field .gift input[type="radio"] + label:after {top: 50%; transform: translateY(-50%);}
  2150. .odPayment .form_field .agree_gift {display:block; width:100%; padding-top:30px; margin-top:30px; border-top:1px dashed #ddd; text-align:center;}
  2151. .odPayment .form_field .agree_gift .btn_underline {display:inline-block; margin-left:10px; padding:0px; border-bottom-color:#888;}
  2152. .odPayment .form_field .agree_gift .btn_underline span {color:#888; font-size:12px;}
  2153. .odPayment .form_field .agree_gift p {color:#888; font-size:14px;}
  2154. .odPayment .form_field .agree_gift p label {color:#222; font-size:16px; font-weight:300;}
  2155. .odPayment .form_field .agree_gift p.txt {position:relative; margin-top:20px;}
  2156. .odPayment .area_seldiscount dl > div dt {width:170px; margin-right:0;}
  2157. .odPayment .area_seldiscount dl > div dd {width:485px;}
  2158. .odPayment .area_seldiscount .sale_coupon_box .btn_default {width:80px; margin-left:14px; margin-top:-13px; vertical-align:top;}
  2159. .odPayment .area_seldiscount .sale_coupon_box .maxdisc_amount {color:#fd4802; font-weight:300;}
  2160. .odPayment .area_seldiscount .sale_coupon_box .form_field {margin-top:18px;}
  2161. .odPayment .area_seldiscount .dlvr_fee_box {height:90%;}
  2162. .odPayment .area_seldiscount .dlvr_fee_box .select_custom {height:90px;}
  2163. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .select {height:90px; padding:0;}
  2164. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .select:after {top:50%; right:20px; transform:translateY(-50%);}
  2165. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .list {top:89px; padding:0;}
  2166. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .list > li {line-height:1; height:90px; padding:0; border-top:1px solid #ddd;}
  2167. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon {padding:14px 18px;}
  2168. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .name {color:#222; font-size:14px; font-weight:300;}
  2169. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .txt {margin-top:10px; color:#888; font-size:14px; font-weight:200;}
  2170. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .txt span {font-weight:300;}
  2171. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .discount {margin-top:10px; color:#fd4802; font-size:16px; font-weight:300;}
  2172. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .discount span {font-weight:500;}
  2173. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .dlvr_coupon .empty {margin-top:22px; color:#222; font-size:14px; font-weight:300;}
  2174. .odPayment .area_seldiscount .dlvr_fee_box .select_custom .combo .list > li[aria-disabled="true"] .dlvr_coupon p {color:#888;}
  2175. .odPayment .form_field .maxdisc input[type="checkbox"] + label {color:#222; font-size:16px;}
  2176. .odPayment .form_field .input_wrap input[type="text"]:disabled {background:#f5f5f5;}
  2177. .odPayment .form_field .input_wrap input[type="text"]:disabled::placeholder{color:#222; font-weight:300;}
  2178. .odPayment .area_selpoint dl > div dt {width:170px; margin-right:0;}
  2179. .odPayment .area_selpoint .form_field > div {float:left; margin-right:40px;}
  2180. .odPayment .area_selpoint .form_field > div.input_wrap {float:none; margin-right:0;}
  2181. .odPayment .area_selpoint .form_field .useable_point {margin-right:10px; color:#fd4802; font-size:16px; font-weight:200; vertical-align:middle;}
  2182. .odPayment .area_selpoint .form_field .useable_point em {font-weight:500;}
  2183. .odPayment .area_selpoint .form_field .remain_point {margin-right:10px; color:#fd4802; font-size:14px; font-weight:200;}
  2184. .odPayment .area_selpoint .form_field p {margin-top:15px; color:#888; font-size:14px;}
  2185. .odPayment .fold_paymethod .fold_cont {margin-top:-10px;}
  2186. .odPayment .area_paymethod .radio_blk {padding:0px 30px; border:1px solid #ddd; margin-top:-1px;}
  2187. .odPayment .area_paymethod .radio_blk:first-of-type {margin-top:0;}
  2188. .odPayment .area_paymethod .radio_blk .paymethod_radio {position:relative;}
  2189. .odPayment .area_paymethod .radio_blk .paymethod_radio label {display:block; padding-top:30px; padding-bottom:30px; color:#222; font-size:16px; font-weight:300;}
  2190. .odPayment .area_paymethod .radio_blk .paymethod_radio .quickpay_bnr {position:absolute; left:0; top:-20px; padding:12px; background:#222; color:#fff; font-size:14px; z-index:2;}
  2191. .odPayment .area_paymethod .radio_blk.on .paymethod_radio .quickpay_bnr {display:none;}
  2192. .odPayment .area_paymethod .radio_blk .paymethod_radio .quickpay_bnr::before {content :""; display:block; position:absolute; left:15px; bottom:-10px; border:5px solid transparent; border-top-color:#222;}
  2193. .odPayment .area_paymethod .radio_blk .paymethod_radio .quickpay_bnr::after {content :""; display:block; position:absolute; right:-8px; bottom:-8px; border:8px solid transparent; border-right-color:#fff; transform:rotate(225deg);}
  2194. .odPayment .area_paymethod .radio_blk .paymethod_radio .quickpay_bnr .btn_close_bnr {display:inline-block; width:10px; height:10px; margin-left:4px; margin-top:1px; background:url('//image.istyle24.com/Style24/images/pc/ico_pop_cls02.png') no-repeat 50% 50%; background-size:100% auto;}
  2195. .odPayment .area_paymethod .paymethod_box .card_quickpay button.btn_addcard {display:block; width:340px; height:214px; box-sizing:border-box; border:1px solid #ddd; border-radius:10px; background:#f5f5f5; color:#222; font-size:16px; font-weight:200;}
  2196. .odPayment .area_paymethod .paymethod_box .card_quickpay button.btn_addcard span {display:inline-block; position:relative; padding-top:55px;}
  2197. .odPayment .area_paymethod .paymethod_box .card_quickpay button.btn_addcard span::before {content:''; position:absolute; left:50%; top:0; margin-left:-20px; width:40px; height:40px; background:#fd4800 url('//image.istyle24.com/Style24/images/pc/ico_plus.png') no-repeat 50% 50%; border-radius:50%;}
  2198. .odPayment .area_paymethod .paymethod_box .card_quickpay .empty {padding:30px 0; border-bottom:1px solid #ddd;}
  2199. .odPayment .area_paymethod .paymethod_box .card_quickpay .empty button.btn_addcard {margin:auto;}
  2200. .odPayment .area_paymethod .paymethod_box .card_quickpay .list_card {position:relative; padding:30px 0; margin-left:-30px; margin-right:-30px; overflow:visible;}
  2201. .odPayment .area_paymethod .paymethod_box .card_quickpay .list_card::before {content:''; position:absolute; left:-2px; top:0; bottom:0; border-right:2px solid #fd4802; z-index:2;}
  2202. .odPayment .area_paymethod .paymethod_box .card_quickpay .list_card::after {content:''; position:absolute; right:-2px; top:0; bottom:0; border-right:2px solid #fd4802; z-index:2;}
  2203. .odPayment .area_paymethod .radio_blk.on {border:2px solid #fd4802;}
  2204. .odPayment .area_paymethod .radio_blk.on .paymethod_radio {border-bottom:1px solid #ddd;}
  2205. .odPayment .card_quickpay .list_card .swiper-slide {width:340px; height:214px;}
  2206. .odPayment .card_quickpay .list_card .swiper-button-prev,
  2207. .odPayment .card_quickpay .list_card .swiper-button-next {position:absolute; top:50%; transform:translateY(-50%); font-size:0; width:27.5px; height:50px; background:url(//image.istyle24.com/Style24/images/pc/ico_arr_lg.png) no-repeat; z-index:2;}
  2208. .odPayment .card_quickpay .list_card .swiper-button-prev {left:244px; background-position:0 50%;}
  2209. .odPayment .card_quickpay .list_card .swiper-button-next {right:244px; background-position:100% 50%;}
  2210. .odPayment .card_quickpay .list_card .swiper-button-prev::after,
  2211. .odPayment .card_quickpay .list_card .swiper-button-next::after {font-size:0px;}
  2212. .odPayment .card_quickpay .list_card .card {display:block; position:relative; height:214px; padding:70px 20px 20px; background-color:#4680ec; border-radius:10px; box-sizing:border-box; color:#fff; font-weight:200;}
  2213. .odPayment .card_quickpay .list_card .card [class*="logo_"] {position:absolute; left:30px; top:30px; width:150px; height:20px; font-size:0; text-indent:-1000px; overflow:hidden;}
  2214. .odPayment .card_quickpay .list_card .card .logo_samsung {background:url(//image.istyle24.com/Style24/images/pc/logo_card_samsung.png) no-repeat 0 50%;}
  2215. .odPayment .card_quickpay .list_card .card .logo_hyundai {background:url(//image.istyle24.com/Style24/images/pc/logo_card_hyundai.png) no-repeat 0 50%;}
  2216. .odPayment .card_quickpay .list_card .card .etc {position:absolute; right:30px; top:30px; z-index:2;}
  2217. .odPayment .card_quickpay .list_card .card .etc::after {content:''; clear:both; display:block;}
  2218. .odPayment .card_quickpay .list_card .card .etc button {float:left; position:relative; margin-left:22px;}
  2219. .odPayment .card_quickpay .list_card .card .etc button::before {content:''; position:absolute; left:-12px; top:50%; height:10px; transform:translateY(-50%); border-left:1px solid #c9dbff;}
  2220. .odPayment .card_quickpay .list_card .card .etc button:first-child::before {display:none;}
  2221. .odPayment .card_quickpay .list_card .card .name {margin-top:10px; height:20px; text-align:center; font-size:14px; line-height:20px; color:#c9dbff;}
  2222. .odPayment .card_quickpay .list_card .card .number {margin-top:10px; text-align:center; font-size:24px; font-weight:300;}
  2223. .odPayment .card_quickpay .list_card .card .number span {padding:0px 5px; letter-spacing:2px;}
  2224. .odPayment .card_quickpay .list_card .card .select {width: 100%;z-index:2;}
  2225. .odPayment .card_quickpay .list_card .card .select .select_dress {padding:13px 20px; background:#3259a8; color:#fff; font-size:14px; border:none;}
  2226. .odPayment .card_quickpay .list_card .card .select .select_dress:after {top:15px; border-color:#fff transparent transparent transparent;}
  2227. .odPayment .card_quickpay .list_card .card .select .select_dress.active:after {top:9px; border-color:transparent transparent #fff transparent;}
  2228. .odPayment .card_quickpay .list_card .card .select .select_options {border:none;}
  2229. .odPayment .card_quickpay .list_card .card .select .select_options li {background:#3259a8; font-size:14px; color:#fff;}
  2230. .odPayment .card_quickpay .list_card .card .select .select_options li:hover {background:#093895;}
  2231. .odPayment .area_paymethod .paymethod_box .info_quick {padding:30px 0; border-top:1px solid #ddd;}
  2232. .odPayment .area_paymethod .paymethod_box .info_quick li {position:relative; font-size:14px; color:#888; padding-left:15px; margin-top:10px;}
  2233. .odPayment .area_paymethod .paymethod_box .info_quick li:first-of-type {margin-top:0;}
  2234. .odPayment .area_paymethod .paymethod_box .info_quick li::before {content:''; position:absolute; top:5px; left:0; background:#858585; width:3px; height:3px;}
  2235. .odPayment .area_paymethod .paymethod_box .sel_method::after {content:''; clear:both; display:block;}
  2236. .odPayment .area_paymethod .paymethod_box .sel_method li {float:left; width:calc(100% / 7);}
  2237. .odPayment .area_paymethod .paymethod_box .sel_method li label::before,
  2238. .odPayment .area_paymethod .paymethod_box .sel_method li label::after {display:none;}
  2239. .odPayment .area_paymethod .paymethod_box .sel_method li label span {display:inline-block; height:26px; color:#222; font-size:16px; font-weight:200; line-height:27px;}
  2240. .odPayment .area_paymethod .paymethod_box .sel_method li label .payimg {display:inline-block; width:66px; height:26px; background-position:50% 50%; background-repeat:no-repeat; background-size:auto 100%;}
  2241. .odPayment .area_paymethod .paymethod_box .sel_method li label .payimg.kakao {background-image:url('//image.istyle24.com/Style24/images/pc/pay_kakao.png');}
  2242. .odPayment .area_paymethod .paymethod_box .sel_method li label .payimg.naver {background-image:url('//image.istyle24.com/Style24/images/pc/pay_naver.png');}
  2243. .odPayment .area_paymethod .paymethod_box .sel_method li label .payimg.payco {background-image:url('//image.istyle24.com/Style24/images/pc/pay_payco.png');}
  2244. .odPayment .area_paymethod .paymethod_box .sel_method li input[type="radio"] + label {display:block; height:64px; padding:17px 0; border:1px solid #ddd; border-right:none; text-align:center;}
  2245. .odPayment .area_paymethod .paymethod_box .sel_method li:last-child input[type="radio"] + label {border-right:1px solid #ddd;}
  2246. .odPayment .area_paymethod .paymethod_box .sel_method li input[type="radio"]:checked + label {border:2px solid #fd4802;}
  2247. .odPayment .area_paymethod .paymethod_box .sel_method li input[type="radio"]:checked + label span {color:#fd4802; font-weight:500;}
  2248. .odPayment .area_paymethod .agree_insurance {display:none; margin:25px 0 0;}
  2249. .odPayment .area_paymethod .agree_insurance input[type="checkbox"] + label {color:#666; font-size:14px; font-weight:200;}
  2250. .odPayment .area_paymethod .agree_insurance p {padding:15px 30px 0px; color:#888; font-size:14px; line-height:20px;}
  2251. .odPayment .area_paymethod .agree_paymethod {margin-top:20px;}
  2252. .odPayment .area_paymethod .agree_paymethod input[type="checkbox"] + label {color:#666; font-size:14px; font-weight:200;}
  2253. .odPayment .area_paymentinfo {margin-top:30px;}
  2254. .odPayment .paymentinfo .payinfo_blk {border:1px solid #ddd; border-top:none;}
  2255. .odPayment .paymentinfo .payinfo_blk:first-child {border-top:1px solid #ddd;}
  2256. .odPayment .paymentinfo .payinfo_blk a {display:block; padding:30px 40px; color:#222; font-size:16px; font-weight:300;}
  2257. .odPayment .paymentinfo .payinfo_blk a::after {clear:both; display:block; width:100%;}
  2258. .odPayment .paymentinfo .payinfo_blk a span {float:right; position:relative; padding-right:22px; color:#222; font-size:14px;}
  2259. .odPayment .paymentinfo .payinfo_blk a span::after {content:''; position:absolute; right:0; top:2px; width:11px; height:9px; background:url('//image.istyle24.com/Style24/images/pc/ico_mb_arrow.png') no-repeat 0% 100%; background-size:100% auto;}
  2260. .odPayment .paymentinfo .payinfo_blk .infotxt {display:none; max-height:190px; margin-top:20px; color:#222; font-size:14px; line-height:26px; overflow-y:scroll;}
  2261. .odPayment .paymentinfo .payinfo_blk.on {background:#f5f5f5;}
  2262. .odPayment .paymentinfo .payinfo_blk.on a {padding-bottom:15px;}
  2263. .odPayment .paymentinfo .payinfo_blk.on a span::after {top:3px; transform:rotate(-180deg);}
  2264. .odPayment .paymentinfo .payinfo_blk.on .infotxt {display:block; margin:0px 40px 20px;}
  2265. .odPayment .area_paymentinfo .agree_payment {margin:40px 0 40px; color:#222; font-size:18px; font-weight:200; text-align:center;}
  2266. .odPayment .area_paybtn .btn {height:80px; font-size:20px; font-weight:300;}
  2267. .odPayment .area_paybtn .btn em {font-weight:500;}
  2268. .odPayment .infotxt table {word-break:keep-all;margin-top: 10px;margin-bottom: 10px;}
  2269. .odPayment .infotxt table th,
  2270. .odPayment .infotxt table td {position:relative; padding:10px 40px; font-size:14px;color: #222222;letter-spacing:-0.025em;text-align:center;}
  2271. .odPayment .infotxt table td {border-bottom:1px solid #ddd;border-right: 1px solid #ddd;font-weight:200;}
  2272. .odPayment .infotxt table td:last-child {border-right: 1px solid transparent;}
  2273. .odPayment .infotxt table th {border-top: 1px solid #000;border-bottom:1px solid #000;border-right: 1px solid transparent;font-weight:400;text-align:center;}
  2274. .odPayment .extra_pay {padding:0px 30px 40px; margin-bottom: 20px; border-top:1px solid #222; border-bottom:1px solid #ddd;}
  2275. .odPayment .extra_pay .tit_pay {padding:30px 0px; line-height:1; font-size:24px; font-weight:500;}
  2276. .odPayment .extra_pay .area_paymethod .paymethod_box .sel_method li {width:50%;}
  2277. /* od_completed */
  2278. .completed .tbl table td .btn.btn_sm.btn_default {color:#222; border:1px solid #a7a7a7;}
  2279. .completed .tbl.type1 table td button {margin-left:10px;}
  2280. .completed .tbl.type1 table td .tag {margin-left:6px; margin-top:2px; vertical-align:top;}
  2281. .completed .tbl.type1 {padding:20px 0;}
  2282. .completed .tbl.type1 th,
  2283. .completed .tbl.type1 td {padding-top:7px; padding-bottom:7px; line-height:1.625;}
  2284. .completed .info_complete {padding:50px 0; text-align:center; background:#fff6f2;}
  2285. .completed .info_complete .txt_box {color:#222; font-size:24px; font-weight:500;}
  2286. .completed .info_complete .report_box {margin-top:26px;}
  2287. .completed .info_complete .report_box div {margin-top:15px;}
  2288. .completed .info_complete .report_box div:first-child {margin-top:0;}
  2289. .completed .info_complete .report_box div dt,
  2290. .completed .info_complete .report_box div dd {display:inline-block; font-weight:300;}
  2291. .completed .info_complete .report_box div dt {color:#666; font-size:18px;}
  2292. .completed .info_complete .report_box div dd {margin-left:18px; color:#fd4802; font-size:20px;}
  2293. .completed .info_complete .report_box div.closedate dt,
  2294. .completed .info_complete .report_box div.closedate dd {margin:0; color:#888; font-size:16px; font-weight:200;}
  2295. .completed .info_complete .report_box div.closedate dd span {font-weight:300;}
  2296. .completed .od_cont {width:100%;}
  2297. .completed .od_cont h3 {margin-bottom:20px; font-size:18px; font-weight:500;}
  2298. .completed .od_cont .order_amount dl div {margin-top:20px;}
  2299. .completed .od_cont .order_amount dl div:first-child {margin-top:0;}
  2300. .completed .od_cont [class^='area_']{margin-top:60px;}
  2301. .completed .od_cont .sec_foot {margin-top:60px;}
  2302. .completed .btn_group_md {text-align:center;}
  2303. .completed .btn_group_md .btn {margin:0px 3px; width:230px;}
  2304. /* od_nonMBorder */
  2305. .nonMBorder .cont_head .text_box {margin-top:27px; color:#666; font-size:16px; font-weight:200; line-height:26px; text-align:center;}
  2306. .nonMBorder .cont_head {text-align:center;}
  2307. .nonMBorder .cont_head h3 {margin-bottom:40px; font-size:40px; font-weight:500;}
  2308. .nonMBorder input[type="text"] {float:none; width:100%; height:52px; padding:17px 0 17px 19px; color:#222; font-size:16px; font-weight:300;}
  2309. .nonMBorder input[type="text"]::placeholder {color:#888; font-weight:200;}
  2310. .nonMBorder .form_field {display:block; margin-top:10px;}
  2311. .nonMBorder .form_field:first-of-type {margin-bottom:0px;}
  2312. .nonMBorder .form_field .ui_col_9 input[type="text"] {width:388px;}
  2313. .nonMBorder .form_field .ui_col_3 .btn {width:132px; height:52px; padding:17px 0px 17px; font-weight:200;}
  2314. .nonMBorder .cont_foot {position:relative; width:530px; margin:40px auto 0; color:#888; font-size:16px; line-height:1;}
  2315. .nonMBorder .cont_foot::after {content:''; clear:both; display:block;}
  2316. .nonMBorder .cont_foot p span {display:block;}
  2317. .nonMBorder .cont_foot p .jointit1 {color:#222; font-size:18px; font-weight:300;}
  2318. .nonMBorder .cont_foot p .jointit2 {margin-top:10px; color:#888; font-size:16px; font-weight:200;}
  2319. .nonMBorder .cont_foot a.btn_gojoin {position:absolute; right:0; top:50%; transform:translateY(-50%); padding:0px 20px; height:42px; line-height:42px; color:#222; font-size:14px; font-weight:300; border:1px solid #a7a7a7; box-sizing:border-box;}
  2320. .nonMBorder .btn_group_md {float:none; margin-top:40px; margin-bottom:0;}
  2321. .nonMBorder .btn_group_md .btn {padding:19px; font-weight:300; height:60px;}
  2322. .nonMBorder .btn_group_md .btn_default {border-color:#a7a7a7;}
  2323. .nonMBorder .agree_nombPrivacy {margin-top:40px; margin-bottom:20px;}
  2324. .nonMBorder .agree_nombPrivacy label span {font-size:18px;}
  2325. .nonMBorder .agree_nombPrivacy label span .tmark_required {display:inline-block; margin-top:2px; font-size:14px; vertical-align:top;}
  2326. .nonMBorder .agree_nomb_txt_box {margin-bottom:40px; padding:35px 40px; border:1px solid #ddd;}
  2327. .nonMBorder .agree_nomb_txt_box > div {overflow:auto; max-height:160px; color:#888; font-size:14px; line-height:1.5; font-weight:200; padding-right: 15px;}
  2328. .nonMBorder .agree_nomb_txt_box > div::-webkit-scrollbar {width:2px;}
  2329. .nonMBorder .agree_nomb_txt_box > div::-webkit-scrollbar-thumb {background-color:#222222;background-clip:padding-box; width: 4px;}
  2330. .nonMBorder .agree_nomb_txt_box > div::-webkit-scrollbar-track {background-color:#dddddd;}
  2331. .nonMBorder .adress_area dl {padding:20px 14px 0;}
  2332. .nonMBorder .adress_area dl div {margin-top:15px;}
  2333. .nonMBorder .adress_area dl div:first-of-type {margin-top:0;}
  2334. .nonMBorder .adress_area dl div dt {float:left;}
  2335. .nonMBorder .adress_area dl div dt span {display:inline-block; width:46px; height:22px; padding:4px 0; margin-top:-4px; margin-right:10px; border:1px solid #ddd; font-size:12px; text-align:center; vertical-align:top;}
  2336. .nonMBorder .adress_area dl div dd {padding-left:53px; color:#666; font-size:14px;}
  2337. /* pd_상품상세 */
  2338. /* pd_공통 */
  2339. .container.pd .wrap .content.wide {margin-top:120px;}
  2340. .pd,
  2341. .pd button {line-height:1; font-weight:300;}
  2342. .pd button span {line-height:1;}
  2343. .pd .dot_info {position:relative; padding-left:14px;}
  2344. .pd .dot_info::before {content:'·'; position:absolute; left:0; top:0; line-height:inherit;}
  2345. .pd .swiper-pagination {position:relative; width:100%; margin-top:50px; text-align:center;}
  2346. .pd .swiper-pagination .swiper-pagination-bullet {width:10px; height:10px; margin-left:10px; background:#ddd; opacity:1;}
  2347. .pd .swiper-pagination .swiper-pagination-bullet-active {background:#fd4802;}
  2348. .pd .swiper-pagination .swiper-pagination-bullet:first-child {margin-left:0;}
  2349. .pd .swiper-button-prev::after,
  2350. .pd .swiper-button-next::after {content: ''; display:none;}
  2351. .pd .swiper-button-prev,
  2352. .pd .swiper-button-next {top:50%;margin:0;display:inline-block;width: 20px;height: 40px;border-width:2px 2px 0 0;}
  2353. .pd .area_slider {position:relative; width:100%; box-sizing:border-box; padding:0px 70px;}
  2354. .pd .area_slider .swiper-button-prev,
  2355. .pd .area_slider .swiper-button-next {margin-top:-90px;}
  2356. .pd .area_slider .swiper-container .item_prod {width:100%;}
  2357. .pd .area_slider .swiper-container .item_prod .item_state {padding:0;}
  2358. /* pd */
  2359. .pd .wrap {padding-top:70px; padding-bottom:160px;}
  2360. .pd .item_picker {position:absolute; z-index:2; transform:translate(-50%,-50%);}
  2361. .pd .item_picker .pick_descr {display:none; position:absolute; background:#fff; z-index:2;}
  2362. .pd_pop .select_custom .combo .list > li:hover {background:none;}
  2363. .pd_detail .select_custom .combo .list > li:hover {background:none;}
  2364. /* pd_detail */
  2365. .pd_detail .thumb {display:block; position:relative; width:100%; height:0px; line-height:0; font-size:0; padding-top:150%; overflow:hidden;background:#f5f5f5;background: #ffffff;border: 1px solid #f5f5f5;box-sizing: content-box;}
  2366. .pd_detail .thumb img,
  2367. .pd_detail .thumb video {position:absolute; left:0; top:50%; width:100%; transform:translateY(-50%) ; z-index:2;}
  2368. .pd_detail .movbox {position: relative;height: 0;padding-top: 100%;padding-bottom:50.25%;overflow: hidden;transition: all 300ms ease;transform: scale(1);}
  2369. /* .pd_detail .movbox iframe{position: absolute;left: 0;right: 0;top: 0;bottom: 0;width: 100%;height: 100%;z-index: 1;pointer-events:none; left: -83.45%;width: 185%;} */
  2370. .pd_detail .movbox iframe{position: absolute;left: 0;right: 0;top: 0;bottom: 0;width: 100%;height: 100%;z-index: 1;}
  2371. .pd_detail .movbox iframe[src*="youtu"] {left:0; width: 100%;}
  2372. .pd_detail .btn_popup {display:inline-block; padding:0px; box-sizing:border-box;}
  2373. .pd_detail .btn_popup span {color:#888; font-size:12px; font-weight:200; border-bottom:1px solid #888;}
  2374. .video_controls {position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2;}
  2375. .video_controls button {display:inline-block; overflow:hidden; width:60px; height:60px; font-size:1px; text-indent:-999999px;}
  2376. .video_controls button.btn_video_play {background:url('//image.istyle24.com/Style24/images/pc/btn_video_play.png') no-repeat 50% 50%; background-size:100% auto;}
  2377. .video_controls button.btn_video_pause {background:url('//image.istyle24.com/Style24/images/pc/btn_video_pause.png') no-repeat 50% 50%; background-size:100% auto;}
  2378. .pd_detail .item_detail .area_pic {float:left; position:relative; width:calc(100% - 560px); max-width:1200px; box-sizing:border-box;}
  2379. .pd_detail .item_detail .area_desc {float:right; width:500px;}
  2380. .pd_detail .area_pic .thumb_nav_wrap {position:absolute; left:auto; top:0; width:50px; z-index:2;}
  2381. .pd_detail .area_pic .thumb_nav_wrap .thumbnav {position:relative; padding:30px 0;}
  2382. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .thumb {border: 0;}
  2383. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .thumb.mov::after {content:''; position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.3) url('//image.istyle24.com/Style24/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
  2384. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container {max-height:505px;}
  2385. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container .swiper-slide {width:50px; height:75px !important; box-sizing:border-box; background:#f5f5f5; padding-top: 2px;}
  2386. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container .swiper-slide img,
  2387. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container .swiper-slide video {width:100%; box-sizing:border-box;}
  2388. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container .swiper-slide.on a{display:block;position: relative;}
  2389. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container .swiper-slide.on a span::before {content: ''; display:inline-block; border:1px solid #fd4802;position: absolute;top: 0px;left: 0;z-index: 5;width: 48px;height: 73px;}
  2390. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-button-prev,
  2391. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-button-next {left:50%; right:auto; width:14px; height:14px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; background:none;}
  2392. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-button-prev {top:4px; bottom:auto; transform:translateX(-50%) rotate(-45deg); -webkit-transform:translateX(-50%) rotate(-45deg);}
  2393. .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-button-next {top:auto; bottom:4px; transform:translateX(-50%) rotate(135deg); -webkit-transform:translateX(-50%) rotate(135deg);}
  2394. .pd_detail .area_pic .thumb_list_wrap {width:100%; padding-left:70px; box-sizing:border-box;}
  2395. .pd_detail .area_pic .thumb_list_wrap ul {margin-top:-10px;}
  2396. .pd_detail .area_pic .thumb_list_wrap ul::after {content:''; clear:both; display:block; width:100%;}
  2397. .pd_detail .area_pic .thumb_list_wrap li {float:left; position:relative; width:calc(50% - 6px); margin-top:10px;}
  2398. .pd_detail .area_pic .thumb_list_wrap li:nth-child(even) {margin-left:10px;}
  2399. .pd_detail .area_pic .thumb_list_wrap li a {display:block; cursor:url('//image.istyle24.com/Style24/images/pc/cursor_zoom.png') 0 0, zoom-in;}
  2400. .pd_detail .area_pic .thumb_list_wrap li.on a span img {z-index:2;}
  2401. .pd_detail .area_pic .thumb_nav_wrap.fixtop {position:fixed; top:90px; bottom:auto;}
  2402. .pd_detail .area_pic .thumb_nav_wrap.fixbottom {position:absolute; top:auto; bottom:0px;}
  2403. .pd_detail .area_pic .thumb_nav_wrap .thumbnav.disabled {padding:0;}
  2404. .pd_detail .area_pic .thumb_nav_wrap .thumbnav.disabled .swiper-button-prev,
  2405. .pd_detail .area_pic .thumb_nav_wrap .thumbnav.disabled .swiper-button-next {display:none;}
  2406. .pd_detail .area_pic.onlyitem {padding-left:0;}
  2407. .pd_detail .area_pic.onlyitem .thumb_nav_wrap {display:none;}
  2408. .pd_detail .area_pic.onlyitem .thumb_list_wrap ul li {float:none; display:block; margin:0 auto;}
  2409. .pd_detail .area_pic.onlyitem .thumb_list_wrap ul li.on::after {display:none;}
  2410. .pd_detail .area_desc .desc_wrap {width:500px; z-index:2;}
  2411. .pd_detail .area_desc .desc_wrap.absbottom {position:absolute; top:auto; bottom:0px;}
  2412. .pd_detail .area_desc .desc_wrap.fixbottom {position:fixed; top: auto; bottom:0px;}
  2413. .pd_detail .area_desc .desc_wrap .timer_box {position:relative; padding-bottom:30px;}
  2414. .pd_detail .area_desc .desc_wrap .timer_box::after{content:''; position:absolute; right:-12px; bottom:18px; border:12px solid transparent; border-top:12px solid #fff; transform:rotate(-45deg);}
  2415. .pd_detail .area_desc .desc_wrap .timer_box p {padding:17px 30px; background:#222; height:50px;}
  2416. .pd_detail .area_desc .desc_wrap .timer_box p::after {content:''; clear:both; display:block;}
  2417. .pd_detail .area_desc .desc_wrap .timer_box p span {display:inline-block; position:relative;}
  2418. .pd_detail .area_desc .desc_wrap .timer_box p .tit {position:relative; padding-left:28px; color:#fff; font-size:16px;}
  2419. .pd_detail .area_desc .desc_wrap .timer_box p .tit::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:18px; height:18px; background:url('//image.istyle24.com/Style24/images/pc/ico_timer2.png') no-repeat 0 50%;}
  2420. .pd_detail .area_desc .desc_wrap .timer_box p .timer {color:#fff; font-size:18px; line-height:16px; font-weight:300;}
  2421. .pd_detail .area_desc .desc_wrap .timer_box p .timer em {display:inline-block; position:relative; padding-left:6px;}
  2422. .pd_detail .area_desc .desc_wrap .timer_box p .timer em::before {content:':'; position:absolute; left:-1px; top:50%; transform:translateY(-50%);}
  2423. .pd_detail .area_desc .desc_wrap .timer_box p .timer em:first-of-type {padding-left:15px;}
  2424. .pd_detail .area_desc .desc_wrap .timer_box p .timer em:first-of-type::before {display:none;}
  2425. .pd_detail .area_desc .desc_wrap .timer_box p .timer em#d-days::after {content:'일';}
  2426. .pd_detail .area_desc .desc_wrap .timer_box p .timer em#d-hours::before {display:none;}
  2427. .pd_detail .area_desc .desc_wrap .descript_box {margin-top:15px;}
  2428. .pd_detail .area_desc .desc_wrap .descript_box .desc_top {position:relative; height:16px; vertical-align:top;}
  2429. .pd_detail .area_desc .desc_wrap .descript_box .desc_top::after {content:''; clear:both; display:block;}
  2430. .pd_detail .area_desc .desc_wrap .descript_box .desc_top a.btn_brand {float:left; position:relative; max-width:calc(100% - 100px); padding-right:16px; color:#222; font-size:16px; font-weight:300; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
  2431. .pd_detail .area_desc .desc_wrap .descript_box .desc_top a.btn_brand:after {display:block; position:absolute; top:2px; right:2px; width:8px; height:8px; border:1px solid #222; border-width:1px 1px 0 0; transform:rotate(45deg); -webkit-transform:rotate(45deg); content:''}
  2432. .pd_detail .area_desc .desc_wrap .descript_box .desc_top .shareSet {right: 0;}
  2433. .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike {float:right; position:relative; top:7px; right:45px; width:23px; height:23px; margin-left:15px; margin-top:-3px; font-size:0px;}
  2434. .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike {background:url('//image.istyle24.com/Style24/images/pc/btn_itemLike.png') no-repeat 0% 50%;}
  2435. .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike:hover,
  2436. .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike.likeit {background-position:100% 50%;}
  2437. .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike::before,
  2438. .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike::after {display:none;}
  2439. .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemShare {background:url('//image.istyle24.com/Style24/images/pc/btn_itemShare.png') no-repeat 50% 50%;}
  2440. .pd_detail .area_desc .desc_wrap .descript_box .desc_info {margin-top:40px; line-height:1;}
  2441. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .title_blk::after {content:''; clear:both; display:block;}
  2442. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .title_blk .codenumber {float:right; color:#888; font-size:14px; font-weight:200; line-height:16px;}
  2443. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .title_blk .comment {float:left; width:calc(100% - 100px); color:#666; font-size:16px; font-weight:300; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
  2444. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .title_blk .name {float:left; width:100%; margin-top:15px; color:#222; font-size:30px; font-weight:500; line-height:40px; word-break:keep-all;}
  2445. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk {position:relative; margin-top:20px;}
  2446. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk::after {content:''; clear:both; display:block;}
  2447. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk > span {float:left;}
  2448. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .sale_percent {display:block; width:100%; margin-bottom:16px; color:#fd4802; font-size:20px; font-weight:300;}
  2449. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .sale_price {color:#222; font-size:24px; font-weight:700;}
  2450. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .sale_price em {font-size:30px; font-weight:700;}
  2451. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk del.org_price {position:relative; display:inline-block; margin-left:18px; margin-top:6px; color:#888; font-size:18px; font-weight:200; text-decoration:none;}
  2452. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk del.org_price::after {content:''; position:absolute; left:0; right:0; top:50%; width:100%; height:1px; background:#888; z-index:2;}
  2453. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk del.org_price em {font-size:20px;}
  2454. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .save_point {position:relative; display:block; width:100%; height:14px; margin-top:15px; padding-left:22px; color:#888; font-size:14px; font-weight:200;}
  2455. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .save_point::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); display:inline-block; width:16px; height:16px; background:url('//image.istyle24.com/Style24/images/pc/ico_point_sm.png') no-repeat 50% 50%;}
  2456. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .btn_coupon {position:absolute; right:0; bottom:0px; width:77px; height:34px; padding:10px; border:none; box-sizing:border-box; font-size:14px; z-index:2;}
  2457. .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .btn_coupon span {font-size:14px; font-weight:200;}
  2458. .pd_detail .area_desc .desc_wrap .descript_box .desc_status {margin-top:30px; padding:17px 20px; background:#fff6f2; color:#fd4802; font-size:16px; font-weight:300; padding-left:20px;}
  2459. .pd_detail .area_desc .desc_wrap .benefit_box {margin-top:40px; padding:30px 0; border-top:1px solid #ddd; border-bottom:1px solid #ddd; font-size:14px; font-weight:300;}
  2460. .pd_detail .area_desc .desc_wrap .benefit_box dl .bnf_shopping {margin-bottom:25px;}
  2461. .pd_detail .area_desc .desc_wrap .benefit_box dl div::after {content:''; clear:both; display:block;}
  2462. .pd_detail .area_desc .desc_wrap .benefit_box dl div dt {float:left; width:90px; color:#666}
  2463. .pd_detail .area_desc .desc_wrap .benefit_box dl div dd {float:left; position:relative; width:calc(100% - 90px); color:#222;}
  2464. .pd_detail .area_desc .desc_wrap .benefit_box dl div dd span {display:block; margin-top:10px;}
  2465. .pd_detail .area_desc .desc_wrap .benefit_box dl div dd span:first-child {margin-top:0px;}
  2466. .pd_detail .area_desc .desc_wrap .benefit_box dl div dd .btn_popup {position:absolute; right:0; top:0; z-index:2;}
  2467. /* pd_deal_상품옵션선택 영역 */
  2468. .pd .option_box {margin-top:30px;overflow-y: auto;height: calc(100% - 35%);} /* 0126 */
  2469. .option_box > [class^="opt_"] {padding-top:40px;}
  2470. .option_box > [class^="opt_"]:first-of-type {padding-top:0;}
  2471. .option_box > [class^="opt_"] .opt_header {position: relative; margin-bottom:20px;}
  2472. .option_box > [class^="opt_"] .opt_header::after {content:''; clear:both; display:block;}
  2473. .option_box > [class^="opt_"] .opt_header > span {font-size:14px;}
  2474. .option_box > [class^="opt_"] .opt_header .title {display:inline-block; margin-right:70px; color:#222; font-weight:500;}
  2475. .option_box > [class^="opt_"] .opt_header .color,
  2476. .option_box > [class^="opt_"] .opt_header .size {color:#666; font-weight:200;}
  2477. .option_box > [class^="opt_"] .opt_header .btn_popup {position: absolute; top: 0; right: 0;}
  2478. .option_box .info_restock {margin-top:20px;}
  2479. .option_box .info_restock a.btn_popup {position:relative; padding-left:22px; padding-right:15px; color:#666; font-size:14px; font-weight:300; border:none;}
  2480. .option_box .info_restock a.btn_popup::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:12px; height:13px; background:url('//image.istyle24.com/Style24/images/pc/ico_bell.png') no-repeat 0 0;}
  2481. .option_box .info_restock a.btn_popup::after {content:''; position:absolute; right:0px; top:50%; transform:translateY(-50%); width:6px; height:11px; background:url('//image.istyle24.com/Style24/images/pc/ico_more_lg.png') no-repeat 100% 50%; background-size:contain;}
  2482. /* pd_deal_컬러선택 */
  2483. .pd .option_box .opt_color .title {margin-right: 16px;}
  2484. .option_box .opt_color ul {margin-top:-8px;}
  2485. .option_box .opt_color ul::after {content:''; clear:both; display:block;}
  2486. .option_box .opt_color ul li {float:left; margin-left:8px; margin-top:8px;}
  2487. .option_box .opt_color ul li:nth-child(6n-5) {margin-left:0;}
  2488. .option_box .opt_color ul li a {position: relative; display:block; box-sizing:border-box; width:66px; height:99px; line-height: 0; font-size: 0; overflow: hidden;background: #f5f5f5; border: 1px solid #f5f5f5; box-sizing: content-box;}
  2489. .option_box .opt_color ul li a img {position: absolute;left: 0;top: 50%;width: 100%;transform: translateY(-50%);z-index: 2;}
  2490. .option_box .opt_color ul li a.on {border:1px solid #fd4802;}
  2491. /* pd_deal_컬러선택 폼 */
  2492. .pd .option_box .opt_size .title {margin-right: 16px;}
  2493. .option_box .opt_size .form_field {display:block; margin-top:-8px;}
  2494. .option_box .opt_size .form_field > div {margin-left:8px; margin-top:8px;}
  2495. .option_box .opt_size .form_field > div:nth-child(7n-6) {margin-left:0px;}
  2496. .option_box .opt_size .form_field input[type="radio"] + label {display:block; position:relative; width:66px; height:42px; padding:0;text-align:center; background:#fff; box-sizing:border-box; border:1px solid #ddd; color:#222; font-weight:200; font-size:14px;}
  2497. .option_box .opt_size .form_field input[type="radio"] + label::before,
  2498. .option_box .opt_size .form_field input[type="radio"] + label::after {display:none;}
  2499. .option_box .opt_size .form_field input[type="radio"]:checked + label {border:1px solid #fd4802;}
  2500. .option_box .opt_size .form_field input[type="radio"]:disabled + label {background:#f5f5f5; border-color:#f5f5f5; color:#bbb; opacity:1;}
  2501. .option_box .opt_size .form_field input[type="radio"]:disabled + label span {text-decoration:line-through;}
  2502. .option_box .opt_size .form_field input[type="radio"] + label span {position:absolute; top:50%; left:0%; width:100%; padding:0 6px; line-height:1.2; transform:translateY(-50%); transform:translateY(-50%); display:-webkit-box; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;}
  2503. .option_box .opt_size .form_field > div {float:left; width:calc((100% - 48px) / 7);}
  2504. /* pd_deal_옵션셀렉트 폼 */
  2505. /* .pd .option_box [class^="opt_"] .select_custom .combo .list {height:170%;} */
  2506. .option_box [class^="opt_"] .form_field {display:block; margin-top:10px;}
  2507. .option_box [class^="opt_"] .form_field:first-child {margin-top:0}
  2508. .option_box [class^="opt_"] .select_custom {min-height:52px;}
  2509. .option_box [class^="opt_"] .select_custom .select {height:auto; min-height:52px; padding:17px 40px 17px 18px; border-bottom-color:#ddd; overflow:hidden; color:#222; font-weight:200;}
  2510. .option_box [class^="opt_"] .select_custom .select:after {right:20px;}
  2511. .option_box [class^="opt_"] div[class*="item_set_"] .select .opt_price {display:none;}
  2512. .option_box .opt_select div[class*="item_set_"] .select .opt_price {display:none;}
  2513. .option_box [class^="opt_"] .select_custom .select .opt_price {padding-top: 10px;display: none;}
  2514. .option_box [class^="opt_"] .select_custom[aria-disabled="true"] .select {color:#bbb; background:#f5f5f5;}
  2515. .option_box [class^="opt_"] .select_custom .combo .list {top:52px; padding:0}
  2516. .option_box [class^="opt_"] .select_custom .combo .list > li {padding:18px 18px; line-height:1; color:#666; font-size:16px; font-weight:200;}
  2517. .option_box [class^="opt_"] .select_custom .combo .list > li[aria-disabled="true"] {color:#bbb;}
  2518. .option_box [class^="opt_"] .select_custom .combo .list > li > div {margin-top:5px}
  2519. .option_box [class^="opt_"] .select_custom .combo .list > li > div:first-child {margin-top:0;}
  2520. .option_box [class^="opt_"] .select_custom .combo .list > li .opt_price {font-size:12px; font-weight:300;}
  2521. .option_box [class^="opt_"] .select_custom .combo .list > li[data-soldout="true"]::after {right:18px; top:50%; bottom:auto; transform:translateY(-50%);}
  2522. .option_box [class^="opt_"] .select_custom.deal_opt_item,
  2523. .option_box [class^="opt_"] .select_custom.deal_opt_item .select {height:112px; background:transparent;}
  2524. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod {width:100%; z-index:-1;}
  2525. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod .item_state {display:table; width:100%; height:72px; padding:0; margin:0}
  2526. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod .item_state a {display:table-cell; position:relative; width:100%; height:72px; padding-left:70px; padding-right:40px; vertical-align:middle;}
  2527. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod .item_state a .itemPic {position:absolute; left:0; top:0; width:48px; height:72px; padding:0; margin:0}
  2528. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod .item_state a .itemName {max-width:100%; height:14px; margin-bottom:0px; line-height:20px; font-size:14px; -webkit-line-clamp:1;}
  2529. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod .item_state a .itemName .tit_option {font-weight:500;}
  2530. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod .item_state a .itemPrice {margin-top:13px;}
  2531. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod .item_state a .itemPercent {position:relative;}
  2532. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod .item_state a .itemPrice_original {margin-right:0;}
  2533. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod .item_state a .itemPercent {margin-right:0;}
  2534. .option_box [class^="opt_"] .select_custom.deal_opt_item .item_prod .item_state a > [class^="item"] {margin-left:0; margin-right:0; line-height:1;}
  2535. .option_box [class^="opt_"] .select_custom.deal_opt_item .combo .list {top:110px;}
  2536. .option_box [class^="opt_"] .select_custom.deal_opt_item .combo .list > li {border-bottom:1px solid #eee;}
  2537. .option_box [class^="opt_"] .select_custom.deal_opt_item .combo .list > li:hover {background:transparent;}
  2538. .option_box [class^="opt_"] .select_custom.deal_opt_item .combo .list > li[aria-disabled="true"] a [class^="item"] {color:#bbb; text-decoration:line-through;}
  2539. .option_box [class^="opt_"] .select_custom.deal_opt_item .combo .list > li[aria-disabled="true"] a img {opacity:0.3;}
  2540. .option_box .opt_select .select_custom .select .opt_price {display:none;}
  2541. .option_box .opt_set_select .set_option {margin-top:25px;}
  2542. .option_box .opt_set_select .set_option:first-child {margin-top:0;}
  2543. .option_box .opt_set_select .set_option .opt_header .title {font-weight:200;}
  2544. /* pd_deal_선택된 옵션결과 폼 */
  2545. .option_box .opt_result .result_item {position:relative; margin-top:30px; padding:0 0 30px; border-bottom:1px solid #ddd;}
  2546. .option_box .opt_result .result_item:first-of-type {margin-top:0;}
  2547. .option_box .opt_result .result_item .opt_header span {display:block;}
  2548. .option_box .opt_result .result_item .opt_header .item_name {color:#222; font-size:16px; font-weight:300;}
  2549. .option_box .opt_result .result_item .opt_header .item_option {margin-top:10px; color:#888;}
  2550. .option_box .opt_result .result_item .item_price {position:absolute; right:0; bottom:30px; color:#222; font-size:17px; font-weight:500;}
  2551. .option_box .opt_result .result_item .item_price em {font-size:18px;}
  2552. .option_box .opt_result .result_item .btn_delete_item {position:absolute; right:0; top:0px; width:14px; height:14px; overflow:hidden; background:url('//image.istyle24.com/Style24/images/pc/btn_delete_item.png') no-repeat 50% 50%; image-rendering:pixelated; text-indent:-999px; z-index:2;}
  2553. /* pd_deal_수량조절 폼 */
  2554. .option_box .opt_count {margin-top:30px; margin-bottom: 30px; padding-top:30px; padding-bottom:0; border-top:1px solid #ddd;}
  2555. .option_box .number_count {display:inline-block; border:1px solid #ddd;}
  2556. .option_box .number_count::after {content:''; clear:both; display:block;}
  2557. .option_box .number_count span,
  2558. .option_box .number_count input[type='text']{float:left;}
  2559. .option_box .number_count span {cursor:pointer; position:relative; display:inline-block; width:40px; height:40px; text-align:center;}
  2560. .option_box .number_count span::after {content:''; position:absolute; left:50%; top:50%; transform: translate(-50%, -50%); width:12px; height:12px; background:url('//image.istyle24.com/Style24/images/pc/btn_count.png') no-repeat 100% 0; image-rendering:pixelated;}
  2561. .option_box .number_count span.min_val,
  2562. .option_box .number_count span.max_val {opacity:0.2;}
  2563. .option_box .number_count .plus::after {content:''; background-position:100% 0;}
  2564. .option_box .number_count .minus::after {content:''; background-position:0 0;}
  2565. .option_box .number_count input[type='text'] {width:44px; height:40px; padding:0; text-align:center; color:#222; font-size:15px; font-weight:200; border:none; background:#fff;}
  2566. /* pd_deal_가격 폼 */
  2567. .price_box {margin-top:30px; padding-top:30px; padding-bottom:30px; border-top:1px solid #222;}
  2568. .price_box::after {content:''; clear:both; display:block;}
  2569. .price_box .number {float:left; color:#666; font-size:14px; font-weight:200; margin-top:8px;}
  2570. .price_box .price {float:right; color:#222; font-size:30px; font-weight:700;}
  2571. .price_box .price em {font-size:24px; vertical-align:middle;}
  2572. .price_box + .btn_box .ui_row,
  2573. .price_box + .btn_box .ui_row [class^='ui_col_'] {margin:0;}
  2574. .price_box + .btn_box::after {content:''; clear:both; display:block;}
  2575. .price_box + .btn_box .btn {height:60px; font-size:18px; font-weight:300;}
  2576. .price_box + .btn_box .btn:disabled{background:#aaa; border-color:#aaa; opacity:1;}
  2577. .pd_detail .btn_box .ui_row {margin-bottom: 0;}
  2578. .pd_detail .btn_box .ui_row [class^='ui_col_']:first-child {margin-right: 0;}
  2579. .pd_detail .btn_box .ui_row [class^='ui_col_']:last-child {margin-left: 0;}
  2580. .pd_detail .btn_box .btn {height:60px; font-size:18px; font-weight:300;}
  2581. .pd_detail .btn_box .btn:disabled{background:#aaa; border-color:#aaa; opacity:1;}
  2582. .pd_detail .area_desc .desc_wrap .npay_box {min-height:50px; margin-top:30px; background:#f5f5f5;}
  2583. .pd_detail .area_desc .desc_wrap .exinfo_box {margin-top:30px;}
  2584. .pd_detail .area_desc .desc_wrap .exinfo_box ul {border-top:1px solid #ddd;}
  2585. .pd_detail .area_desc .desc_wrap .exinfo_box ul li {border-bottom:1px solid #ddd;}
  2586. .pd_detail .area_desc .desc_wrap .exinfo_box ul li [class^="ex_"] > a {display:block; padding:30px 0; background:url('//image.istyle24.com/Style24/images/pc/ico_more_lg.png') no-repeat 492px 50%; image-rendering:pixelated;}
  2587. .pd_detail .area_desc .desc_wrap .exinfo_box ul li [class^="ex_"] > a::after {content:''; clear:both; display:block;}
  2588. .pd_detail .area_desc .desc_wrap .exinfo_box ul li [class^="ex_"] > a .tit {color:#222; font-size:14px; font-weight:500;}
  2589. .pd_detail .area_desc .desc_wrap .exinfo_box ul li [class^="ex_"] > a .tit em.number {margin-left:4px; color:#666; font-weight:200;}
  2590. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_review .star_score {float:right; margin-right:45px; height:14px;}
  2591. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_review .star_score .star {display:inline-block; position:relative; width:95px; height:14px; background:#f5f5f5;}
  2592. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_review .star_score .star::after {content:''; position:absolute; left:0; top:0; z-index:3; width:100%; height:14px; background:url('//image.istyle24.com/Style24/images/pc/star_empty.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
  2593. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_review .star_score .star .progbar {display:inline-block; height:14px; background:#fd4802;}
  2594. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_review .star_score .score {color:#222; font-size:16px; font-weight:200;}
  2595. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_review .star_score .score em {font-weight:500;}
  2596. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review {width:500px; margin-bottom:30px;}
  2597. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a {display:block; position:relative; height:150px; padding:20px 35px 20px 20px; border:1px solid #eee;}
  2598. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a::after {content:''; clear:both; display:block; width:100%;}
  2599. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .pic {float:left; width:110px; margin-right:20px;}
  2600. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .pic .thumb {padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
  2601. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .pic .thumb.mov::after {content:''; position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.3) url('//image.istyle24.com/Style24/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
  2602. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .star_score {margin-top:10px; height:14px;}
  2603. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .star_score .star {display:inline-block; position:relative; width:83px; height:14px; background:#f5f5f5;}
  2604. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .star_score .star::after {content:''; position:absolute; left:0; top:0; z-index:3; width:100%; height:14px; background:url('//image.istyle24.com/Style24/images/pc/star_empty.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
  2605. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .star_score .star .progbar {display:inline-block; height:14px; background:#fd4802}
  2606. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .star_score .ico {margin-left:10px;}
  2607. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .star_score .ico::before {vertical-align:inherit;}
  2608. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .txt_best_review {margin-top:10px;}
  2609. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .txt_best_review p {height:72px; overflow:hidden; line-height:24px; color:#666; font-size:14px; font-weight:200; display:-webkit-box; text-overflow:ellipsis; -webkit-line-clamp:3; -webkit-box-orient:vertical;}
  2610. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_shipping {color:#666; font-size:14px; font-weight:200;}
  2611. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_shipping span {display:block; margin-top:10px;}
  2612. .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_shipping span:first-child {margin-top:0; margin-bottom:20px;}
  2613. @media screen and (max-width:1459px) {
  2614. .pd_detail .area_pic .thumb_nav_wrap.fixtop {position:absolute; top:0; bottom:auto;}
  2615. .pd_detail .area_pic .thumb_nav_wrap.fixbottom {position:absolute; top:0; bottom:auto;}
  2616. .pd_detail .area_desc .desc_wrap.fixbottom {position:absolute; top:0; bottom:auto;}
  2617. .pd_detail .area_desc .desc_wrap.absbottom {position:absolute; top:0; bottom:auto;}
  2618. }
  2619. .pd_together {padding-top: 120px;}
  2620. .pd_together .area_slider {padding:0;}
  2621. .pd_together .area_slider .swiper-wrapper {padding-bottom:60px;}
  2622. .pd_together .area_slider .swiper-scrollbar {background:#ddd;}
  2623. .pd_together .area_slider .swiper-scrollbar-drag {border-radius:0; background:#222;}
  2624. .pd_together .area_slider .swiper-container-horizontal>.swiper-scrollbar {position:relative; left:auto; right:auto; bottom:auto; width:100%; height:2px; opacity: 1 !important;}
  2625. [class*="pd_descrp"] {width:1200px; padding-top:120px;}
  2626. [class*="pd_descrp"] .cont_body {max-height:1100px; overflow:hidden;}
  2627. [class*="pd_descrp"] .cont_body.on {max-height:none;}
  2628. [class*="pd_descrp"] .cont_body > div {position:relative; margin-left:auto; margin-right:auto;}
  2629. [class*="pd_descrp"] .descrp_box > div {margin-top:40px;}
  2630. [class*="pd_descrp"] .descrp_box > div:first-child {margin-top:0;}
  2631. [class*="pd_descrp"] .descrp_box > div > span.tit_desc {display:block; margin-bottom:10px; font-size:18px; font-weight:500; letter-spacing:-0.025em;}
  2632. [class*="pd_descrp"] .descrp_box > div > p {font-size:16px; font-weight:200; line-height:1.5; word-break:keep-all;}
  2633. [class*="pd_descrp"] .mdhtml_box {margin-top:80px;text-align: center;}
  2634. [class*="pd_descrp"] .mdhtml_box .tit_view {display:block; color:#222; font-size:32px; font-weight:300; text-align:center; margin-top: 40px;}
  2635. [class*="pd_descrp"] .mdhtml_box p{text-align: center;}
  2636. [class*="pd_descrp"] .mdhtml_box img {max-width:100%;}
  2637. [class*="pd_descrp"] .mdhtml_box iframe {display:block; margin-left:auto; margin-right:auto;}
  2638. [class*="pd_descrp"] .mdhtml_box .movblock {position:relative; display:block; height:0; line-height:0; margin-left:auto; margin-right:auto; padding-top:56.25%; background:#eee;}
  2639. [class*="pd_descrp"] .mdhtml_box .movblock > iframe {position:absolute; left:0; right:0; top:0; bottom:0; width:100%; height:100%; z-index:2;}
  2640. [class*="pd_descrp"] [class^="view_"] {margin-top:100px; text-align:center;}
  2641. [class*="pd_descrp"] [class^="view_"]:first-of-type {margin-top:0;}
  2642. [class*="pd_descrp"] [class^="view_"] .tit_view {display:block; color:#222; font-size:32px; font-weight:300; text-align:center;}
  2643. [class*="pd_descrp"] [class^="view_"] .model_info {display:block; margin-top:20px; color:#666; font-size:16px; font-weight:200; text-align:center;}
  2644. [class*="pd_descrp"] [class^="view_"] .view {margin-top:40px;}
  2645. [class*="pd_descrp"] [class^="view_"] .view img {display:block; margin:10px auto 0;}
  2646. [class*="pd_descrp"] [class^="view_"] .view img:first-child {margin-top:0;}
  2647. [class*="pd_descrp"] .view_label_box .view span {display:inline-block;}
  2648. [class*="pd_descrp"] .view_label_box .view span::after {content:''; clear:both; display:inline-block;}
  2649. [class*="pd_descrp"] .view_label_box .view span img {float:left; margin-top:0; margin-left:20px;}
  2650. [class*="pd_descrp"] .view_label_box .view img:first-child {margin-left:0;}
  2651. [class*="pd_descrp"] .brand_box {margin-top:100px; padding:40px; border:1px solid #ddd; text-align:center; box-sizing:border-box;}
  2652. [class*="pd_descrp"] .brand_box .name {margin-bottom:25px; color:#222; font-size:24px; font-weight:300;}
  2653. [class*="pd_descrp"] .brand_box a {display:inline-block; border:1px solid #a7a7a7; color:#222; font-weight:300;}
  2654. [class*="pd_descrp"] .required_box {margin-bottom:80px;}
  2655. [class*="pd_descrp"] .required_box .area_detail {text-align:center;}
  2656. [class*="pd_descrp"] .required_box .area_detail img {max-width:100%;}
  2657. [class*="pd_descrp"] .required_box .area_infotbl {margin-top:100px;}
  2658. [class*="pd_descrp"] .required_box .area_infotbl .title {font-size:24px; font-weight:500; letter-spacing:-0.025em;}
  2659. [class*="pd_descrp"] .required_box .area_infotbl .tbl table th {width:280px; font-weight:300;}
  2660. [class*="pd_descrp"] .required_box .area_kcl {display:block; position:relative; min-height:160px; margin-top:100px; padding:40px 40px 40px 160px; box-sizing:border-box; background:#f5f5f5;}
  2661. [class*="pd_descrp"] .required_box .area_kcl.no-mark{padding-left:65px;}
  2662. [class*="pd_descrp"] .required_box .area_kcl p {margin-top:20px; color:#222; font-size:14px; line-height:1; letter-spacing:-0.025em;}
  2663. [class*="pd_descrp"] .required_box .area_kcl .tit {margin-top:0; font-size:16px;}
  2664. [class*="pd_descrp"] .required_box .area_kcl a.linktxt3 {margin-left:20px; color:#888; font-weight:200; text-decoration:none !important;}
  2665. [class*="pd_descrp"] .required_box .area_kcl .ico_kcl {position:absolute; left:64px; top:50%; transform:translateY(-50%); z-index:2;}
  2666. [class*="pd_descrp"] .btn_more_box {position:relative; width:100%; margin-top:0; margin-bottom:120px; background:#fff; text-align:center; z-index:2;}
  2667. [class*="pd_descrp"] .btn_more_box.covered::after {content:''; position:absolute; left:0; right:0; top:-200px; width:100%; height:200px; background:linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255,255,255,1) 50%, rgba(255, 255, 255, 0) 100%); z-index:2;}
  2668. [class*="pd_descrp"] .btn_more_box .btn {background: #fff; border-color:#fd4802; color:#fd4802;}
  2669. [class*="pd_descrp"] .btn_more_box .btn:hover, [class*="pd_descrp"] .btn_more_box .btn:active {background-color:#fff;}
  2670. [class*="pd_descrp"] .btn_more_box .btn span {position:relative; padding-right:35px;}
  2671. [class*="pd_descrp"] .btn_more_box .btn span::after {content:""; position:absolute; right:4px; top:1px; transform:rotate(90deg); width:7px; height:13px; background:url(//image.istyle24.com/Style24/images/pc/ico_mb_arrow2.png) no-repeat 0 0; background-size:auto 100%;}
  2672. [class*="pd_descrp"] .btn_more_box .btn.active span::after {transform:rotate(-90deg);}
  2673. [class*="pd_descrp"] .btn_more_box .btn .ico {margin-left:20px; margin-right:0;}
  2674. .pd_relate {padding-left:70px !important; padding-right:70px !important;}
  2675. .pd_brand {padding-left:70px !important; padding-right:70px !important;}
  2676. .pd_clickother {padding-left:70px !important; padding-right:70px !important;}
  2677. .pd_recommend {padding-left:70px !important; padding-right:70px !important;}
  2678. .pd_recommend .area_slider {padding-bottom:1px;}
  2679. .pd_recommend .area_slider .page {position:relative; min-height:589px; border:1px solid #ddd; box-sizing: border-box;}
  2680. .pd_recommend .area_slider .page::after {content:''; clear:both; display:block;}
  2681. .pd_recommend .area_slider .page .pic {float:left; position:relative; width:50%;}
  2682. .pd_recommend .area_slider .page .pic span.thumb {display:block; width:100%; height:0; padding-top:100%; background-color:#f5f5f5; background-repeat:no-repeat; background-position:50% 50%; background-size:contain;}
  2683. .pd_recommend .area_slider .page .item_wrap {position:absolute; right:0; top:0; width:50%; height:100%;}
  2684. .pd_recommend .area_slider .page .item_wrap .item_area {position:relative; display:block; height:100%; width:100%; padding:65px 80px; box-sizing:border-box;}
  2685. .pd_recommend .area_slider .page .item_wrap .item_area h5 {margin: 0 0 30px;color:#222;font-size:20px;font-weight:500;}
  2686. .pd_recommend .area_slider .page .item_wrap .item_area h5 span {color:#666; font-weight:200;}
  2687. .pd_recommend .area_slider .page .item_wrap .item_area .li_item {height:calc(100% - 140px); overflow-y:auto;}
  2688. .pd_recommend .area_slider .page .item_wrap .item_area .li_item::-webkit-scrollbar {width: 2px;}
  2689. .pd_recommend .area_slider .page .item_wrap .item_area .li_item::-webkit-scrollbar-thumb {background-color:#888888; border-radius: 0px; background-clip: padding-box;border: 0px solid transparent;}
  2690. .pd_recommend .area_slider .page .item_wrap .item_area .li_item::-webkit-scrollbar-track {background-color: #dddddd;border-radius: 0px;}
  2691. .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li {position:relative; height:150px; margin-top:20px;}
  2692. .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li:first-child {margin-top:0;}
  2693. .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod {display:block; width:100%;}
  2694. .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod .item_state {display:table; width:100%;}
  2695. .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod .item_state a {display:table-cell; position:relative; width:100%; height:150px; padding-left:130px; box-sizing:border-box; vertical-align:middle;}
  2696. .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod .item_state .itemPic {position:absolute; left:0; top:0; width:100px; height:0; padding-top:150px; margin-bottom:0}
  2697. .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod.unable {opacity:0.4;}
  2698. .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod.unable * {color:#bbb; text-decoration:line-through;}
  2699. .pd_recommend .item_area .itemName {height:20px;}
  2700. .pd_recommend .item_area .itemPrice .itemPercent {position:relative;}
  2701. .pd_recommend .area_slider .page .item_wrap .item_area .btn {margin-top:30px; border-color:#fd4802; color:#fd4802;}
  2702. .pd_recommend .area_slider .page .item_wrap .item_area .btn span {font-weight:500;}
  2703. .pd_recommend .swiper-pagination {margin-top:40px;}
  2704. .pd_dealitem .itemsGrp {position:relative; display:block; width:100%; margin-bottom:0;}
  2705. .pd_dealitem .itemsGrp .item_prod {width:calc((100% - 60px)/4); margin-left:20px;}
  2706. .pd_dealitem .itemsGrp .item_prod:nth-child(4n-3) {margin-left:0px;}
  2707. .pd_dealitem .itemsGrp {margin-top:-60px;}
  2708. .pd_dealitem .itemsGrp .item_prod {margin-top:60px;}
  2709. .pd_dealitem .itemsGrp .item_prod .item_state {padding:0;}
  2710. .pd_dealitem .itemLink .itemPic::before {content: "";display: block;position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;opacity: 0.03;background-color: rgb(0, 0, 0);z-index: 999;}
  2711. .pd_dealitem .itemLink .itemPic::after {content:''; background:none; background:rgba(34,34,34,0.8) url('//image.istyle24.com/Style24/images/pc/btn_deal_item_more.png') no-repeat 50% 50%; opacity:0; -webkit-transition:all .2s ease-in-out; transition:all .2s ease-in-out; z-index:2;}
  2712. .pd_dealitem .itemLink:hover .itemPic::after,
  2713. .pd_dealitem .itemLink:active .itemPic::after {content:''; opacity:1;}
  2714. .pd_dealitem .shape {max-height:none; padding:12px 0 10px; z-index:3;}
  2715. .pd_dealitem .shape span {display:block; font-size:14px; font-weight:300;}
  2716. .pd_dealitem .shape span em {display:block; margin-top:6px;}
  2717. /* pd 딜 상세 */
  2718. .pd.deal div::after,
  2719. .pd.deal dl::after,
  2720. .pd.deal ul::after {content:''; clear:both; display:block;}
  2721. .pd.deal .tab_detail_nav {position:relative; width:100%; height:60px; padding-bottom:60px; box-sizing:initial;}
  2722. .pd.deal .tab_detail_nav ul {position:absolute; left:0; top:0; width:100%; height:70px; background: #ffffff; z-index:2;}
  2723. .pd.deal .tab_detail_nav.fix ul {position:fixed; left: auto; top:80px; min-width:760px; width:calc(100% - 700px); max-width:1200px; z-index:25;} /* 0126 */
  2724. .pd.deal .tab_detail_nav ul li {float:left; width:25%;}
  2725. .pd.deal .tab_detail_nav ul li a {display:block; padding:22px 0px 18px; color:#888; font-size:18px; text-align:center; background:#f5f5f5; border:1px solid #f5f5f5; border-bottom-color:#222; box-sizing:border-box;}
  2726. .pd.deal .tab_detail_nav ul li.active a {border:1px solid #222; border-bottom-color:#fff; color:#222; font-weight:300; background:#fff;}
  2727. .pd.deal .tab_detail_nav ul li.active a em {color:#666;}
  2728. .pd.deal .tab_detail_cont {display:none; min-height:1000px;}
  2729. .pd.deal .pd_detail .area_desc .desc_wrap .descript_box .desc_info {margin-top:20px;}
  2730. .pd.deal .content.pd_desc_wrap {position:relative; margin:100px 0px 0px; box-sizing:border-box;}
  2731. .pd.deal .tab_detail_cont .select_custom.deal_opt_item {height:160px;}
  2732. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .select {height:160px; background:transparent; padding:20px;}
  2733. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .combo .select:after {right:40px; border-width:9px;}
  2734. .pd.deal .tab_detail_cont .select_custom.deal_opt_item.on .combo .select:after {margin-top:-8px;}
  2735. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod {width:100%; z-index:-1;}
  2736. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod .item_state {display:table; width:100%; height:120px; padding:0; margin:0;}
  2737. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod .item_state a {display:table-cell; position:relative; width:100%; height:120px; padding-left:110px; padding-right:40px; vertical-align:middle;}
  2738. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod .item_state a .itemPic {position:absolute; left:0; top:0; width:80px; height:120px; padding:0; margin:0;}
  2739. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod .item_state a .itemBrand {margin:0 0 10px;}
  2740. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod .item_state a .itemName {width:100%; height:14px; margin:0; line-height:1; font-size:14px; -webkit-line-clamp:1;}
  2741. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod .item_state a .itemName .tit_option {font-weight:500;}
  2742. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod .item_state a .itemPostCount {width:100%; height:14px; margin-top:10px; color:#888; font-size:14px; line-height:1;}
  2743. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .combo .list {top:160px; padding:0;}
  2744. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .combo .list > li {height:160px; padding:20px; border-bottom:1px solid #eee;}
  2745. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .combo .list > li:hover {background:transparent;}
  2746. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .combo .list > li[aria-disabled="true"] a [class^="item"] {color:#bbb; text-decoration:line-through;}
  2747. .pd.deal .tab_detail_cont .select_custom.deal_opt_item .combo .list > li[aria-disabled="true"] a img {opacity:0.3;}
  2748. .pd.deal .pd_detail .area_desc .desc_wrap .descript_box {margin-top:3px;}
  2749. .pd.deal .pd_detail .area_desc .desc_wrap .timer_box + .descript_box {margin-top:15px;}
  2750. .pd.deal .pd_detail .area_desc .desc_wrap .descript_box .desc_info .title_blk .comment {width:100%;}
  2751. .pd.deal .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .btn_coupon {bottom:0;}
  2752. .pd.deal .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk {margin-top:30px;}
  2753. /* pd_deal_상품소개 영역 */
  2754. .pd_desc_wrap .item_descrp::after {content:''; clear:both; display:block;}
  2755. .pd_desc_wrap .item_descrp .area_list {float:left; position:relative; width:calc(100% - 560px); max-width:1200px; min-height:1200px;}
  2756. .pd_desc_wrap .item_descrp .area_list::after {content:''; position:absolute; right:-62px; top:0; bottom:0; width:1px; height:100%; background:#ddd; z-index:2;}
  2757. .pd_desc_wrap .item_descrp .area_option {float:right;}
  2758. .pd_desc_wrap .item_descrp .area_option .opt_wrap {width:500px; padding-left:60px; padding-top:30px;}
  2759. /* 0126 */
  2760. .pd_desc_wrap .item_descrp .area_option .opt_wrap.fixtop {position:fixed; right: auto; left: 50%; margin-left: 380px; bottom:80px; width:500px;height: calc(100% - 11%);}
  2761. .pd_desc_wrap .item_descrp .area_option .opt_wrap.fixtop .option_box {overflow-y: auto; height: calc(100% - 25%);}
  2762. .pd_desc_wrap .item_descrp .area_option .opt_wrap.absbottom {position:absolute; top:auto; bottom:0px; right:70px;height: calc(100% - 21%);}
  2763. .pd_desc_wrap .item_descrp .area_option .opt_wrap.fixbottom {position: absolute;top: auto;bottom: 0;right: auto;left: 50%;margin-left: 380px;}
  2764. .pd_desc_wrap .item_descrp .area_option .opt_wrap.fixbottom .option_box {overflow-y: auto; }
  2765. .pd_desc_wrap .item_descrp .area_option .opt_wrap ,
  2766. .pd_desc_wrap .item_descrp .area_option .opt_wrap.fixbottom {height: 1000px;}
  2767. /* 0126 */
  2768. @media screen and (max-width:1459px) {
  2769. .pd.deal .tab_detail_nav.fix ul {position:absolute; left:0; top:0; width:100%; height:60px; z-index:25;}
  2770. .pd_desc_wrap .item_descrp .area_option .opt_wrap.fixtop,
  2771. .pd_desc_wrap .item_descrp .area_option .opt_wrap.absbottom {position:relative; top:auto; bottom:auto; right:auto; left: auto; margin-left: 0;} /* 0126 */
  2772. }
  2773. .pd_desc_wrap .btn_box .ui_row {margin-bottom: 0;}
  2774. .pd_desc_wrap .btn_box .ui_row [class^='ui_col_']:first-child {margin-right: 0;}
  2775. .pd_desc_wrap .btn_box .ui_row [class^='ui_col_']:last-child {margin-left: 0;}
  2776. .pd_desc_wrap .btn_box .btn {height:60px; font-size:18px; font-weight:300;}
  2777. .pd_desc_wrap .btn_box .btn:disabled{background:#aaa; border-color:#aaa; opacity:1;}
  2778. /* pd_popup */
  2779. .modal.pd_pop a.close-modal:last-child {display: none;}
  2780. .modal.pd_pop dl div,
  2781. .modal.pd_pop dl dt,
  2782. .modal.pd_pop dl dd {float:left;}
  2783. .modal.pd_pop .pic .thumb {display:block; padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
  2784. .modal.pd_pop .swiper-button-prev,
  2785. .modal.pd_pop .swiper-button-next {top:50%; transform:translateY(-50%); margin:0; display:inline-block;}
  2786. .modal.pd_pop .swiper-button-prev {left:-70px;}
  2787. .modal.pd_pop .swiper-button-next {right:-70px;}
  2788. .modal.pd_pop .swiper-button-prev:after {content:''; display:block; position:absolute; top:0px; left:0; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(-135deg); -webkit-transform:rotate(-135deg);}
  2789. .modal.pd_pop .swiper-button-next:after {content:''; display:block; position:absolute; top:0px; right:0; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(45deg); -webkit-transform:rotate(45deg);}
  2790. .modal.pd_pop .modal-body .pop_cont {max-height:none; height: 280px; zoom: 1;}
  2791. .modal.pd_pop .modal-header h5.modal-title {display:inline-block; margin:0; font-size:24px; font-weight:500;}
  2792. .modal.pd_pop .modal-header .txt {margin-top:20px; color:#666; font-size:16px; font-weight:300;}
  2793. .modal.pd_pop .modal-body .pop_cont {line-height:1;}
  2794. .modal.pd_pop .modal-footer {margin-top:40px;}
  2795. .modal.pd_pop .form_field input[type="checkbox"] + label {line-height:1;}
  2796. .modal.pd_pop .form_field input[type="checkbox"] + label:before,
  2797. .modal.pd_pop .form_field input[type="checkbox"]:checked + label:after {top:50%; transform:translateY(-50%);}
  2798. .modal.pd_pop .info_txt ul li {position:relative; font-size:14px; color:#888; padding-left:15px; margin-bottom:10px; line-height:1;}
  2799. .modal.pd_pop .info_txt ul li:last-child {margin-bottom:0;}
  2800. .modal.pd_pop .info_txt ul li:after {content:''; position: absolute; top:5px; left:0; background:#858585; width:3px; height:3px;}
  2801. .modal.pd_pop .opt_select .form_field {margin-top:10px;}
  2802. .modal.pd_pop .opt_select .select_custom {height:52px;}
  2803. .modal.pd_pop .opt_select .select_custom .select {height:52px; padding:18px;}
  2804. .modal.pd_pop .opt_select .select_custom .select:after {top:22px; right:20px}
  2805. .modal.pd_pop .opt_select .select_custom[aria-disabled="true"] .select {color:#bbb; background:#f5f5f5;}
  2806. .modal.pd_pop .opt_select .select_custom .combo .list {top:50px; padding:0;}
  2807. .modal.pd_pop .opt_select .select_custom .combo .list > li {padding:18px 18px; line-height:1;}
  2808. .modal.pd_pop .opt_select .select_custom .combo .list > li > div {margin-top:5px;}
  2809. .modal.pd_pop .opt_select .select_custom .combo .list > li > div:first-child {margin-top:0;}
  2810. .modal.pd_pop .opt_select .select_custom .combo .list > li[data-soldout="true"]::after {right:18px; top:50%; bottom:auto; transform:translateY(-50%);}
  2811. .modal.pd_pop .btn_post_wrap {position:absolute; top:50%; transform:translateY(-50%); height:0; left:-70px; right:-70px; margin-top:-30px; z-index:3;}
  2812. .modal.pd_pop .btn_post_wrap::after {content:''; clear:both; display:block;}
  2813. .modal.pd_pop .btn_post_wrap a {display:block; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; font-size:1px; text-indent:-9999px; overflow:hidden; opacity:1;}
  2814. .modal.pd_pop .btn_post_wrap a.no_more {opacity:0.3;}
  2815. .modal.pd_pop .btn_post_wrap .btn_prev_post {float:left; transform:rotate(-135deg); -webkit-transform:rotate(-135deg);}
  2816. .modal.pd_pop .btn_post_wrap .btn_next_post {float:right; transform:rotate(45deg); -webkit-transform:rotate(45deg);}
  2817. /* pd_popup > EP채널쿠폰 */
  2818. .modal.pd_pop.epcoupon_pop {max-width:none; width:620px; padding:60px 60px;}
  2819. .pd_pop.epcoupon_pop .ep_coupon {position:relative; width:300px; margin:auto; border:1px solid #ddd; background:#fff; padding:40px 0 35px; text-align:center; line-height:1;}
  2820. .pd_pop.epcoupon_pop .ep_coupon > div {position:relative;}
  2821. .pd_pop.epcoupon_pop .ep_coupon > div::after {content:''; position:absolute; top:50%; right:-1px; transform:translateY(-50%); width:15px; height:30px; background:#fff; z-index:2; border:1px solid #ddd; border-right:none; border-top-left-radius:15px; border-bottom-left-radius:15px; overflow:hidden;}
  2822. .pd_pop.epcoupon_pop .ep_coupon > div .cp_title {color:#222; font-size:16px; font-weight:700; letter-spacing:4px;}
  2823. .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont {margin-top:15px;}
  2824. .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont span {display:block; color:#222;}
  2825. .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont span em.number {margin-left:4px; font-size:62px; font-weight:700;}
  2826. .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont span em.unit {font-size:32px; font-weight:700;}
  2827. .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont span.unit_percent {font-size:16px; font-weight:500;}
  2828. .pd_pop.epcoupon_pop .info_txt {margin-top:30px;}
  2829. .pd_pop.epcoupon_pop .modal-footer button {width:220px;}
  2830. /* pd_popup > 할인쿠폰 */
  2831. .modal.pd_pop.salecoupon_pop {max-width:none; width:480px; padding:40px 60px 0;}
  2832. .modal.pd_pop.salecoupon_pop .pop_cont {max-height:510px; margin-left:-20px; margin-right:-20px; padding:0 20px; overflow-y:auto;}
  2833. .modal.pd_pop.salecoupon_pop .modal-footer {margin-top:0; margin-left:-60px; margin-right:-60px;}
  2834. .pd_pop.salecoupon_pop .coupon_list {width:360px; margin:auto; line-height:1;}
  2835. .pd_pop.salecoupon_pop .coupon_list li {margin-bottom:30px;}
  2836. .pd_pop.salecoupon_pop .coupon_list li .coupon {position:relative; border:1px solid #ddd; box-sizing:border-box; background:#fff;}
  2837. .pd_pop.salecoupon_pop .coupon_list li .coupon > div {position:relative;}
  2838. .pd_pop.salecoupon_pop .coupon_list li .coupon > div::after {content:''; position:absolute; top:50%; right:-1px; transform:translateY(-50%); width:15px; height:30px; background:#fff; z-index:2; border:1px solid #ddd; border-right:none; border-top-left-radius:15px; border-bottom-left-radius:15px; overflow:hidden;}
  2839. .pd_pop.salecoupon_pop .coupon_list li .coupon p {padding:0 20px;}
  2840. .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_name {padding-top:30px; color:#222; font-size:14px; font-weight:300;}
  2841. .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_cont {margin-top:10px;}
  2842. .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_cont span {color:#fd4802; font-size:22px; font-weight:500;}
  2843. .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_cont span em {font-size:28px; font-weight:700;}
  2844. .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_condition {margin-top:16px; padding-bottom:30px; color:#888; font-size:12px; font-weight:300;}
  2845. .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_condition span {display:block; margin-top:5px;}
  2846. .pd_pop.salecoupon_pop .coupon_list li .coupon .btn_coupon_down span {position:relative; display:inline-block; padding-right:24px;}
  2847. .pd_pop.salecoupon_pop .coupon_list li .coupon .btn_coupon_down span::after {content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); width:14px; height:15px; margin-left:10px; background:url('//image.istyle24.com/Style24/images/pc/ico_cp_down.png') no-repeat 0 0;}
  2848. .pd_pop.salecoupon_pop .btn_coupon_done:disabled{background:#aaa; border-color:#aaa; color:#fff; opacity:1;}
  2849. /* pd_popup > 쇼핑혜택, 카드혜택 */
  2850. .modal.pd_pop[class*="bnf_"] {max-width:none; width:650px; padding:60px 60px;}
  2851. .modal.pd_pop[class*="bnf_"] h6 {margin-bottom:20px;}
  2852. .modal.pd_pop[class*="bnf_"] .benefit_blk {margin-top:40px;}
  2853. .modal.pd_pop[class*="bnf_"] .benefit_blk:first-child {margin-top:0;}
  2854. .modal.pd_pop[class*="bnf_"] .tbl.type1 {padding:20px 20px; font-size:14px;}
  2855. .modal.pd_pop[class*="bnf_"] .tbl.type1 table tr th,
  2856. .modal.pd_pop[class*="bnf_"] .tbl.type1 table tr td {padding:10px 0px; font-size:14px; line-height:1; vertical-align:top;}
  2857. .modal.pd_pop[class*="bnf_"] .tbl.type1 table tr th {color:#222; text-align:left;}
  2858. .modal.pd_pop[class*="bnf_"] .tbl.type1 table tr td {color:#222;}
  2859. .modal.pd_pop[class*="bnf_"] .tbl.type1 table tr td:last-child {text-align:right;}
  2860. .modal.pd_pop.bnf_shopping_pop .benefit_blk .tbl.type1 table tr td {color:#fd4802;}
  2861. .modal.pd_pop.bnf_shopping_pop .benefit_blk .tbl.type1 table tr td div.th {display:block; text-align:left; color:#222; font-weight:300;}
  2862. .modal.pd_pop.bnf_shopping_pop .benefit_blk .tbl.type1 table tr td div.td {display:block; margin-top:10px; text-align:left; color:#fd4802; font-weight:200;}
  2863. .modal.pd_pop.bnf_card_pop .tbl.type1 {padding:0px; font-size:14px;}
  2864. .modal.pd_pop.bnf_card_pop .tbl.type1 table tr th,
  2865. .modal.pd_pop.bnf_card_pop .tbl.type1 table tr td {padding:25px 0px; border-top:1px solid #ddd;}
  2866. .modal.pd_pop.bnf_card_pop .tbl.type1 table tr th {padding-left:20px;}
  2867. .modal.pd_pop.bnf_card_pop .tbl.type1 table tr:first-child th,
  2868. .modal.pd_pop.bnf_card_pop .tbl.type1 table tr:first-child td{border-top:none;}
  2869. .modal.pd_pop.bnf_card_pop .tbl.type1 table tr td:last-child {padding-right:20px;}
  2870. .modal.pd_pop.bnf_card_pop table .info_card {text-align:left;}
  2871. .modal.pd_pop.bnf_card_pop table .info_card p {margin-top:10px;}
  2872. .modal.pd_pop.bnf_card_pop table .info_card p:first-child {margin-top:0;}
  2873. .modal.pd_pop.bnf_card_pop table a.btn_more {display:inline-block; position:relative; padding-right:15px; color:#888; font-size:14px;}
  2874. .modal.pd_pop.bnf_card_pop table a.btn_more:after {content:''; display:block; position:absolute; top:1px; right:0; width:8px; height:8px; border:1px solid #888; border-width:1px 1px 0 0; transform:rotate(45deg); -webkit-transform:rotate(45deg);}
  2875. .modal.pd_pop.bnf_card_pop .info_txt {margin-top:20px;}
  2876. .modal.pd_pop.bnf_card_pop .pop_cont {max-height:560px; margin-left:-20px; margin-right:-20px; padding:0 20px; overflow-y:auto;}
  2877. /* pd_popup > 사이즈정보 */
  2878. .modal.pd_pop.info_size_pop {max-width:none; width:840px; padding:60px;}
  2879. .modal.pd_pop.info_size_pop .tbl.scroll_tbl{position: relative;}
  2880. .modal.pd_pop.info_size_pop .tbl.scroll_tbl .head_t{float: left;width: 25% !important;display: block; color:#222;}
  2881. .modal.pd_pop.info_size_pop .tbl.scroll_tbl .body_t{float: left;width: 75% !important;display: block;white-space: nowrap;overflow-x: auto;padding-bottom: 4px;}
  2882. .modal.pd_pop.info_size_pop .tbl.scroll_tbl .body_t::after {content: '';width: 100%;height: auto; display: block; background: #333;}
  2883. .pd_pop.info_size_pop .pop_cont {max-height:none;}
  2884. .pd_pop.info_size_pop .size_head {text-align:center; margin-bottom:20px;}
  2885. .pd_pop.info_size_pop .size_head .tit_sub {display:block; margin-bottom:20px; font-size:14px; font-weight:200;}
  2886. .pd_pop.info_size_pop .size_head .tit_header {display:block; color:#222; font-size:18px; font-weight:300;}
  2887. .pd_pop.info_size_pop .size_cont .size_tbl_box {padding-top:35px; margin-top:40px; position:relative;}
  2888. .pd_pop.info_size_pop .size_cont .size_tbl_box:first-of-type {margin-top:0;}
  2889. .pd_pop.info_size_pop .size_cont .size_tbl_box h6 {position:absolute; left:0; top:0; margin-bottom:20px;}
  2890. .pd_pop.info_size_pop .size_cont .size_tbl_box .size_unit {position:absolute; right:0; top:0px; color:#888; font-size:14px;}
  2891. .pd_pop.info_size_pop .size_cont .size_tbl_box .tbl table th {color:#222;}
  2892. .pd_pop.info_size_pop .size_cont .size_tbl_box .tbl table thead th {border-bottom:1px solid #222;}
  2893. .pd_pop.info_size_pop .size_cont .size_tbl_box .tbl table th,
  2894. .pd_pop.info_size_pop .size_cont .size_tbl_box .tbl table td {font-size:14px; padding: 1.5rem 1rem;}
  2895. .pd_pop.info_size_pop .size_footer {margin-top:20px; margin-bottom: 20px;}
  2896. .pd_pop.info_size_pop .tab_nav ul{display: flex;flex-direction: row;align-content: space-around;justify-content: space-between;}
  2897. .pd_pop.info_size_pop .tab_nav ul::after {content:''; clear:both; display:block;}
  2898. .pd_pop.info_size_pop .tab_nav ul li {flex: 1; text-align:center; background:#f5f5f5; border-bottom:1px solid #222; border-top:1px solid #f5f5f5;}
  2899. .pd_pop.info_size_pop .tab_nav ul li.active {background:#fff; border:1px solid #222; border-bottom:1px solid #fff;}
  2900. .pd_pop.info_size_pop .tab_nav ul li a {display:block; color:#888; font-size:18px; font-weight:200; padding:20px 0;}
  2901. .pd_pop.info_size_pop .tab_nav ul li.active a {color:#222; font-weight:300;}
  2902. .pd_pop.info_size_pop .tab_cont_wrap {display:block; margin-top:40px;}
  2903. .pd_pop.info_size_pop .tab_cont_wrap .tab_cont {display:none;}
  2904. .pd_pop.info_size_pop .tab_cont_wrap .tab_cont:first-of-type {display:block;}
  2905. .pd_pop.info_size_pop .sub_tab_nav {display:inline-block;}
  2906. .pd_pop.info_size_pop .sub_tab_nav ul::after {content:''; clear:both; display:block;}
  2907. .pd_pop.info_size_pop .sub_tab_nav ul li {float:left; margin-left:30px; text-align:center;}
  2908. .pd_pop.info_size_pop .sub_tab_nav ul li:first-child {margin-left:0;}
  2909. .pd_pop.info_size_pop .sub_tab_nav ul li a {display:inline-block; color:#888; font-size:16px; font-weight:200;}
  2910. .pd_pop.info_size_pop .sub_tab_nav ul li.active a {color:#222; font-weight:500; border-bottom:1px solid #222;}
  2911. .pd_pop.info_size_pop .sub_tab_cont_wrap {display:block; margin-top:40px;}
  2912. .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont {display:none; position:relative;}
  2913. .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont::after {content:''; clear:both; display:block;}
  2914. .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont:first-of-type {display:block;}
  2915. .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont .img_sizeinfo {float:left; border:1px solid #eee;}
  2916. .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont dl {float:right; width:344px; text-align:left; margin-top:10px; font-size:14px; line-height:24px; word-break:keep-all;}
  2917. .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont dl div {float:none; padding:0 0 20px;}
  2918. .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont dl div dt {float:none; color:#222; font-weight:300;}
  2919. .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont dl div dd {color:#666;}
  2920. .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont dl div dd .info_txt ul li {line-height:inherit;}
  2921. .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont dl div dd .info_txt ul li:after {top:7px;}
  2922. /* pd_popup > 재입고 알림 신청 */
  2923. .modal.pd_pop.push_restock_pop {max-width:none; width:640px; padding:60px;}
  2924. .pd_pop.push_restock_pop .pop_cont {margin-left:-10px; margin-right:-10px; padding-left:10px; padding-right:10px;}
  2925. .pd_pop.push_restock_pop .item_blk {width:510px;}
  2926. .pd_pop.push_restock_pop .item_blk .item_prod {width:100%; display:block;}
  2927. .pd_pop.push_restock_pop .item_blk .item_prod .item_state {display:table; width:100%; padding:0;}
  2928. .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink {display:table-cell; width:100%; height:120px; padding-left:100px; vertical-align:middle;}
  2929. .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink .itemPic {position:absolute; left:0; top:0; width:80px; height:120px; padding:0; margin-bottom:0; z-index:2;}
  2930. .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink .itemBrand {display:block; margin-left:0;}
  2931. .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink .itemName {max-width:100%; margin-left:0; margin-bottom:13px; height:auto; max-height:40px;}
  2932. .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink .itemPrice {margin:0;}
  2933. .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink .itemPrice .itemPercent {position:relative;}
  2934. .pd_pop.push_restock_pop .select_blk {width:510px; margin-top:30px;}
  2935. .pd_pop.push_restock_pop .select_blk h6 {margin-bottom:16px;}
  2936. .pd_pop.push_restock_pop .select_blk .opt_size .form_field {display:block; margin-top:-8px;}
  2937. .pd_pop.push_restock_pop .select_blk .opt_size .form_field > div {margin-left:8px; margin-top:8px;}
  2938. .pd_pop.push_restock_pop .select_blk .opt_size .form_field > div:nth-child(7n-6) {margin-left:0px;}
  2939. .pd_pop.push_restock_pop .select_blk .opt_size .form_field input[type="radio"] + label {display:block; width:66px; height:42px; padding:0; line-height:42px; text-align:center; background:#fff; box-sizing:border-box; border:1px solid #ddd; color:#222; font-weight:200; font-size:14px;}
  2940. .pd_pop.push_restock_pop .select_blk .opt_size .form_field input[type="radio"] + label::before,
  2941. .pd_pop.push_restock_pop .select_blk .opt_size .form_field input[type="radio"] + label::after {display:none;}
  2942. .pd_pop.push_restock_pop .select_blk .opt_size .form_field input[type="radio"]:checked + label {border: 1px solid #fd4802;}
  2943. .pd_pop.push_restock_pop .select_blk .opt_size .form_field input[type="radio"]:disabled + label {text-decoration:line-through; background:#f5f5f5; border-color:#f5f5f5; color:#bbb; opacity:1;}
  2944. .pd_pop.push_restock_pop .select_blk .opt_size .form_field > div {float:left; width:auto;}
  2945. .pd_pop.push_restock_pop .select_blk .opt_select .select_blk {display:block; max-height:300px; overflow-y:scroll;}
  2946. .pd_pop.push_restock_pop .modal-footer {margin-top:40px; padding-top:40px; border-top:1px solid #ddd;}
  2947. .pd_pop.push_restock_pop .modal-footer button {width:220px;}
  2948. /* pd_popup > 스타일링 추천 */
  2949. .modal.pd_pop.pd_lookbook_pop {max-width:585px; min-height:390px; padding:0;}
  2950. .pd_pop.pd_lookbook_pop .item_prod {width:100%;}
  2951. .pd_pop.pd_lookbook_pop .modal-header {margin:0;}
  2952. .pd_pop.pd_lookbook_pop .itemsGrp {margin-bottom:0;}
  2953. .pd_pop.pd_lookbook_pop .itemsGrp .item_prod {width: 100%; overflow: hidden;}
  2954. .pd_pop.pd_lookbook_pop .itemsGrp .item_prod .item_state {display: table; padding-left: 310px; padding-right: 55px; padding-bottom: 0; width: 100%; min-height:390px;}
  2955. .pd_pop.pd_lookbook_pop .itemsGrp .item_prod .itemLink {display: table-cell; position: static; vertical-align: middle;}
  2956. .pd_pop.pd_lookbook_pop .itemsGrp .item_prod .itemPic {position: absolute; top: 0; left: 0; margin-bottom: 0; width: 260px; height:390px; padding:0; background: #f9f9f9;}
  2957. .pd_pop.pd_lookbook_pop .itemsGrp .item_state.soldout .itemPic:before {content:'SOLD OUT'; position: absolute; top: 50%; left: 50%; font-size: 20px; color:#fff; background: rgba(0,0,0,.5); width: 100%; height: 100%; transform:translate(-50%, -50%); line-height: 420px; z-index: 1; text-align: center;}
  2958. .pd_pop.pd_lookbook_pop .itemsGrp .item_prod .itemBrand {margin:0px 0px 15px; font-size: 14px; font-weight: 300; line-height: 14px;}
  2959. .pd_pop.pd_lookbook_pop .itemsGrp .item_prod .itemName {margin:0px 0px 25px; font-size: 18px; font-weight: 300; line-height: 28px; height:56px;}
  2960. .pd_pop.pd_lookbook_pop .itemsGrp .item_prod .itemPrice {font-size: 26px; line-height: 1; font-weight: 500; margin:0;}
  2961. .pd_pop.pd_lookbook_pop .itemsGrp .item_prod .itemPrice_original {display: inline-block; margin-left:0; margin-bottom:10px; font-size: 20px; font-weight: 200;}
  2962. .pd_pop.pd_lookbook_pop .itemsGrp .item_prod .itemPercent {position:relative; font-size: 26px; line-height: 0.8;}
  2963. .pd_pop.pd_lookbook_pop .itemsGrp .item_prod .itemLink .btn {margin-top:40px; border:1px solid #a7a7a7; font-weight:300;}
  2964. /* pd_popup > 베스트 리뷰 & 포토영상 리뷰 자세히보기 공통 */
  2965. .modal[class*="reviewdetail_pop"] {max-width:none; width:1080px; padding:60px;}
  2966. .modal[class*="reviewdetail_pop"] .pic .thumb {display:block; padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
  2967. .modal[class*="reviewdetail_pop"] .swiper-button-prev,
  2968. .modal[class*="reviewdetail_pop"] .swiper-button-next {top:50%; transform:translateY(-50%); margin:0; display:inline-block;}
  2969. .modal[class*="reviewdetail_pop"] .swiper-button-prev {left:-70px;}
  2970. .modal[class*="reviewdetail_pop"] .swiper-button-next {right:-70px;}
  2971. .modal[class*="reviewdetail_pop"] .swiper-button-prev:after {content:''; display:block; position:absolute; top:0px; left:0; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(-135deg); -webkit-transform:rotate(-135deg);}
  2972. .modal[class*="reviewdetail_pop"] .swiper-button-next:after {content:''; display:block; position:absolute; top:0px; right:0; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(45deg); -webkit-transform:rotate(45deg);}
  2973. .modal[class*="reviewdetail_pop"] .modal-body .pop_cont {height:auto;max-height:none;}
  2974. .modal[class*="reviewdetail_pop"] .modal-header h5.modal-title {display:inline-block; margin:0; font-size:24px; font-weight:500;}
  2975. .modal[class*="reviewdetail_pop"] .modal-header .txt {margin-top:20px; color:#666; font-size:16px; font-weight:300;}
  2976. .modal[class*="reviewdetail_pop"] .modal-body .pop_cont {line-height:1;}
  2977. .modal[class*="reviewdetail_pop"] .modal-footer {margin-top:40px;}
  2978. .modal[class*="reviewdetail_pop"] .detail .review {display:table; width:100%; background:#fff;}
  2979. .modal[class*="reviewdetail_pop"] .detail .review .pic {display:table-cell; position:relative; width:545px; height:545px; background:#f5f5f5; vertical-align:top;}
  2980. .modal[class*="reviewdetail_pop"] .detail .review .pic::after {display:none;}
  2981. .modal[class*="reviewdetail_pop"] .detail .review .pic .thumb {display:block;}
  2982. .modal[class*="reviewdetail_pop"] .detail .review .pic .thumb img,
  2983. .modal[class*="reviewdetail_pop"] .detail .review .pic .thumb iframe,
  2984. .modal[class*="reviewdetail_pop"] .detail .review .pic .thumb video {position:absolute; left:50%; right:0; top:50%; bottom:auto; transform:translate(-50%, -50%); max-height:100%; max-width:100%; margin:auto 0; cursor:pointer;}
  2985. /* 0809 */
  2986. .modal[class*="reviewdetail_pop"] .detail .review .pic .thumb iframe {width: 140%;transform:none;left: -40%;right: 0;top:0;bottom: 0;max-width: 140%;}
  2987. .modal[class*="reviewdetail_pop"] .detail .review .pic .thumb iframe img {width: 140%;transform:none;left: -40%;right: 0;top:0;bottom: 0;max-width: 140%;}
  2988. .modal[class*="reviewdetail_pop"] .detail .review .pic .thumb.mov iframe {width: 100%;transform:none;left: 0%;right: 0;top:0;bottom: 0;max-width: 100%;}
  2989. /* 210827_ 영상비율 Portrait type 대응 */
  2990. .modal[class*="reviewdetail_pop"] .detail .review .pic .thumb iframe {width: 100%;transform:none;left: 0%;right: 0;top:0;bottom: 0;max-width: 100%;}
  2991. .modal[class*="reviewdetail_pop"] .detail .review .review_cont {display:table-cell; padding-left:50px; vertical-align:top;}
  2992. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .box_wrap {display:block; height:455px; overflow-y:auto;}
  2993. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .box_wrap [class*="_box"] {margin-top:25px;}
  2994. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .star_box {margin-top:0;}
  2995. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .star_box .star_score {height:17px;}
  2996. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .star_box .star {display:inline-block; position:relative; width:102px; height:17px; background:#f5f5f5;}
  2997. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .star_box .star::after {content:''; position:absolute; left:0; top:0; z-index:3; width:100%; height:100%; background:url('//image.istyle24.com/Style24/images/pc/star_empty_big.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
  2998. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .star_box .star .progbar {display:inline-block; height:100%; background:#fd4802;}
  2999. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div dl div {margin-top:13px; font-size:14px;}
  3000. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div:first-child dl div {margin-top:0;}
  3001. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div dl div {float:left; width:50%;}
  3002. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div.full dl div {width:100%;}
  3003. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div dl div dt {float:left; width:60px; color:#888;}
  3004. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div dl div dd {float:left; margin-left:20px; color:#fd4802;}
  3005. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div dl div dd p{margin-bottom:0.4rem; width:250px;}
  3006. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div dl div dd p:last-child{margin-bottom:0;}
  3007. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .txt_review_box {color:#666; font-size:14px; line-height:24px;}
  3008. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .writer_box span {position:relative; margin-left:20px; padding-left:20px; color:#888; font-size:14px; line-height: 18px;}
  3009. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .writer_box span::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); height:12px; width:1px; background:#ddd;}
  3010. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .writer_box span:first-child {margin-left:0; padding-left:0;}
  3011. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .writer_box span:first-child::after {display:none;}
  3012. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box {margin-top:30px; padding-top:15px}
  3013. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply {position:relative; padding:30px; background:#f5f5f5; font-size:14px;}
  3014. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply::after {content:''; position:absolute; left:0px; top:-15px; width:0px; height:0px; border:15px solid #f5f5f5; border-top-color:transparent; border-right-color:transparent;}
  3015. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply .reply_writer span {display:inline-block; position:relative;}
  3016. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply .reply_writer .wr_name {padding-left:24px; color:#222; font-weight:300;}
  3017. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply .reply_writer .wr_name::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:16px; height:16px; background:url('//image.istyle24.com/Style24/images/pc/ico_admin.png') no-repeat 0 0;}
  3018. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply .reply_writer .wr_date {padding-left:20px; margin-left:20px; color:#888; font-size:200;}
  3019. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply .reply_writer .wr_date::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); height:12px; width:1px; background:#ddd;}
  3020. .modal[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply .reply_txt {margin-top:20px; color:#666; line-height:24px;}
  3021. .modal[class*="reviewdetail_pop"] .detail .review.empty_photo .review_cont .box_wrap {height:545px;}
  3022. .modal[class*="reviewdetail_pop"] .detail .review.empty_photo .pic .thumb::before {content:''; position:absolute; left:0; right:0; top:0; bottom:0; z-index:2; background:rgba(0,0,0,0.5);}
  3023. .modal[class*="reviewdetail_pop"] .detail .review.empty_photo .pic .thumb::after {content:'리뷰에 등록된 이미지가 없습니다.'; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:2; color:#fff; font-size:16px;}
  3024. .modal[class*="reviewdetail_pop"] .thumblist {position:absolute; right:0px; bottom:0px; width:365px; overflow-x:auto; white-space:nowrap; padding-bottom:10px;}
  3025. .modal[class*="reviewdetail_pop"] .thumblist .pic {position:relative; width:50px; height:50px; cursor:pointer; z-index:2;}
  3026. .modal[class*="reviewdetail_pop"] .thumblist .pic.active {border:2px solid #fd4802;}
  3027. .modal[class*="reviewdetail_pop"] .thumblist .thumb.mov::after {content:''; position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.3) url('//image.istyle24.com/Style24/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
  3028. .modal[class*="reviewdetail_pop"] .thumblist .swiper-slide {width:auto;}
  3029. .modal[class*="reviewdetail_pop"] .thumblist .swiper-slide .pic {position:relative; width:50px; height:50px; cursor:pointer; z-index:2;}
  3030. .modal[class*="reviewdetail_pop"] .thumblist .swiper-slide.swiper-slide-thumb-active .pic {border:2px solid #fd4802;}
  3031. .modal[class*="reviewdetail_pop"] .thumblist .swiper-scrollbar {left:0; width:100%; height:2px; background:#ddd; border-radius:0; opacity:1;}
  3032. .modal[class*="reviewdetail_pop"] .thumblist .swiper-scrollbar-drag {background:#222; opacity:1;}
  3033. .modal[class*="reviewdetail_pop"] .detail .review .thumblist ul {height:50px; width:max-content;}
  3034. .modal[class*="reviewdetail_pop"] .detail .review .thumblist ul::after {content:''; clear:both; display:block;}
  3035. .modal[class*="reviewdetail_pop"] .detail .review .thumblist li {float:left; margin-right:8px;}
  3036. .modal[class*="reviewdetail_pop"] .detail .review .thumblist li .pic {position:relative; width:50px; height:50px; cursor:pointer; z-index:2;}
  3037. .modal[class*="reviewdetail_pop"] .detail .review .thumblist li .pic .thumb img,
  3038. .modal[class*="reviewdetail_pop"] .detail .review .thumblist li .pic .thumb video {display:none;}
  3039. /* pd_popup > 베스트 리뷰 자세히 보기 */
  3040. /* pd_popup > 포토영상 리뷰 자세히 보기 */
  3041. .pd_photoreviewdetail_pop button.btn_more {display:inline-block; height:34px; margin-left:10px; padding:0px 8px 0px 30px; border:1px solid #ddd; color:#222; font-size:14px; font-weight:200; background:url('//image.istyle24.com/Style24/images/pc/ico_thumblist.png') no-repeat 9px 9px; box-sizing:border-box;}
  3042. /* pd_popup > 포토영상 리뷰 리스트 */
  3043. .modal.pd_photoreviewlist_pop {max-width:none; width:1080px; padding:60px;}
  3044. .pd_photoreviewlist_pop .thumb {display:block; position:relative; width:100%; height:0px; line-height:0; font-size:0; padding-top:150%; background:#f5f5f5; overflow:hidden;}
  3045. .pd_photoreviewlist_pop .pic .thumb {padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
  3046. .pd_photoreviewlist_pop .pic .thumb.mov::after {content:''; position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.3) url('//image.istyle24.com/Style24/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
  3047. .pd_photoreviewlist_pop .photo_list {min-height:200px;}
  3048. .pd_photoreviewlist_pop .photo_list ul {margin-top:-12px;}
  3049. .pd_photoreviewlist_pop .photo_list ul li {float:left; width:150px; margin-left:12px; margin-top:12px;}
  3050. .pd_photoreviewlist_pop .photo_list ul li:nth-child(6n-5) {margin-left:0;}
  3051. .pd_photoreviewlist_pop .ui_row {margin-top:50px; margin-bottom:0;}
  3052. /* pd_popup > 상품문의 이미지 팝업 슬라이드 */
  3053. .modal.pd_pop.qna_img_pop {width:800px; height:800px; max-width:none; max-height:none; padding:60px; box-sizing:border-box;}
  3054. .qna_img_pop .modal-body .pop_cont {max-height:none;}
  3055. .qna_img_pop .swiper-slide .pop_img {position:relative; width:100%; height:0; padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:contain;}
  3056. .qna_img_pop .swiper-pagination {position:absolute; left:0; right:0; bottom:15px; width:100%; text-align:center;}
  3057. .qna_img_pop .swiper-pagination .swiper-pagination-bullet {width:10px; height:10px; margin-left:10px; background:#ddd; opacity:1;}
  3058. .qna_img_pop .swiper-pagination .swiper-pagination-bullet-active {background:#fd4802;}
  3059. .qna_img_pop .swiper-pagination .swiper-pagination-bullet:first-child {margin-left:0;}
  3060. .qna_img_pop .swiper-button-prev::after,
  3061. .qna_img_pop .swiper-button-next::after {content: '';}
  3062. .qna_img_pop .swiper-button-prev,
  3063. .qna_img_pop .swiper-button-next {top:50%; transform:translateY(-50%); margin:0; display:inline-block;}
  3064. .qna_img_pop .swiper-button-prev {left:-70px;}
  3065. .qna_img_pop .swiper-button-next {right:-70px;}
  3066. .qna_img_pop .swiper-button-prev:after {content:''; display:block; position:absolute; top:0px; left:0; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(-135deg); -webkit-transform:rotate(-135deg);}
  3067. .qna_img_pop .swiper-button-next:after {content:''; display:block; position:absolute; top:0px; right:0; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(45deg); -webkit-transform:rotate(45deg);}
  3068. /* pd_pop > 상품문의 작성 */
  3069. .modal.pd_pop.pd_qnawrite_pop {width:650px; height:auto; max-width:none; max-height:none; padding:60px; box-sizing:border-box;}
  3070. .modal.pd_pop.pd_qnawrite_pop .info_txt ul li {line-height:24px;}
  3071. .modal.pd_pop.pd_qnawrite_pop .info_txt ul li:after {top:10px;}
  3072. .pd_qnawrite_pop .modal-body .pop_cont {max-height:none;}
  3073. .pd_qnawrite_pop .modal-footer {margin-top:40px; padding-top:40px; border-top:1px solid #ddd;}
  3074. .pd_qnawrite_pop .modal-footer .btn {width:220px;}
  3075. .pd_qnawrite_pop .form_field {display:block;}
  3076. .pd_qnawrite_pop .input_box {margin-top:35px;}
  3077. .pd_qnawrite_pop .input_box textarea {display:block; width:100%; height:220px; padding:20px 20px; box-sizing:border-box; color:#222; font-size:16px;}
  3078. .pd_qnawrite_pop .input_box .txt_cnt {display:block; width:100%; margin-top:14px; font-size:14px; z-index:1;}
  3079. .pd_qnawrite_pop .input_box .txt_cnt .itemqna_cnt em {font-weight:500;}
  3080. .pd_qnawrite_pop .secret_box {position:absolute; left:0; bottom:0; z-index:2;}
  3081. .pd_qnawrite_pop .form_field .secret_box input[type="checkbox"] + label {color:#222; font-size:16px; font-weight:200;}
  3082. .pd_qnawrite_pop .push_box {margin-top:40px;}
  3083. .pd_qnawrite_pop .push_box dl {color:#222; font-size:16px;}
  3084. .pd_qnawrite_pop .push_box dl dt {height:24px; margin-right:40px; line-height:24px; font-weight:300;}
  3085. .pd_qnawrite_pop .push_box dl dd .form_field > div {margin-right:30px;}
  3086. .pd_qnawrite_pop .push_box dl dd .form_field > div input[type="radio"] + label {font-weight:200;}
  3087. /* pd_full_popup */
  3088. body.lock {overflow:hidden;}
  3089. .pd_pop.full_pop {display:none; position:fixed; top:0; bottom:0; left:0; right:0; margin-top:160px; width:100%; height:calc(100% - 160px); overflow-y:auto; z-index:110; background:#fff; line-height:1;}
  3090. .pd_pop.full_pop .info_txt ul li {position:relative; font-size:14px; color:#888; padding-left:15px; margin-bottom:15px; line-height:1;}
  3091. .pd_pop.full_pop .info_txt ul li:last-child {margin-bottom:0;}
  3092. .pd_pop.full_pop .info_txt ul li:after {content:''; position: absolute; top:5px; left:0; background:#858585; width:3px; height:3px;}
  3093. .pd_pop .full_popup_wrap .btn_close {position:fixed; right:30px; top:30px; display:inline-block; z-index:130; cursor:pointer;}
  3094. .pd_pop .full_popup_wrap .btn_close a {display:block; width:25px; height:25px; text-indent:-9999px; background:url('//image.istyle24.com/Style24/images/pc/ico_pop_cls.png') no-repeat 50% 50%; background-size:100% auto;}
  3095. .pd_pop .full_popup_wrap .full_pop_header {position:fixed; top:0; left:0; right:0; width:100%; height:160px; padding:20px 70px; border-bottom:1px solid #ddd; box-sizing:border-box; background:#fff; z-index:11; box-sizing:border-box;}
  3096. .pd_pop .full_popup_wrap .full_pop_header .item_prod {position:relative; width:100%; height:120px;}
  3097. .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state {display:table; width:100%; padding:0;}
  3098. .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state a.itemLink {display:table-cell; height:120px; padding:0 0 0 110px; vertical-align:middle;}
  3099. .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state .itemPic {position:absolute; left:0; top:0; width:80px; height:120px; padding:0; margin:0;}
  3100. .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state .itemBrand {margin:0;}
  3101. .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state .itemName {height:14px; line-height:14px; margin:15px 0 0;}
  3102. .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state .itemPrice {margin:20px 0 0;}
  3103. .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state .itemPercent {position:relative; top:auto; right:auto;}
  3104. .pd_pop .full_popup_wrap .full_pop_header .select_custom {width:50%; height:auto;}
  3105. .pd_pop .full_popup_wrap .full_pop_header .select_custom .combo .select {height:120px; border:0; padding:0 200px 0 0;}
  3106. .pd_pop .full_popup_wrap .full_pop_header .select_custom .combo .list {top:139px; border-top:1px solid #222; padding:0;}
  3107. .pd_pop .full_popup_wrap .full_pop_header .select_custom .combo .list > li {padding:20px; border-top:1px solid #eee}
  3108. .pd_pop .full_popup_wrap .full_pop_header .select_custom .combo .list > li:first-child {border-top:none;}
  3109. .pd_pop .full_popup_wrap .full_pop_header .select_custom .combo .list > li[aria-disabled="true"] {color:#bbb;}
  3110. .pd_pop .full_popup_wrap .full_pop_header .select_custom .combo .list > li[aria-disabled="true"] a [class^="item"] {color:#bbb; text-decoration:line-through;}
  3111. .pd_pop .full_popup_wrap .full_pop_header .select_custom .combo .list > li[aria-disabled="true"] a img {opacity:0.3;}
  3112. .pd_pop .full_popup_wrap .full_pop_container {position:relative; width:1200px; margin:auto; padding-bottom:160px;}
  3113. /* pd_pop > 상품썸네일 크게보기 */
  3114. .pd_pop.full_pop.pd_itemthumb_pop {margin-top:0; height:100%;}
  3115. .full_pop.pd_itemthumb_pop .full_pop_container {width:100%; padding:0px;}
  3116. .full_pop.pd_itemthumb_pop .full_pop_container .scaleview {position:relative; display:block; text-align:center; margin-top:40px; z-index:1;}
  3117. .full_pop.pd_itemthumb_pop .full_pop_container .scaleview:first-child {margin-top:0;}
  3118. .full_pop.pd_itemthumb_pop .full_pop_container .scaleview img {max-width:100%; cursor:url('//image.istyle24.com/Style24/images/pc/cursor_zoomout.png') 0 0, zoom-out;}
  3119. .full_pop.pd_itemthumb_pop .full_pop_container .scaleview .video_controls,
  3120. .full_pop.pd_itemthumb_pop .full_pop_container .scaleview video {display:none;}
  3121. /* pd_pop > 개별상품상세 설명 페이지 */
  3122. .pd_pop.full_pop.pd_descrp_pop {height:100%; padding:0; margin:0; overflow:hidden;}
  3123. .full_pop.pd_descrp_pop .full_popup_wrap .full_pop_container {float:left; width:69.79%; max-height:780px; background:#fff; margin-top:160px; padding-top:80px; padding-left:70px; padding-right:70px; overflow-y:auto;}
  3124. .full_pop.pd_descrp_pop .full_pop_container .btn_more_box {display:none;}
  3125. .full_pop.pd_descrp_pop .full_pop_container .cont_body {max-width:1345px; background:#fff; max-height:none; overflow:visible;}
  3126. .full_pop.pd_descrp_pop .full_pop_container .cont_body > div {width:auto; max-width:1200px;}
  3127. .full_pop.pd_descrp_pop .full_pop_fix_r {position:fixed; z-index:2; right:0; top:0; bottom:0; width:30.21%; padding:160px 70px 0; border-left:1px solid #ddd; box-sizing:border-box; background:#fff;}
  3128. .full_pop.pd_descrp_pop .full_pop_fix_r .option_box {margin-top:30px;overflow-y: auto;height: calc(100% - 43%);}
  3129. .full_pop.pd_descrp_pop .full_pop_fix_r .btn_box {margin-bottom:30px;}
  3130. @media screen and (max-width:1459px) {
  3131. .full_pop.pd_descrp_pop .full_pop_fix_r {padding-left:20px; padding-right:20px;}
  3132. }
  3133. .full_pop.pd_descrp_pop .btn_box .ui_row {margin-bottom: 0;}
  3134. .full_pop.pd_descrp_pop .btn_box .ui_row [class^='ui_col_']:first-child {margin-right: 0;}
  3135. .full_pop.pd_descrp_pop .btn_box .ui_row [class^='ui_col_']:last-child {margin-left: 0;}
  3136. .full_pop.pd_descrp_pop .btn_box .btn {height:60px; font-size:18px; font-weight:300;}
  3137. .full_pop.pd_descrp_pop .btn_box .btn:disabled{background:#aaa; border-color:#aaa; opacity:1;}
  3138. /* pd_pop > 상품문의 페이지 */
  3139. .pd_qnalist .info_txt {margin-top:80px;}
  3140. .pd_qnalist .info_txt::after {content:''; clear:both; display:block;}
  3141. .pd_qnalist .info_txt ul {float:left;}
  3142. .pd_qnalist .info_txt ul li {position:relative; font-size:14px; color:#888; padding-left:15px; margin-bottom:10px; line-height:1;}
  3143. .pd_qnalist .info_txt ul li:last-child {margin-bottom:0;}
  3144. .pd_qnalist .info_txt ul li:after {content:''; position: absolute; top:5px; left:0; background:#858585; width:3px; height:3px;}
  3145. .pd_qnalist .info_txt .btn_box {float:right;}
  3146. .pd_qnalist .info_txt .btn_box button {height:42px; padding-left:24px; padding-right:24px; font-size:14px;}
  3147. .pd_qnalist .info_txt .btn_box button span {display:inline-block; line-height:1;}
  3148. .pd_qnalist .qna_list {margin-top:80px;}
  3149. .pd_qnalist .qna_list .ui_row {margin-top:20px;}
  3150. .pd_qnalist .qna_list .nodata {padding-top:120px; border-top:1px solid #222; text-align:center;}
  3151. .pd_qnalist .qna_list .nodata .txt_box {color:#666; font-size:16px; font-weight:300; line-height:26px;}
  3152. .pd_qnalist .qna_list .nodata .txt_box::before {content:''; display:block; width:36px; height:46px; margin:0 auto 24px; background:url('//image.istyle24.com/Style24/images/pc/ico_content_none.png') no-repeat;}
  3153. .pd_qnalist .qna_list .form_field input[type="checkbox"] + label {line-height:1;}
  3154. .pd_qnalist .qna_list .form_field input[type="checkbox"] + label:before,
  3155. .pd_qnalist .qna_list .form_field input[type="checkbox"]:checked + label:after {top:50%; transform:translateY(-50%);}
  3156. .pd_qnalist .qna_list .case1 .fold_head .fold_tit span {float:left; display:inline; position:relative; width:calc(100% - 373px); max-width:500px;}
  3157. .pd_qnalist .qna_list .case1 .fold_head .data [class^="wr_"] {display:inline-block; width:100px; text-align:center;}
  3158. .pd_qnalist .qna_list .fold_cont .img_group .thumb_pic {background:#fff;}
  3159. .pd_qnalist .qna_list .fold_cont .img_group .thumb_pic img{position:absolute; left:50%; right:0; top:50%; bottom:auto; transform:translate(-50%, -50%); width:auto; height:auto; max-height:100%; max-width:100%; margin:auto 0; cursor:pointer;}
  3160. .pd_qnalist .qna_list .case1 .my_qna .fold_head,
  3161. .pd_qnalist .qna_list .case1 .my_qna .fold_head.on,
  3162. .pd_qnalist .qna_list .case1 .my_qna .fold_detail {background:#fff6f2;}
  3163. .pd_qnalist .qna_list .fold_head .fold_tit .ico {float:left; display:inline; width:auto; height:auto; margin-left:12px;}
  3164. .pd_qnalist .qna_list .fold_head .fold_tit .ico_myqna::after {content:'내문의'; display:inline-block; width:47px; height:22px; border:1px solid #fd4802; color:#fd4802; font-size:12px; text-align:center; box-sizing:border-box; line-height:20px; margin-top:-3px;}
  3165. .pd_qnalist .qna_list .fold_head .fold_tit .ico_secret::after {content:''; display:inline-block; width:15px; height:16px; background:url('//image.istyle24.com/Style24/images/pc/ico_secret.png') no-repeat 50% 50%;}
  3166. @media screen and (max-width:1459px) {
  3167. .pd_qnalist .info_txt ul li {width: 350px;line-height: 1.4;}
  3168. .pd_qnalist .qna_list .fold_head .data {right:40px}
  3169. .pd_qnalist .qna_list .fold_head::after {right:20px; width:12px; height:6px; background-size:100% auto;}
  3170. .pd_qnalist .qna_list .fold_head .fold_state {width:100px;}
  3171. .pd_qnalist .qna_list .case1 .fold_head .fold_tit span {max-width:230px;}
  3172. .pd_qnalist .qna_list .case1 .fold_detail,
  3173. .pd_qnalist .qna_list .case1 .fold_answer {padding-left:100px;}
  3174. .pd_qnalist .qna_list .case1 .fold_head .data [class^="wr_"] {width:88px;}
  3175. .pd_qnalist .ui_foot .pageNav > li > a {margin-left: 38px;}
  3176. }
  3177. /* pd_pop > 상품리뷰 페이지 */
  3178. .pd_review .swiper-pagination {position:relative; bottom:auto !important; width:100%; margin-top:40px; text-align:center;}
  3179. .pd_review .swiper-pagination .swiper-pagination-bullet {width:10px; height:10px; margin-left:10px; background:#ddd; opacity:1;}
  3180. .pd_review .swiper-pagination .swiper-pagination-bullet-active {background:#fd4802;}
  3181. .pd_review .swiper-pagination .swiper-pagination-bullet:first-child {margin-left:0;}
  3182. .pd_review .thumb {display:block; position:relative; width:100%; height:0px; line-height:0; font-size:0; padding-top:150%; background:#f5f5f5; overflow:hidden;}
  3183. .pd_review .pic .thumb {padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
  3184. .pd_review .pic .thumb.mov::after {content:''; position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.3) url('//image.istyle24.com/Style24/images/pc/ico_play.png') no-repeat 50% 50%; z-index:1;}
  3185. .pd_review dl div,
  3186. .pd_review dl dt,
  3187. .pd_review dl dd {float:left;}
  3188. .pd_review div::after,
  3189. .pd_review dl::after,
  3190. .pd_review ul::after {content:''; clear:both; display:block;}
  3191. .pd_review h6 {margin-bottom:30px; color:#222; font-size:24px;}
  3192. .pd_review [class^="area_"] {display:block; position:relative; margin-top:80px;}
  3193. .pd_review .area_rv_empty {margin-top:120px; text-align:center;}
  3194. .pd_review .area_rv_empty .txt_box p {color:#222; font-size:24px; font-weight:300; line-height:34px;}
  3195. .pd_review .area_rv_empty .txt_box p::before {content:''; display:block; width:60px; height:60px; margin:0 auto 30px; background:url('//image.istyle24.com/Style24/images/pc/ico_point4.png') no-repeat 0 0;}
  3196. .pd_review .area_rv_empty .txt_box p span.c_primary {font-weight:500;}
  3197. .pd_review .area_rv_empty .txt_box dl {display:block; margin-top:30px; padding:40px 0; border:1px solid #ddd;}
  3198. .pd_review .area_rv_empty .txt_box dl div {float:none; display:inline-block; margin-left:60px; font-size:16px;}
  3199. .pd_review .area_rv_empty .txt_box dl div:first-child {margin-left:0;}
  3200. .pd_review .area_rv_empty .txt_box dl div dt {color:#666; font-weight:200;}
  3201. .pd_review .area_rv_empty .txt_box dl div dd {margin-left:20px; color:#fd4802; font-weight:300;}
  3202. .pd_review .area_rv_empty .btn_box .btn {width:237px; height:60px; margin-top:60px; font-size:18px;}
  3203. .pd_review .area_rv_average {margin-top:60px;}
  3204. .pd_review .area_rv_average .star_score {margin-bottom:30px; height:25px;}
  3205. .pd_review .area_rv_average .star_score span {display:inline-block; position:relative; color:#fd4802; vertical-align:middle;}
  3206. .pd_review .area_rv_average .star_score .tit {margin-right:30px; font-size:18px; font-weight:300;}
  3207. .pd_review .area_rv_average .star_score .score {margin-right:15px; font-size:32px; font-weight:500;}
  3208. .pd_review .area_rv_average .star_score .star {width:152px; height:24px; background:#f5f5f5;}
  3209. .pd_review .area_rv_average .star_score .star .progbar {display:inline-block; height:100%; background-color:#fd4802;}
  3210. .pd_review .area_rv_average .star_score .star::after {content:''; position:absolute; left:0; top:0; z-index:2; width:100%; height:100%; background:url('//image.istyle24.com/Style24/images/pc/star_empty_big.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
  3211. .pd_review .area_rv_average .average {margin-bottom:50px;}
  3212. .pd_review .area_rv_average .average .part_average {float:left; width:calc((100% - 180px)/4); margin-left:60px; color:#666; font-size:14px;}
  3213. .pd_review .area_rv_average .average .part_average:first-of-type {margin-left:0px;}
  3214. .pd_review .area_rv_average .average .part_average:first-of-type {margin-left:0px;}
  3215. .pd_review .area_rv_average .average .part_average .tit {display:block; margin-bottom:20px; color:#222; font-weight:300;}
  3216. .pd_review .area_rv_average .average .part_average dl > div {margin-top:15px; width:100%;}
  3217. .pd_review .area_rv_average .average .part_average dl > div:first-child {margin-top:0;}
  3218. .pd_review .area_rv_average .average .part_average dl dt {float:left; width:60px;}
  3219. .pd_review .area_rv_average .average .part_average dl dd {float:left; width:calc(100% - 60px);}
  3220. .pd_review .area_rv_average .average .part_average dl dd::after {content:''; clear:both; display:block;}
  3221. .pd_review .area_rv_average .average .part_average dl dd span {float:left; display:inline;}
  3222. .pd_review .area_rv_average .average .part_average dl dd .ratio {width:calc(100% - 40px); height:8px; margin-top:3px; background:#f5f5f5; overflow:hidden;}
  3223. .pd_review .area_rv_average .average .part_average dl dd .ratio .progbar {display:inline-block; position:relative; height:8px; background:#ddd; vertical-align:top; margin-left:0}
  3224. .pd_review .area_rv_average .average .part_average dl dd .ratio .progbar::after {content:''; position:absolute; right:-8px; top:0; width:0; height:0; border:4px solid #ddd; border-bottom-color:transparent;border-right-color:transparent;}
  3225. .pd_review .area_rv_average .average .part_average dl dd .percent {width:40px; text-align:right;}
  3226. .pd_review .area_rv_average .average .part_average dl div.on dt,
  3227. .pd_review .area_rv_average .average .part_average dl div.on dd {color:#222; font-weight:300;}
  3228. .pd_review .area_rv_average .average .part_average dl div.on dd .ratio .progbar {background:#222;}
  3229. .pd_review .area_rv_average .average .part_average dl div.on dd .ratio .progbar::after {border:4px solid #222; border-bottom-color:transparent;border-right-color:transparent;}
  3230. .pd_review .area_rv_average .info_review {color:#222; font-size:16px; background:#fff6f2; padding:30px 60px; vertical-align:middle;}
  3231. .pd_review .area_rv_average .info_review p {float:left; position:relative; padding-left:60px; font-weight:300;}
  3232. .pd_review .area_rv_average .info_review p i.ico_point {position:absolute; left:0; top:50%; transform:translateY(-50%); display:inline-block; width:40px; height:40px; margin-right:20px; background:url('//image.istyle24.com/Style24/images/pc/ico_point3.png') no-repeat 50% 50%; background-size:100% 100%;}
  3233. .pd_review .area_rv_average .info_review p span {font-weight:500;}
  3234. .pd_review .area_rv_average .info_review dl {float:right; display:inline;}
  3235. .pd_review .area_rv_average .info_review dl::after {content:''; clear:both; display:block;}
  3236. .pd_review .area_rv_average .info_review dl div {margin-left:60px;}
  3237. .pd_review .area_rv_average .info_review dl div:first-child {margin-left:0;}
  3238. .pd_review .area_rv_average .info_review dl div dt {color:#666;}
  3239. .pd_review .area_rv_average .info_review dl div dd {margin-left:20px; color:#222; font-weight:300;}
  3240. .pd_review .area_rv_best .btn_arrow {position:absolute; right:0; top:0px; width:50px; height:24px; z-index:2;}
  3241. .pd_review .area_rv_best .btn_arrow::after {clear:both; display:block;}
  3242. .pd_review .area_rv_best .btn_arrow .swiper-button-prev,
  3243. .pd_review .area_rv_best .btn_arrow .swiper-button-next {display:inline-block; position:absolute; left:auto; right:auto; top:3px; bottom:auto; width:auto; height:auto; margin:0;background:#ffffff;}
  3244. .pd_review .area_rv_best .btn_arrow .swiper-button-prev {content:''; display:block; position:absolute; top:3px; left:4px; width:14px; height:14px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(-135deg); -webkit-transform:rotate(-135deg);}
  3245. .pd_review .area_rv_best .btn_arrow .swiper-button-next {content:''; display:block; position:absolute; top:3px; right:4px; width:14px; height:14px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(45deg); -webkit-transform:rotate(45deg);}
  3246. .pd_review .area_rv_best .best_review {width:100%;}
  3247. .pd_review .area_rv_best .best_review a {display:block;position:relative;height:222px;padding:30px 30px 30px 215px;padding: 30px;border:1px solid #eee;}
  3248. .pd_review .area_rv_best .best_review a .pic {position: relative;float: left;width:162px;height: 162px;margin-right: 23px;}
  3249. .pd_review .area_rv_best .best_review a .star_score {margin-top:7px; height:14px;}
  3250. .pd_review .area_rv_best .best_review a .star_score .star {display:inline-block; position:relative; width:102px; height:17px; background:#f5f5f5;}
  3251. .pd_review .area_rv_best .best_review a .star_score .star::after {content:''; position:absolute; left:0; top:0; z-index:3; width:100%; height:100%; background:url('//image.istyle24.com/Style24/images/pc/star_empty_big.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
  3252. .pd_review .area_rv_best .best_review a .star_score .star .progbar {display:inline-block; height:100%; background:#fd4802}
  3253. .pd_review .area_rv_best .best_review a .star_score .ico {margin-left:10px;}
  3254. .pd_review .area_rv_best .best_review a .star_score .ico::before {vertical-align:inherit;}
  3255. .pd_review .area_rv_best .best_review a .txt_best_review {margin-top:20px;}
  3256. .pd_review .area_rv_best .best_review a .txt_best_review p {height:115px; overflow:hidden; line-height:24px; color:#666; font-size:14px; font-weight:200; display:-webkit-box; text-overflow:ellipsis; -webkit-line-clamp:5; -webkit-box-orient:vertical;}
  3257. .pd_review .area_rv_photo .photo_list {position:relative;}
  3258. .pd_review .area_rv_photo .photo_list ul li {float:left; position:relative; width:calc((100% - 66px)/7); margin-left:11px;}
  3259. .pd_review .area_rv_photo .photo_list ul li:first-child {margin-left:0;}
  3260. .pd_review .area_rv_photo .photo_list button {position:absolute; right:0; top:0; width:calc((100% - 66px)/7); padding-top:calc((100% - 66px)/7); background:rgba(0,0,0,0.6); color:#fff; font-size:14px; z-index:1; text-align:center; box-sizing:border-box; z-index:2;}
  3261. .pd_review .area_rv_photo .photo_list button::after {content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); margin-top:-15px; width:24%; height:24%; background:url('//image.istyle24.com/Style24/images/pc/ico_plus_white.png') no-repeat 50% 50%; background-size:100% auto; z-index:1;}
  3262. .pd_review .area_rv_photo .photo_list button span {position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); margin-top:25px; font-weight:200;}
  3263. .pd_review .area_rv_all {margin-top:100px;}
  3264. .pd_review .area_rv_all h6 span {display:inline-block; margin-left:5px; color:#666; font-weight:200;}
  3265. .pd_review .area_rv_all .selection {position:absolute; right:0; top:-16px; width:750px; z-index:2;}
  3266. .pd_review .area_rv_all .selection .select_custom {height:42px; margin-left:10px;}
  3267. .pd_review .area_rv_all .selection .select_custom:first-child {margin-left:0;}
  3268. .pd_review .area_rv_all .selection .select_custom .combo .select {height:42px; padding:15px 20px; color:#666; font-size:14px;}
  3269. .pd_review .area_rv_all .selection .select_custom .combo .list {top:42px; max-height:250px; overflow-y:auto;}
  3270. /*.pd_review .area_rv_all .selection .select_custom .combo .list::-webkit-scrollbar {width:2px;}
  3271. .pd_review .area_rv_all .selection .select_custom .combo .list::-webkit-scrollbar-thumb {background-color:#222; border-radius:0px; background-clip:padding-box; border:none;}
  3272. .pd_review .area_rv_all .selection .select_custom .combo .list::-webkit-scrollbar-track {background-color:#ddd; border-radius:0px; box-shadow:none;}*/
  3273. .pd_review .area_rv_all .selection .select_custom .combo .list li {padding:0 20px; color:#666; font-size:14px; line-height:40px;}
  3274. .pd_review .area_rv_all .selection .select_custom .star_score {display:inline-block; width:100%;}
  3275. .pd_review .area_rv_all .selection .select_custom .star_score .score {float:left; font-size:14px; color:#666;}
  3276. .pd_review .area_rv_all .selection .select_custom .star_score .star {float:left; margin-left:8px;}
  3277. .pd_review .area_rv_all .selection .select_custom .star_score .star .progbar {float:left;}
  3278. .pd_review .area_rv_all .selection .select_custom .combo .select .star_score .star {margin-top:-2px;}
  3279. .pd_review .area_rv_all .selection .select_custom.on .combo .select {border-bottom:1px solid #ddd;}
  3280. .pd_review .area_rv_all .review_list {border-top:1px solid #ddd;}
  3281. .pd_review .area_rv_all .review_list > ul > li {padding:30px 0; border-bottom:1px solid #ddd;}
  3282. .pd_review .area_rv_all .review_list .review .info_box .star_score {float:left;}
  3283. .pd_review .area_rv_all .review_list .review .info_box .star_score .star {display:inline-block; position:relative; width:101px; height:16px; background:#f5f5f5; z-index:1;}
  3284. .pd_review .area_rv_all .review_list .review .info_box .star_score .star::after {content:''; position:absolute; left:0; top:0; z-index:3; width:100%; height:100%; background:url('//image.istyle24.com/Style24/images/pc/star_empty_big.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
  3285. .pd_review .area_rv_all .review_list .review .info_box .star_score .star .progbar {display:inline-block; height:100%; background:#fd4802;}
  3286. .pd_review .area_rv_all .review_list .review .info_box .writer {float:right;}
  3287. .pd_review .area_rv_all .review_list .review .info_box .writer span {position:relative; margin-left:20px; padding-left:20px; color:#888; font-size:14px; line-height: 18px;}
  3288. .pd_review .area_rv_all .review_list .review .info_box .writer span::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); height:12px; width:1px; background:#ddd;}
  3289. .pd_review .area_rv_all .review_list .review .info_box .writer span:first-child {margin-left:0; padding-left:0;}
  3290. .pd_review .area_rv_all .review_list .review .info_box .writer span:first-child::after {display:none;}
  3291. .pd_review .area_rv_all .review_list .review .response_box {margin-top:25px;}
  3292. .pd_review .area_rv_all .review_list .review .response_box > div {margin-top:15px;}
  3293. .pd_review .area_rv_all .review_list .review .response_box > div:first-child {margin-top:0;}
  3294. .pd_review .area_rv_all .review_list .review .response_box > div dl div {margin-right:30px;}
  3295. .pd_review .area_rv_all .review_list .review .response_box > div dl div dt {color:#888;}
  3296. .pd_review .area_rv_all .review_list .review .response_box > div dl div dd {margin-left:12px; color:#fd4802;}
  3297. .pd_review .area_rv_all .review_list .review .photo_box {margin-top:20px;}
  3298. .pd_review .area_rv_all .review_list .review .photo_box .photo_list > ul li {float:left; width:calc((100% - 90px)/10); margin-left:10px;}
  3299. .pd_review .area_rv_all .review_list .review .photo_box .photo_list > ul li:nth-child(10n-9) {margin-left:0;}
  3300. .pd_review .area_rv_all .review_list .review .txt_review_box {margin-top:25px; line-height:24px;}
  3301. .pd_review .area_rv_all .review_list .review .reply_box {margin-top:30px; padding-top:15px;}
  3302. .pd_review .area_rv_all .review_list .review .reply_box .reply {position:relative; padding:30px; background:#f5f5f5;}
  3303. .pd_review .area_rv_all .review_list .review .reply_box .reply::after {content:''; position:absolute; left:0px; top:-15px; width:0px; height:0px; border:15px solid #f5f5f5; border-top-color:transparent; border-right-color:transparent;}
  3304. .pd_review .area_rv_all .review_list .review .reply_box .reply .reply_writer span {display:inline-block; position:relative;}
  3305. .pd_review .area_rv_all .review_list .review .reply_box .reply .reply_writer .wr_name {padding-left:24px; font-weight:300;}
  3306. .pd_review .area_rv_all .review_list .review .reply_box .reply .reply_writer .wr_name::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:16px; height:16px; background:url('//image.istyle24.com/Style24/images/pc/ico_admin.png') no-repeat 0 0;}
  3307. .pd_review .area_rv_all .review_list .review .reply_box .reply .reply_writer .wr_date {padding-left:20px; margin-left:20px; color:#888; font-size:200;}
  3308. .pd_review .area_rv_all .review_list .review .reply_box .reply .reply_writer .wr_date::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); height:12px; width:1px; background:#ddd;}
  3309. .pd_review .area_rv_all .review_list .review .reply_box .reply .reply_txt {margin-top:20px; color:#666; font-size:14px; line-height:24px;}
  3310. .pd_review .area_rv_all .nodata {padding-top:120px; border-top:1px solid #ddd; text-align:center;}
  3311. .pd_review .area_rv_all .ui_row .pageNav {margin-top:50px;}
  3312. @media screen and (max-width:1459px) {
  3313. .pd_review .area_rv_best .best_review a {height:166px;}
  3314. .pd_review .area_rv_best .best_review a .pic {width:104px; height:104px;}
  3315. .pd_review .area_rv_best .best_review a .txt_best_review p {height:72px; -webkit-line-clamp:3;}
  3316. .pd_review .area_rv_average .average .part_average {width:calc((100% - 90px)/4); margin-left:30px;}
  3317. .pd_review .area_rv_average .info_review dl {float:left; padding-left:60px; margin-top:15px}
  3318. .pd_review .area_rv_average .info_review p i.ico_point {margin-top:15px;}
  3319. .pd_review .area_rv_all .selection {position:relative; top:0; width:100%; margin-bottom:20px;}
  3320. }
  3321. /* pd_popup > 배송교환반품 안내 */
  3322. .pd_delivery h6 {margin-bottom:20px; font-size:18px;;}
  3323. .pd_delivery .table_box {margin-top:80px;}
  3324. .pd_delivery .tbl.type1 {padding:20px 0; font-size:14px;}
  3325. .pd_delivery .tbl.type1 table tr th,
  3326. .pd_delivery .tbl.type1 table tr td {font-size:16px; line-height:26px; vertical-align:top;}
  3327. .pd_delivery .tbl.type1 table tr th {padding:10px 0px 10px 40px; color:#222; text-align:left;}
  3328. .pd_delivery .tbl.type1 table tr td {padding:10px 0px; color:#222;}
  3329. /* sch */
  3330. .sch div::after,
  3331. .sch dl::after,
  3332. .sch ul::after {content:''; clear:both; display:block;}
  3333. .sch .sch_result {padding-bottom:150px;}
  3334. .sch .sch_result.brand .cont_head { margin-bottom: 50px;}
  3335. /* sch_result */
  3336. .sch_result .nodata {padding:60px 0 100px; text-align:center;}
  3337. .sch_result .nodata .txt_box {color:#666; font-size:16px; font-weight:300; line-height:26px;}
  3338. .sch_result .nodata .txt_box::before {content:''; display:block; width:36px; height:46px; margin:0 auto 24px; background:url('//image.istyle24.com/Style24/images/pc/ico_content_none.png') no-repeat;}
  3339. .sch_result .nodata .txt_box span {font-weight:300;}
  3340. .sch_result .nodata .btn_box {margin-top:40px;}
  3341. .sch_result .nodata .btn_box .btn span {color:#222; font-size:14px; font-weight:300;}
  3342. .sch_result .area_info {width: 830px; margin: 0 auto;}
  3343. .sch_result .area_info .info_result {color:#222; font-size:26px; font-weight:200;}
  3344. .sch_result .area_info .info_result .keyword {font-weight:500;}
  3345. .sch_result .area_info .info_result .number {color:#fd4802; font-size:28px; font-weight:500;}
  3346. .sch_result .area_info .inner_search {position: relative; display: inline-block; width: 100%; border-bottom:2px solid #222; z-index:2;}
  3347. .sch_result .area_info .inner_search input[type='text'] {width:96%; border:none; padding:2px 0px 10px; color:#222; font-size:30px;}
  3348. .sch_result .area_info .inner_search input[type='text']::placeholder {color:#888;}
  3349. .sch_result .area_info .inner_search button {display:inline-block; width:24px; height:24px; background:url('//image.istyle24.com/Style24/images/pc/ico_search_faq.png') no-repeat 50% 50%; background-size:100% auto; overflow:hidden; font-size:1px; text-indent:-999px;}
  3350. .sch_result .area_info .inner_search .autokeyword {display:none; position:absolute; left:0; top:50px; width:100%; padding:0px; background:#fff; border:1px solid #222; z-index:5;}
  3351. .sch_result .area_info .inner_search .autokeyword.active {display:block;}
  3352. .sch_result .area_info .inner_search .autokeyword ul li a {display:block; padding:10px 15px; color:#888;}
  3353. .sch_result .area_info .inner_search .autokeyword ul li a em {color:#fd4802;}
  3354. .sch_result .area_info .inner_search .autokeyword ul li a:hover,
  3355. .sch_result .area_info .inner_search .autokeyword ul li a:active {background:#f5f5f5; color:#222;}
  3356. .sch_result .area_info .related_keyword {clear:both; display:block; position:relative; margin-top:15px; margin-bottom: 15px; padding:0 0 0 90px; box-sizing:border-box;}
  3357. .sch_result .area_info .related_keyword .title {display:inline-block; position:absolute; left:0; top:4px; padding-right:20px; color:#222; font-size:16px; font-weight:500;}
  3358. .sch_result .area_info .related_keyword .title::after {content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); height:17px; border-left:1px solid #ddd; display: none;}
  3359. .sch_result .area_info .related_keyword ul li {float:left; padding:5px 10px;}
  3360. .sch_result .area_info .related_keyword ul li:first-of-type {margin-left:0;}
  3361. .sch_result .area_info .related_keyword ul li a {display:inline-block; color:#666; font-size:14px; font-weight:300;}
  3362. .sch_result .area_info .related_keyword ul li a:hover {text-decoration:underline;}
  3363. .sch_result .taps {position:relative; margin-top:100px; margin-bottom:80px;}
  3364. .sch_result .cont_body .sch_result_cont {display:none;}
  3365. .sch_result .cont_body .sch_result_cont .sch_recommend h3 {margin-bottom: 40px; text-align: center;}
  3366. .sch_result .cont_body .sch_result_cont .banner {position: relative; padding-top: 60px;}
  3367. .sch_result .cont_body .sch_result_cont .banner .bnnbox{position:relative;}
  3368. .sch_result .cont_body .sch_result_cont .banner .txtWrap{width: 445px; margin:0 auto; position:absolute; top:50%; left:26.35%; transform:translate(0, -50%);z-index:1; text-align:left;}
  3369. .sch_result .cont_body .sch_result_cont .banner .txtWrap p{line-height: 1; display: -webkit-box; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color:#222222; font-size:40px; font-weight:500; text-align:left; line-height:1.25;}
  3370. @media screen and (max-width:1460px) {
  3371. .sch_result .cont_body .sch_result_cont .banner .txtWrap p {font-size:34px;}
  3372. }
  3373. .sch_result .cont_body .sch_result_cont .itemsGrp {margin-left:-10px; margin-right:-10px;}
  3374. .sch_result .cont_body .sch_result_cont .itemsGrp .item_prod {width:calc(100% / 5);}
  3375. .sch_result .cont_body .sch_result_cont .sec_head .itemsGrp {margin-top:30px;}
  3376. .sch_result .cont_body .sch_result_cont .event_list li {float:left; position: relative; width: 24.15%; margin: 0 1.12% 80px 0;}
  3377. .sch_result .cont_body .sch_result_cont .event_list li:nth-child(4n) {margin: 0 0 80px 0;}
  3378. .sch_result .cont_body .sch_result_cont .event_list li .rank {min-width:52px;}
  3379. .sch_result .cont_body .sch_result_cont .event_list li .ev_img {margin-bottom: 27px; position: relative;}
  3380. .sch_result .cont_body .sch_result_cont .event_list li .ev_img img {width: 100%; height: auto;}
  3381. .sch_result .cont_body .sch_result_cont .event_list li .txt .tit {display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin: 20px 0; min-height:66px; max-height:66px; overflow: hidden; text-overflow: ellipsis; font-size: 24px; line-height: 1.4; color: #222; font-weight: 300; word-break: keep-all;}
  3382. /* 검색결과_기획전 */
  3383. .sch_result .form_field input[type="checkbox"] + label:before,
  3384. .sch_result .form_field input[type="checkbox"]:checked + label:after {top: -1px;}
  3385. .sch_result .cont_body .sch_result_cont .exhi_list .item_prod .item_state {display: table; vertical-align: middle; padding: 0; width: 100%; padding-left: 130px; height: 100%;}
  3386. .sch_result .cont_body .sch_result_cont .exhi_list .item_prod:nth-child(5n+0) {margin-right: 0;}
  3387. .sch_result .cont_body .sch_result_cont .exhi_list .item_prod:nth-child(6n+0) {margin-right: 20px;}
  3388. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp {margin-bottom: 80px;}
  3389. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item {float:left; width: calc((100% - 60px)/4); overflow: hidden; margin:0 20px 80px 0; min-height:717px;}
  3390. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item:nth-child(4n) {margin:0 0 40px 0;}
  3391. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img {width: 100%; height: auto; overflow: hidden;}
  3392. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height:auto;}
  3393. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img a {position: relative; width: 100%; height: auto; display: block; padding-bottom: 100%;}
  3394. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img a .shape {max-width:52px; min-height:52px; width: 42px;}
  3395. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img a .shape span {width: 43px; font-weight: 300;}
  3396. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img a .shape:after {height: 42px;}
  3397. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img a:after {content:''; position: absolute; left: 0; bottom: 0; width: 100%; height: 342px; background: linear-gradient(0deg, rgba(0,0,0,1) 0%, transparent 100%); z-index: 8;}
  3398. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img .exhi_detail {position: absolute; left: 0; bottom: 100px; z-index: 9; padding: 23px; padding-bottom: 0;}
  3399. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img .exhi_detail * {display: -webkit-box; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: #fff; font-weight: 300; letter-spacing: 0;}
  3400. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img .exhi_detail .brand {font-size: 14px;}
  3401. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img .exhi_detail .tit {margin:20px 0 15px; max-height:66px; font-size: 24px; line-height: 1.4; word-break: keep-all;}
  3402. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item .exhi_item_img .exhi_detail .sale {font-size: 14px;}
  3403. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item_pr li {height: 150px; margin-bottom: 16px;}
  3404. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item_pr li:last-child {margin-bottom: 0;}
  3405. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item_pr .item_prod {width: 100%; margin-right: 0; margin-bottom: 0; height: 150px;}
  3406. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item_pr {background: #fff; padding: 20px; position: relative; z-index: 9; width: 88.4%; margin:-70px auto 0;}
  3407. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item_pr .itemPic {position: absolute; left: 0; top: 0; background:#f9f9f9; width: 100px; height: 150px; padding-top: 0; margin-bottom: 0;}
  3408. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item_pr .itemLink {position: static; display: table-cell; vertical-align:middle;}
  3409. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item_pr .itemName {font-size: 14px; line-height: 1.4; max-height: none; margin: 0px 0px 15px; height:auto;}
  3410. .sch_result .cont_body .sch_result_cont .exhi_list .itemsGrp .exhi_item_pr .itemPrice {margin-left: 0; margin-right: 0; font-size: 16px;}
  3411. /* br 공통 */
  3412. .br {padding-bottom:160px;}
  3413. .br div::after,
  3414. .br dl::after,
  3415. .br ul::after {content:''; clear:both; display:block;}
  3416. /* br_sch_result */
  3417. .br_sch_result h2 {margin-bottom:60px;}
  3418. .br_sch_result .brand_banner_list ul {margin-top:-20px;}
  3419. .br_sch_result .brand_banner_list ul li {float:left; width:calc((100% - 140.1px)/8); margin-left:20px; margin-top:20px; background:#f5f5f5;}
  3420. .br_sch_result .brand_banner_list ul li:nth-child(8n - 7) {margin-left:0;}
  3421. .br_sch_result .brand_banner_list ul li a {display:block; position:relative; width:100%; height:0; padding-bottom:70.244%; background-repeat:no-repeat; background-position:50% 50%; box-sizing:border-box; background-size:80%;}
  3422. .br_sch_result .brand_banner_list ul li a span {display:none; position:absolute; top:0%; left:0%; width:100%; height:100%; background:#f5f5f5; border:1px solid #222; z-index:1;}
  3423. .br_sch_result .brand_banner_list ul li a span em {position:absolute; top:50%; left:0%; width:100%; padding:10px; transform:translateY(-50%); color:#222; font-size:20px; font-weight:300; text-align:center; word-break:break-word; box-sizing:border-box;}
  3424. .br_sch_result .brand_banner_list ul li a:hover span,
  3425. .br_sch_result .brand_banner_list ul li a:focus span,
  3426. .br_sch_result .brand_banner_list ul li a:active span {display:block;}
  3427. .br_sch_result .area_input {text-align:center; width:100%; max-width:800px; border-bottom:2px solid #222; margin:130px auto auto;}
  3428. .br_sch_result .area_input input[type='text'] {width:calc(100% - 30px); height:54px; border:none; padding-left:0; color:#222; font-size:30px;}
  3429. .br_sch_result .area_input input[type='text']::placeholder {color:#888;}
  3430. .br_sch_result .area_input button {display:inline-block; width:26px; height:26px; background:url('//image.istyle24.com/Style24/images/pc/ico_search_faq.png') no-repeat 50% 50%; background-size:100% auto; overflow:hidden; font-size:1px; text-indent:-999px;}
  3431. .br_sch_result .area_result .default_box {margin-top:20px;}
  3432. .br_sch_result .area_result .brand_list .list_blk {padding:60px 0; border-top:1px solid #ddd;}
  3433. .br_sch_result .area_result .brand_list .list_blk:first-child {border-top:none;}
  3434. .br_sch_result .area_result .brand_list .list_blk .title_abbr {display:block; margin-bottom:15px; color:#222; font-size:42px; font-weight:500;}
  3435. .br_sch_result .area_result .brand_list .list_blk ul li {float:left; width:20%; padding:25px 0;}
  3436. .br_sch_result .area_result .brand_list .list_blk ul li a{display: inline-block;}
  3437. .br_sch_result .area_result .brand_list .list_blk ul li span {display:block; font-weight:200;}
  3438. .br_sch_result .area_result .brand_list .list_blk ul li span.name_large {color:#222; font-size:16px;}
  3439. .br_sch_result .area_result .brand_list .list_blk ul li span.name_small {margin-top:10px; color:#888; font-size:14px;}
  3440. .br_sch_result .area_result .empty_box .nodata {padding:120px 0 0;}
  3441. .br_sch_result .area_result .empty_box .nodata {padding:80px 0 100px; text-align:center;}
  3442. .br_sch_result .area_result .empty_box .nodata .txt_box {color:#666; font-size:16px; font-weight:300; line-height:26px;}
  3443. .br_sch_result .area_result .empty_box .nodata .txt_box::before {content:''; display:block; width:36px; height:46px; margin:0 auto 24px; background:url('//image.istyle24.com/Style24/images/pc/ico_content_none.png') no-repeat;}
  3444. .br_sch_result .area_result .empty_box .nodata .txt_box span {color:#fd4802; font-weight:500;}
  3445. .br_sch_result .area_result .empty_box .nodata .btn_box {margin-top:40px;}
  3446. .br_sch_result .area_result .empty_box .nodata .btn_box .btn span {color:#222; font-size:14px; font-weight:300;}
  3447. /* br_lookbook_list */
  3448. /* br_lookbook_view */
  3449. .br_lookbook_view .cont_head {position:relative;}
  3450. .br_lookbook_view .swiper-button-next,
  3451. .br_lookbook_view .swiper-button-prev {top:50%; transform:translateY(-50%); width:auto; height:auto; margin:0; padding:0; color:transparent;}
  3452. .br_lookbook_view .swiper-button-next {right:0px;}
  3453. .br_lookbook_view .swiper-button-prev {left:0px;}
  3454. .br_lookbook_view .swiper-button-next::after,
  3455. .br_lookbook_view .swiper-button-prev::after {content:''; display:inline-block; width:26px; height:50px; background-image:url('//image.istyle24.com/Style24/images/pc/ico_arr_lg.png'); background-repeat:no-repeat;}
  3456. .br_lookbook_view .swiper-button-next::after {background-position:100% 50%;}
  3457. .br_lookbook_view .swiper-button-prev::after {background-position:0% 50%;}
  3458. .content.br_lookbook_view.cont_visual {padding-bottom:80px;}
  3459. .br_lookbook_view.cont_visual .cont_head {margin-bottom:60px;}
  3460. .br_lookbook_view.cont_visual .cont_body .area_slider {margin-left:-70px; margin-right:-70px;}
  3461. .br_lookbook_view.cont_visual .swiper-slide {width: auto; height: 660px;}
  3462. .br_lookbook_view.cont_visual .swiper-slide-next img,
  3463. .br_lookbook_view.cont_visual .swiper-slide-prev img {width: 100%; height:auto;max-height: 660px;}
  3464. .br_lookbook_view.cont_visual .swiper-slide img {width: auto; height:100%;} /* .0506.높이기준으로 변경 */
  3465. /* 05.07 다양한 이미지를 리사이징하기 위해 가로 기준이 생성됨 */
  3466. .br_lookbook_view.cont_visual .bt_lb_item {overflow: hidden;width: 100%;height: 660px;}
  3467. .br_lookbook_view.cont_visual .swiper-slide img {max-width: 990px;height: 100%;display: block;} /* 210713_ 비율수정 */
  3468. .br_lookbook_view.cont_visual .swiper-slide .item_picker {display: none;}
  3469. .br_lookbook_view.cont_visual .swiper-slide-active .item_picker {display: block;}
  3470. .br_lookbook_view.cont_visual .swiper-slide-prev img,
  3471. .br_lookbook_view.cont_visual .swiper-slide-next img {transform: translate(-50%,-50%);left: 50%;top: 50%;position: relative;}
  3472. .br_lookbook_view.cont_visual .swiper-container {padding-top:60px;}
  3473. .br_lookbook_view.cont_visual .swiper-slide .bt_lb_item:after {content:''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.3);}
  3474. .br_lookbook_view.cont_visual .swiper-slide-active .bt_lb_item {position: relative; height: 618px; margin-top: -60px; }
  3475. .br_lookbook_view.cont_visual .swiper-slide-active .bt_lb_item:after {display:none;}
  3476. .br_lookbook_view.cont_visual .swiper-slide-active .bt_lb_item .item_picker {position:absolute; transform:translate(-50%,-50%);}
  3477. .br_lookbook_view.cont_visual .swiper-slide-active .bt_lb_item .item_picker .pick_descr {display:none; position:absolute; background:#fff; z-index:2;}
  3478. .br_lookbook_view.cont_visual .swiper-button-next {right:70px;}
  3479. .br_lookbook_view.cont_visual .swiper-button-prev {left:70px;}
  3480. .br_lookbook_view.cont_visual .swiper-button-next::after,
  3481. .br_lookbook_view.cont_visual .swiper-button-prev::after {filter:invert(100%);}
  3482. .br_lookbook_view.cont_txts {margin-bottom:120px;pointer-events: none;}
  3483. .br_lookbook_view.cont_txts .text_cont {display: none;color:#666; font-size:16px; font-weight:200; line-height:26px; background: #ffffff; pointer-events: none;}
  3484. .br_lookbook_view.cont_txts .text_cont.active { display:block;}
  3485. .content.br_lookbook_view.cont_items {padding-top:120px; padding-bottom:120px; background:#f5f5f5;}
  3486. .br_lookbook_view.cont_items .cont_head h3 {margin-bottom:40px; color:#222; font-size:24px; font-weight:500;}
  3487. .br_lookbook_view.cont_items .cont_head h3 span.number {margin-left:4px; color:#888; font-weight:200;}
  3488. .br_lookbook_view.cont_items .cont_head .btn {position:absolute; right:0; bottom:0; padding:13px 24px; font-size:14px; font-weight:300; height:42px;}
  3489. .br_lookbook_view.cont_items .cont_head .btn span {display:inline-block; line-height:1;}
  3490. .br_lookbook_view.cont_items .ioTit {display:none;}
  3491. .br_lookbook_view.cont_items .ioTit.active {display: block;}
  3492. .br_lookbook_view.cont_items .items_outside {background: #f5f5f5;}
  3493. .br_lookbook_view.cont_items .items_inside {background: #f5f5f5;}
  3494. .br_lookbook_view.cont_items .items_outside .itemsOut {display: none;}
  3495. .br_lookbook_view.cont_items .items_outside .itemsOut.active {display: block;}
  3496. .br_lookbook_view.cont_items .area_slider {position:relative; width:100%; box-sizing:border-box;}
  3497. .br_lookbook_view.cont_items .area_slider .swiper-wrapper {padding-bottom:60px;}
  3498. .br_lookbook_view.cont_items .area_slider .swiper-container .item_prod {width:100%;}
  3499. .br_lookbook_view.cont_items .area_slider .swiper-container .item_prod .item_state {padding:0}
  3500. .br_lookbook_view.cont_items .area_slider .swiper-scrollbar {background:#ddd;}
  3501. .br_lookbook_view.cont_items .area_slider .swiper-scrollbar-drag {border-radius:0; background:#222;}
  3502. .br_lookbook_view.cont_items .area_slider .swiper-container-horizontal>.swiper-scrollbar {position:relative; left:auto; right:auto; bottom:auto; width:100%; height:2px; opacity: 1 !important;}
  3503. .content.br_lookbook_view.cont_others {padding-top:160px;}
  3504. .br_lookbook_view.cont_others .cont_head {margin-left:70px; margin-right:70px;}
  3505. .br_lookbook_view.cont_others .cont_head button {position:absolute; right:0; bottom:0; padding:0 17px 0 0; color:#888; font-size:18px; font-weight:300; background:url('//image.istyle24.com/Style24/images/pc/ico_more_lg.png') no-repeat 100% 50%;}
  3506. .br_lookbook_view.cont_others .cont_head button span {display:inline-block; line-height:1;}
  3507. .br_lookbook_view.cont_others .cont_body {position:relative; padding-left:70px; padding-right:70px;}
  3508. .br_lookbook_view.cont_others .swiper-slide a {display:block;}
  3509. .br_lookbook_view.cont_others .swiper-slide a .thumb {display:block; position:relative; width:100%; height:0; padding-top:100%; background:#f5f5f5;overflow:hidden;}
  3510. .br_lookbook_view.cont_others .swiper-slide a .thumb img {position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%; z-index:1;}
  3511. .br_lookbook_view.cont_others .swiper-slide a .txt {margin-top:10px; padding:0px 5px 0px;}
  3512. .br_lookbook_view.cont_others .swiper-slide a .txt .title {display:block; display: -webkit-box; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; height:56px; line-height:28px; color:#222; font-weight:500; font-size:18px; word-break:keep-all; white-space:normal;}
  3513. /* my */
  3514. .container.my .wrap .content {max-width:1460px; margin-bottom:160px; padding-left:0; padding-right:0;}
  3515. .my div:after,
  3516. .my ul::after {content:''; clear:both; display:block;}
  3517. .my button span {line-height:1;}
  3518. .my .form_field input[type="radio"] + label,
  3519. .my .form_field input[type="checkbox"] + label {padding-left:30px; line-height:1; color:#222; font-size:16px; font-weight:200;}
  3520. .my .form_field input[type="radio"] + label:before,
  3521. .my .form_field input[type="radio"]:checked + label:after,
  3522. .my .form_field input[type="checkbox"] + label:before,
  3523. .my .form_field input[type="checkbox"]:checked + label:after,
  3524. .my .form_field input[type="checkbox"]:disabled + label:after {top:50%; transform:translateY(-50%);}
  3525. .my .input_wrap .form_control {height:42px; font-size:14px; padding-left:18px;}
  3526. .my .sec_head {position:relative;}
  3527. .my .sec_foot .ui_row {margin-top:40px; margin-bottom:0;}
  3528. .my .check_notice {display:block; width:100%; margin-top:20px; padding:20px 30px; background-color:#fff6f2;}
  3529. .my .check_notice p {margin-top:10px; padding-left:20px; color:#222; font-size:14px; font-weight:300; line-height:1; background:url('//image.istyle24.com/Style24/images/pc/ico_primary_check.png') no-repeat 0 50%;}
  3530. .my .check_notice p:first-child {margin-top:0;}
  3531. .my .txt_info {margin-top:20px; color:#888; font-size:14px; font-weight:200;}
  3532. .my .txt_info ul li {position:relative; padding-left:10px; margin-top:5px;}
  3533. .my .txt_info ul li::before {content:''; position:absolute; left:0; top:50%; margin-top:-1px; width:2px; height:2px; background:#888;}
  3534. .my .txt_info ul li:first-child {margin-top:0;}
  3535. .my .tbl.type1 {padding-top:20px; padding-bottom:20px;}
  3536. .my .tbl.type1 th,
  3537. .my .tbl.type1 td {padding-top:7px; padding-bottom:7px; line-height:1.625;}
  3538. .my .highlight_area {margin-bottom:60px; background:#fff6f2; padding:60px; text-align:center;}
  3539. .my .info_footer_area {padding:30px; margin-top:60px; text-align:center; background:#fff6f2; color:#222; font-size:18px; font-weight:300;}
  3540. .my .info_footer_area > p > span {color:#fd4802;}
  3541. .my .btn_footer_area {margin-top:60px; text-align:center;}
  3542. .my .btn_footer_area .btn.btn_default {border-color:#a7a7a7;}
  3543. .my .btn_footer_area .btn.btn_md {width:220px; height:60px; margin-left:10px; padding-top:21px; padding-bottom:21px;}
  3544. .my .btn_footer_area .btn.btn_md:first-child {margin-left:0;}
  3545. /* my_나의등급 정보*/
  3546. .my .my_information .name_box {margin-bottom:40px; color:#666666; font-size:30px; font-weight:200;}
  3547. .my .my_information .name_box strong {color:#000;}
  3548. .my .my_information .property_box {display:block; padding:40px; background:#f5f5f5;}
  3549. .my .my_information .property_box .level {float:left; position:relative; height:60px; padding-left:76px;}
  3550. .my .my_information .property_box .level::before {content:'N'; position:absolute; left:0; top:0; width:60px; height:60px; border-radius:50%; background:#fff; color:#222; font-size:24px; font-weight:700; text-align:center; line-height:65px;}
  3551. .my .my_information .property_box .level.lv_vip::before {content:'V'; background:#fd4802;; color:#fff;}
  3552. .my .my_information .property_box .level.lv_gold::before {content:'G'; background:#cc9d4d; color:#fff;}
  3553. .my .my_information .property_box .level.lv_silver::before {content:'S'; background:#888; color:#fff;}
  3554. .my .my_information .property_box .level.lv_bronze::before {content:'B'; background:#bf966d; color:#fff;}
  3555. .my .my_information .property_box .level.lv_welcome::before {content:'W'; background:#222; color:#fff;}
  3556. .my .my_information .property_box .level .txt {color:#222; font-size:36px; font-weight:500;}
  3557. .my .my_information .property_box .level .btn_level {margin-top:10px;}
  3558. .my .my_information .property_box .level .btn_level a,
  3559. .my .my_information .property_box .level .btn_level button {display:inline-block; margin-right:20px; padding-right:15px; background:url('//image.istyle24.com/Style24/images/pc/ico_more_sm.png') no-repeat 100% 0px; color:#888; font-size:14px; font-weight:200; line-height:1 !important;}
  3560. .my .my_information .property_box .property {float:right; padding:5px 0 3px;}
  3561. .my .my_information .property_box .property ul li {float:left; position:relative; padding:0px 40px;}
  3562. .my .my_information .property_box .property ul li::before {content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); height:46px; border-left:1px solid #ddd;}
  3563. .my .my_information .property_box .property ul li:last-child {padding-right:0;}
  3564. .my .my_information .property_box .property ul li:last-child::before {display:none;}
  3565. .my .my_information .property_box .property ul li > div {min-width:120px;}
  3566. .my .my_information .property_box .property .txt {color:#888; font-size:16px; font-weight:300;}
  3567. .my .my_information .property_box .property .count {margin-top:14px; color:#222; font-size:21px; font-weight:500;}
  3568. .my .my_information .property_box .property .count span {font-size:22px;}
  3569. /* my_배송현황*/
  3570. .my .my_order_progress {border-top:1px solid #222; border-bottom:1px solid #ddd;}
  3571. .my .my_order_progress .txt {color:#888; font-size:16px; font-weight:300; text-align:center;}
  3572. .my .my_order_progress .count {margin-top:14px; color:#222; font-weight:500; text-align:center;}
  3573. .my .my_order_progress .count span {font-size:24px;}
  3574. .my .my_order_progress .progress {float:left; width:80%; padding:40px 0;}
  3575. .my .my_order_progress .progress ul {display:inline-block; width:100%;}
  3576. .my .my_order_progress .progress ul li {float:left; position:relative; width:calc((100% - 60px) / 6); margin-right:12px;}
  3577. .my .my_order_progress .progress ul li::after {content:''; position:absolute; top:50%; right:-12px; width:12px; height:23px; background:url(//image.istyle24.com/Style24/images/pc/ico_myinfo_arrow.png) no-repeat center; transform:translateY(-50%);}
  3578. .my .my_order_progress .progress ul li:first-child {margin-left:-1px;}
  3579. .my .my_order_progress .progress ul li:last-child {margin-right:0;}
  3580. .my .my_order_progress .progress ul li:last-child::after {display:none;}
  3581. .my .my_order_progress .progress ul li div {width:100%;}
  3582. .my .my_order_progress .invalid {float:right; width:16.6666%; padding:40px 0; position:relative;}
  3583. .my .my_order_progress .invalid::after {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); height:48px; border-left:1px solid #ddd;}
  3584. /* my_리스트정렬필터 */
  3585. .my .area_filter .select_month_box {float:left;}
  3586. .my .area_filter .select_month_box .form_field input[type="radio"] + label {display:block; width:106px; height:42px; padding-left:0; padding-top:12px; border:1px solid #ddd; border-left:none; color:#222; font-size:14px; text-align:center;}
  3587. .my .area_filter .select_month_box .form_field input[type="radio"]:checked + label {margin-left:-1px; color:#fd4802; border-color:#fd4802; border-left:1px solid #fd4802;}
  3588. .my .area_filter .select_month_box .form_field div:first-child input[type="radio"] + label {border-left:1px solid #ddd;}
  3589. .my .area_filter .select_month_box .form_field div:first-child input[type="radio"]:checked + label {border-left:1px solid #fd4802;}
  3590. .my .area_filter .select_month_box .form_field input[type="radio"] + label::before,
  3591. .my .area_filter .select_month_box .form_field input[type="radio"] + label::after,
  3592. .my .area_filter .select_month_box .form_field input[type="radio"]:checked + label::before,
  3593. .my .area_filter .select_month_box .form_field input[type="radio"]:checked + label::after {display:none;}
  3594. .my .area_filter .select_period_box {float:left; margin-left:20px;}
  3595. .my .area_filter .select_period_box .form_field {display:block; float:left; width:150px;}
  3596. .my .area_filter .select_period_box .form_field:first-child {margin-right:23px !important;}
  3597. .my .area_filter .select_period_box .form_field:first-child::after {content:'~'; position:absolute; right:-15px; top:50%; transform:translateY(-50%); color:#222; font-size:16px;}
  3598. .my .area_filter .select_period_box .form_field .input_wrap {display:block; width:100%;}
  3599. .my .area_filter .select_period_box .form_field .input_wrap .form_control {width:100%; height:42px; padding:15px 35px 15px 20px; background:url('//image.istyle24.com/Style24/images/pc/ico_calendar_selector.png') no-repeat 118px 50%; color:#222; font-size:14px; font-weight:200; line-height:1;}
  3600. .my .area_filter .select_period_box .btn {float:left; width:70px; height:42px; margin-left:10px; text-align:center; font-size:14px;}
  3601. .my .area_filter .select_status_box {float:right; width:180px;}
  3602. .my .area_filter .select_status_box .select_custom {height:42px;}
  3603. .my .area_filter .select_status_box .select_custom .combo .select {height:42px; padding:14px 20px; color:#666; font-size:14px;}
  3604. .my .area_filter .select_status_box .select_custom .combo .list > li {padding:0 20px; color:#666; font-size:14px;}
  3605. /* my_myOrderList : 주문,취소,교환,반품 리스트 */
  3606. .myOrderList .sec_head {margin-bottom:80px;}
  3607. .myOrderList .sec_body h3 {margin-bottom:40px;}
  3608. .myOrderList .area_list {margin-top:24px;}
  3609. .myOrderList .part_goods {margin-top:40px;}
  3610. .myOrderList .part_goods:first-child {margin-top:0;}
  3611. .myOrderList .my_information + .my_order_progress {border-top:none;}
  3612. /* my_myOrderList.non : 비회원 주문,취소,교환,반품 리스트 */
  3613. .myOrderList.non .lnb .lnb_list ul li:nth-child(n+3){display: none;}
  3614. /* my_myOrderView : 주문,취소,교환,반품 상세보기 */
  3615. .myOrderView .sec_head {margin-bottom:40px;}
  3616. .myOrderView .sec_head h3 {float:left; margin-bottom:0;}
  3617. .myOrderView .sec_head .order_number {float:left; margin-left:20px; margin-top:8px; color:#666; font-size:20px; font-weight:200;}
  3618. .myOrderView .sec_head button {float:left; margin-left:15px; margin-top:11px; font-size:14px; color:#222;}
  3619. .myOrderView h4.subH3 {margin-top:60px; margin-bottom:20px;}
  3620. .myOrderView h4.subH3 .tit_info {display:inline-block; margin-left:10px; color:#888; font-size:14px; font-weight:200;}
  3621. .myOrderView .tbl table td .tag {margin-left:6px; margin-top:2px; vertical-align:top;}
  3622. .myOrderView .tbl table td button {margin-left:10px;}
  3623. .myOrderView .tbl table td .btn.btn_sm {height:34px; margin-top:-6px; padding:10px 14px; font-size:14px; font-weight:200;}
  3624. .myOrderView .tbl table td .btn.btn_sm.btn_default {color:#222; border:1px solid #a7a7a7;}
  3625. .myOrderView .tbl table td .select_custom {color:#666; font-size:14px;}
  3626. .myOrderView .tbl table td .select_custom .combo {min-width:400px; width:auto;}
  3627. .myOrderView .tbl table td .select_custom .combo .select {height:42px; padding:14px 15px; color:#666; font-size:14px;}
  3628. .myOrderView .tbl table td .select_custom .combo .list > li {padding:0 15px;}
  3629. .myOrderView .tbl table td .input_wrap {width:100%;}
  3630. .myOrderView .tbl table td .input_wrap textarea {width:100%; height:82px; padding:14px 15px; font-size:14px; color:#222;}
  3631. .myOrderView .tbl table td .input_wrap .txt_cnt {margin-top:10px;}
  3632. .myOrderView .tbl table td .block_line ul li:nth-of-type(3) > span {vertical-align:top; display:inline-block; max-width:calc(100% - 135px); width:auto;}
  3633. .myOrderView .tbl.type1 table tr:nth-of-type(3) td:last-child > span {display:inline-block; width:auto; max-width:calc(100% - 135px); vertical-align:top;}
  3634. .myOrderView .tbl.type6 {position: relative;}
  3635. .myOrderView .tbl.type6 table + p {position: absolute;top: auto;bottom: -25px;left: 0;right: auto;}
  3636. .myOrderView .retrieve_method .form_field > div {margin-right:30px;}
  3637. .myOrderView .retrieve_method .form_field span {color:#222; font-size:16px; font-weight:200;}
  3638. .myOrderView .retrieve_method .form_field span em {margin-left:5px; color:#fd4802; font-size:14px;}
  3639. .myOrderView .retrieve_box.direct .tbl table th,
  3640. .myOrderView .retrieve_box.direct .tbl table td {vertical-align:middle;}
  3641. .myOrderView .retrieve_box.direct .input_wrap .form_control {width:400px; padding-left:18px;}
  3642. /* my_restock : 재입고 알림내역 */
  3643. .my .restock .area_list {margin-top:60px;}
  3644. .my .restock .area_list .part_goods {border:none; border-bottom:1px solid #ddd;}
  3645. .my .restock .area_list .part_goods:first-child {border-top:1px solid #222;}
  3646. .my .restock .area_list .part_goods .goods_cont .goods_info .order_desc .goods_box {vertical-align:middle;}
  3647. .my .restock .area_list .part_goods .goods_cont .goods_info .order_desc .goods_box .gd_item {position:static;}
  3648. .my .restock .area_list .part_goods .goods_cont .goods_info .order_desc .goods_box .gd_item .thumb {left:0;}
  3649. .my .restock .area_list .part_goods .goods_info .order_desc .status_box {width:160px;}
  3650. /* my_myReviewList : 내 리뷰 리스트 */
  3651. .my .myReviewList .check_notice p::after {content:''; display:block; clear:both;}
  3652. .my .myReviewList .check_notice a {float:right; display:inline; padding-right:14px; color:#222; font-size:14px; background:url('//image.istyle24.com/Style24/images/pc/ico_ft_arrow.png') no-repeat 98% 0px;}
  3653. .my .myReviewList .taps {margin-top:60px; margin-bottom:40px;}
  3654. .my .myReviewList .area_list {margin-top:60px;}
  3655. .my .myReviewList .area_list .part_goods {border:none; border-bottom:1px solid #ddd;}
  3656. .my .myReviewList .area_list .part_goods:first-child {border-top:1px solid #222;}
  3657. .my .myReviewList .area_list .part_goods .goods_cont .goods_info .order_desc .goods_box {vertical-align:middle;}
  3658. .my .myReviewList .area_list .part_goods .goods_cont .goods_info .order_desc .goods_box .gd_item {position:static;}
  3659. .my .myReviewList .area_list .part_goods .goods_cont .goods_info .order_desc .goods_box .gd_item .thumb {left:0;}
  3660. .my .myReviewList .area_list .part_goods .goods_info .order_desc .status_box {width:160px;}
  3661. /* my_myReviewWrite : 리뷰작성 */
  3662. .my .myReviewWrite h4 {margin-top:60px; margin-bottom:20px;}
  3663. .my .myReviewWrite th,
  3664. .my .myReviewWrite td {vertical-align:top;}
  3665. .my .myReviewWrite .part_goods {border:none; border-top:1px solid #222; border-bottom:1px solid #ddd;}
  3666. .my .myReviewWrite .part_goods .goods_cont .goods_info .order_desc .goods_box {vertical-align:middle;}
  3667. .my .myReviewWrite .part_goods .goods_cont .goods_info .order_desc .goods_box .gd_item {position:static;}
  3668. .my .myReviewWrite .part_goods .goods_cont .goods_info .order_desc .goods_box .gd_item .thumb {left:0;}
  3669. .my .myReviewWrite .input_starscore button {display: inline-block; width: 25px; height: 25px; text-decoration: none; background: url(//image.istyle24.com/Style24/images/pc/ico_star01.png) no-repeat center;}
  3670. .my .myReviewWrite .input_starscore button.on {background: url(//image.istyle24.com/Style24/images/pc/ico_star02.png) no-repeat center;}
  3671. .my .myReviewWrite .input_starscore span {display: inline-block; width: 15px; height: 15px; text-decoration: none; background: url(//image.istyle24.com/Style24/images/pc/ico_star01.png) no-repeat center/cover;}
  3672. .my .myReviewWrite .input_starscore span.on {background: url(//image.istyle24.com/Style24/images/pc/ico_star02.png) no-repeat center/cover;}
  3673. .my .myReviewWrite .input_simple_review .form_field > div {min-width:110px;}
  3674. .my .myReviewWrite .input_txt_review {position:relative;}
  3675. .my .myReviewWrite .input_txt_review .input_wrap {width:100%;}
  3676. .my .myReviewWrite .input_txt_review .input_wrap textarea {width:100%; padding:20px; color:#222; font-size:14px;}
  3677. .my .myReviewWrite .input_my_physical .form_control {min-width:220px; padding-right:50px;}
  3678. .my .myReviewWrite .input_my_physical .unit {position:absolute; right:10px; top:50%; transform:translateY(-50%); color:#222; font-size:14px; font-weight:200;}
  3679. .my .myReviewWrite .fileAdd,
  3680. .my .myReviewWrite .pics{width:86px; height:86px;}
  3681. .my .myReviewWrite .pics .picsThumbs{max-height: 84px; max-width: 84px;}
  3682. /* my_myAddressList : 배송지 관리 */
  3683. .my .myAddressList h4.subH3 {margin-bottom:20px;}
  3684. .my .myAddressList .tbl.type1 {padding:0;}
  3685. .my .myAddressList .tbl.type1 th,
  3686. .my .myAddressList .tbl.type1 td {vertical-align:middle;}
  3687. .myAddressList .tbl.type1 table th,
  3688. .myAddressList .tbl.type1 table td {padding-top:30px; padding-bottom:30px; border-top:1px solid #ddd;}
  3689. .myAddressList .tbl.type1 table tr:first-child th,
  3690. .myAddressList .tbl.type1 table tr:first-child td {border-top:none;}
  3691. .myAddressList .tbl.type1 table td .block_line button {margin-left:10px;}
  3692. .myAddressList .tbl.type1 table td .button_box p {margin-top:10px;}
  3693. .myAddressList .tbl.type1 table td .button_box p:first-child {margin-top:0;}
  3694. .myAddressList .tbl.type1 table td .button_box .btn {display:block; width:100%; height:42px; padding:14px; font-size:14px;}
  3695. .myAddressList .tbl.type1 table td .button_box .btn span {line-height:1;}
  3696. .myAddressList .addrs_default {background:#fff6f2;}
  3697. .myAddressList .phone_number {font-weight:300;}
  3698. /* my_myManageEntry : 내 정보 관리 - 비밀번호 확인 */
  3699. .my .myManageEntry .sec_head .text {margin-top:15px; color:#222; font-size:16px; font-weight:200;}
  3700. .my .myManageEntry input[type="text"],
  3701. .my .myManageEntry input[type="password"] {width:400px;}
  3702. .my .myManageEntry .tbl th,
  3703. .my .myManageEntry .tbl td {vertical-align:middle;}
  3704. /* my_myManageEntry : 내 정보 관리 */
  3705. .my .myManage .btn.btn_sm {height:34px; margin-top:-6px; padding:10px 14px; font-size:14px; font-weight:200;}
  3706. .my .myManage .btn.btn_sm span {vertical-align:top;}
  3707. .my .myManage h4.subH3 {margin-bottom:20px;}
  3708. .my .myManage h4.subH3 .tit_info {display:inline-block; margin-left:10px; color:#888; font-size:14px; font-weight:200;}
  3709. .my .myManage .select_custom .combo .list {max-height:200px;}
  3710. .my .myManage .modify_box {position:relative; margin-top:60px;}
  3711. .my .myManage .modify_box:first-child {margin-top:0;}
  3712. .my .myManage .modify_box h4.subH3 + .btn.btn_sm {position:absolute; right:0; top:0;}
  3713. .my .myManage .modify_box .btn_underline {display:inline-block; margin-left:10px; padding:0px; border-bottom-color:#888;}
  3714. .my .myManage .modify_box .btn_underline span {color:#888; font-size:12px;}
  3715. .my .myManage .modify_box table th span {display:inline-block; padding:13px 0; line-height:1; vertical-align:top;}
  3716. .my .myManage .modify_box table .btn {height:42px; padding-left:0; padding-right:0; text-align:center;}
  3717. .my .myManage .modify_box table .btn.btn_primary_line {font-weight:200; width:100px;}
  3718. .my .myManage .modify_box .form_field {max-width:400px;}
  3719. .my .myManage .modify_box .form_field .input_wrap {display:block; width:100%;}
  3720. .my .myManage .modify_box .form_field .input_wrap + .btn {display:table-cell; width:95px; font-weight:300; font-size:14px;}
  3721. .my .myManage .modify_box .form_field .form_control {float:none; display:block; width:100%}
  3722. .my .myManage .modify_box .form_field + .txt_info {margin-top:10px;}
  3723. .my .myManage .modify_box .form_field input[type="checkbox"] + label {margin-right:40px;}
  3724. .my .myManage .modify_box .help_block {text-indent:0;}
  3725. .my .myManage .modify_box .help_block p span {position:relative; padding-left:20px; font-size:14px;}
  3726. .my .myManage .modify_box .help_block p span.t_err {padding-left:22px;}
  3727. .my .myManage .modify_box .help_block p span.t_err::before {position:absolute; top:50%; transform:translateY(-50%);}
  3728. .my .myManage .modify_box .help_block p span .ico {position:absolute; left:0; top:50%; transform:translateY(-50%); width:10px; height:8px;}
  3729. .my .myManage .modify_box .help_block p span .ico::before {vertical-align:top;}
  3730. /* my_myMbLeave : 회원탈퇴 */
  3731. .my .myMbLeave h4.subH3 {margin-bottom:20px;}
  3732. .my .myMbLeave .tbl {margin-bottom:60px;}
  3733. .my .myMbLeave .tbl th,
  3734. .my .myMbLeave .tbl td {vertical-align:middle;}
  3735. .my .myMbLeave .form_control {width:400px;}
  3736. .my .myMbLeave .mb_leave_complete {text-align:center; margin-bottom:60px; color:#222; font-size:24px; font-weight:500;}
  3737. .my .myMbLeave .mb_leave_incomplete .txt_primary {color:#fd4802; font-size:18px; font-weight:500;}
  3738. .my .myMbLeave .mb_leave_incomplete .txt_sub {margin-top:20px; color:#666; font-size:16px;}
  3739. .my .myMbLeave .com_info_txt .check_box {margin-top:30px; padding-top:30px; border-top:1px solid #dcdcdc;}
  3740. .my .myMbLeave .com_info_txt .check_box span {color:#858585; font-weight:200;}
  3741. .my .myMbLeave .hold_order .on {color:#fd4802;}
  3742. /* my_포인트, 상품권 공통 */
  3743. .my .have_amount .total_amount {color:#222; font-size:30px; font-weight:500;}
  3744. .my .have_amount .total_amount span {color:#fd4802; font-weight:500;}
  3745. .my .have_amount .total_amount span em {font-size:36px; font-weight:700;}
  3746. .my .have_amount dl {display:inline-block; margin-top:20px; font-size:14px; font-weight:300;}
  3747. .my .have_amount dl::after {content:''; clear:both; display:block;}
  3748. .my .have_amount dl div {float:left; position:relative; height:14px; padding:0px 20px;}
  3749. .my .have_amount dl div::before {content:''; position:absolute; width:1px; height:14px; left:0px; top:50%; transform:translateY(-50%); background:#ddd;}
  3750. .my .have_amount dl div:first-child::before {display:none;}
  3751. .my .have_amount dl div > * {vertical-align:middle;}
  3752. .my .have_amount dl div dt {float:left; color:#666;}
  3753. .my .have_amount dl div dt .tag {margin-top:-4px; margin-right:10px;}
  3754. .my .have_amount dl div dd {float:left; margin-left:10px; color:#222;}
  3755. .my .have_amount dl div dd:after { content: ""; display: inline-block; height: 0.8em; }
  3756. .my .content_area {position:relative;}
  3757. .my .content_area .taps {margin-bottom:40px;}
  3758. .my .content_area .select_box {position:absolute; right:0; top:-10px; width:180px;}
  3759. .my .content_area .select_box .select_custom {height:42px;}
  3760. .my .content_area .select_box .select_custom .combo .select {height:42px; padding:14px 20px; color:#666; font-size:14px;}
  3761. .my .content_area .select_box .select_custom .combo .list > li {padding:0 20px; color:#666; font-size:14px;}
  3762. .my .content_area .list_box .tbl th,
  3763. .my .content_area .list_box .tbl td {vertical-align:middle;}
  3764. .my .content_area .list_box .tbl td .txt_content {padding-left:40px; text-align:left;}
  3765. .my .content_area .list_box .tbl td .amount_minus {color:#222;}
  3766. .my .content_area .list_box .tbl td .amount_plus {color:#fd4802;}
  3767. /* my_myPoint : STYLE 포인트 */
  3768. /* my_myVoucher : 상품권 */
  3769. .my .myVoucher .input_area {display:block; width:605px; margin:50px auto 0;}
  3770. .my .myVoucher .input_area .input_label {display:inline-block; width:124px; color:#222; font-size:18px; font-weight:500; line-height:1;}
  3771. .my .myVoucher .input_area .input_label span {display:inline-block; margin-top:12px;}
  3772. .my .myVoucher .input_area .input_wrap .form_control {width:400px;}
  3773. .my .myVoucher .input_area .input_wrap + .btn {width:70px; height:42px; padding-left:0; padding-right:0; text-align:center; font-size:14px; font-weight:300;}
  3774. .my .myVoucher .com_info_txt {margin-top:50px;}
  3775. .my .myVoucher .content_area {margin-top:60px;}
  3776. .my .myVoucher .content_area .voucher_list::after {content:''; clear:both; display:block;}
  3777. .my .myVoucher .content_area .voucher_list ul {margin-top:-20px;}
  3778. .my .myVoucher .content_area .voucher_list li {float:left; width:calc((100% - 40px) * 0.33333); margin-left:20px; margin-top:20px;}
  3779. .my .myVoucher .content_area .voucher_list li:nth-child(3n-2) {margin-left:0;}
  3780. /* my_myCoupon : 쿠폰 */
  3781. .my .myCoupon .content_area {margin-top:60px;}
  3782. .my .myCoupon .content_area .coupon_list::after {content:''; clear:both; display:block;}
  3783. .my .myCoupon .content_area .coupon_list ul {margin-top:-20px;}
  3784. .my .myCoupon .content_area .coupon_list li {float:left; width:calc(25% - 15px); margin-left:20px; margin-top:20px;}
  3785. .my .myCoupon .content_area .coupon_list li:nth-child(4n-3) {margin-left:0;}
  3786. /* my_myWishlist : 위시리스트 */
  3787. .my .myWishlist .monthly_wish_wrap {margin-top:50px;}
  3788. .my .myWishlist .monthly_wish_wrap:first-child {margin-top:0;}
  3789. .my .myWishlist .monthly_wish_wrap .itemsGrp {margin-left:-10px; margin-right:-10px;}
  3790. .my .myWishlist .monthly_wish_wrap .itemsGrp .item_prod {width:25%;}
  3791. .my .myWishlist .monthly_wish_wrap .itemsGrp .item_prod .item_state {padding-bottom:50px;}
  3792. .my .myWishlist .monthly_wish_wrap .date {display:block; position:relative; width:100%; height:0; margin-bottom:60px; border-top:1px solid #ddd;}
  3793. .my .myWishlist .monthly_wish_wrap .date span {display:inline-block; position:absolute; left:50%; top:50%; transform:translate(-50%, -50%); width:130px; height:40px; padding:10px 0 0; background-color:#222; color:#fff; font-size:24px; font-weight:300; text-align:center; border-radius:20px; overflow:hidden;}
  3794. /* ev_공통 */
  3795. .ev .wrap {padding-bottom:160px;}
  3796. .ev .cont_body {position:relative;}
  3797. .ev div::after,
  3798. .ev dl::after,
  3799. .ev ul::after {content:''; clear:both; display:block;}
  3800. .ev .inner {width: 1200px; margin:0 auto;} /* 주의 */
  3801. .ev .icon {position: relative; width: 80px; height: 80px; border-radius: 50%; margin-bottom: 15px; color: #fff; border:2px solid transparent;}
  3802. .ev .icon > span {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); margin-top:2px; font-size: 32px; font-weight: 700; color: #fff;}
  3803. .ev .icon + span {font-size: 16px; color: #666; font-weight:500;}
  3804. .ev .icon.vip {background: #fd4802;}
  3805. .ev .icon.gold {background: #cc9d4d;}
  3806. .ev .icon.silver {background: #888;}
  3807. .ev .icon.bronze {background: #bf966d;}
  3808. .ev .icon.welcome {background: #222222;}
  3809. .ev .cont_head > div {position:relative;}
  3810. .ev .cont_head > div .period {position:absolute; left:50%; bottom:40px; transform:translateX(-50%); font-size:14px; font-weight:300; color:#888; text-align:center;}
  3811. .ev .cont_head > div h2 {text-align:center; margin-bottom:0px; padding-bottom:60px;}
  3812. .ev .cont_head > div h3 {text-align:center; margin-bottom:0; padding-bottom:80px; font-size:40px;}
  3813. .ev .cont_head > div h4 {text-align:center; margin-bottom:60px; color:#222; font-size:30px; font-weight:500;}
  3814. .ev .event_banner {position: relative; width: 100%;}
  3815. .ev .event_banner img {position:relative; left:50%; transform:translateX(-50%);}
  3816. .ev .btn_wrap {margin-top:60px; margin-bottom:0; text-align:center;}
  3817. .ev .btn_wrap .btn {min-width:220px; height:60px; font-size:18px; font-weight:300; line-height:normal;}
  3818. .ev .btn_wrap .btn.go_next span {display:inline-block; padding-right:20px; background:url('//image.istyle24.com/Style24/images/pc/ico_bread_root_w.png') no-repeat 100% 50%;}
  3819. .ev .form_field input[type="radio"] + label,
  3820. .ev .form_field input[type="checkbox"] + label {padding-left:30px; color:#222; font-size:16px; font-weight:200; line-height:1; vertical-align: top;}
  3821. .ev .form_field input[type="radio"] + label:before,
  3822. .ev .form_field input[type="radio"]:checked + label:after,
  3823. .ev .form_field input[type="checkbox"] + label:before,
  3824. .ev .form_field input[type="checkbox"]:checked + label:after {top:50%; transform:translateY(-50%);}
  3825. /* ev 다른 이벤트 보기 슬라이드 */
  3826. .ev .other_ev_slide {margin-top:160px; padding:0 140px!important;}
  3827. .ev .other_ev_slide .cont_head {position:relative; margin-bottom:60px;}
  3828. .ev .other_ev_slide .cont_head h4 {position:relative; margin-bottom:0;}
  3829. .ev .other_ev_slide .cont_head a {position:absolute; top: 50%; right: 0; transform:translateY(-50%); padding-right: 20px; background: url('//image.istyle24.com/Style24/images/pc/ico_more_lg.png') no-repeat right top 1px; font-size: 18px; color:#888;}
  3830. .ev .other_ev_slide .cont_body {position:relative;}
  3831. .ev .other_ev_slide .swiper-button-next {right:-70px; margin-top:-55px;}
  3832. .ev .other_ev_slide .swiper-button-prev {left:-70px; margin-top:-55px;}
  3833. .ev .other_ev_slide .thumb {margin-bottom: 22px; position: relative; width: 100%; height: auto; padding-top: 100%;}
  3834. .ev .other_ev_slide .thumb img {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); width: 100%; height: auto;}
  3835. .ev .other_ev_slide .brand {display: inline-block; font-size: 12px; color:#888; font-weight: 300;}
  3836. .ev .other_ev_slide .txt {margin:0 6px;}
  3837. .ev .other_ev_slide .txt .tit {display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin: 20px 0 0; min-height:50px; max-height:50px; overflow: hidden; text-overflow: ellipsis; font-size: 18px; line-height: 1.5; color: #222; font-weight: 300; word-break: keep-all;}
  3838. /* ev_list 이벤트 리스트*/
  3839. .ev_list .area_top_list_info .ui_right .btn {height:40px; padding:12px 20px; font-size:14px; font-weight:300; border:1px solid #a7a7a7;}
  3840. .ev_list .area_top_list_info .ui_right .btn span {display:inline-block; padding-right:17px; vertical-align:top; line-height:1; background:url('//image.istyle24.com/Style24/images/pc/ico_more_sm.png') no-repeat 100% 50%;}
  3841. .ev_list .ev_mem_rank {position:relative; background:#f5f5f5; padding:60px 100px; margin-top:60px; margin-bottom:100px;}
  3842. .ev_list .ev_mem_rank .txt {float:left; display:inline;}
  3843. .ev_list .ev_mem_rank .txt strong {display:block; font-size: 20px; font-weight: 700;}
  3844. .ev_list .ev_mem_rank .txt p {font-size:30px; line-height:40px; color:#666; margin:10px 0 25px;}
  3845. .ev_list .ev_mem_rank .txt .btn {width:152px; height:42px; font-size:14px; font-weight:300; padding:14px 10px 0; line-height:1;}
  3846. .ev_list .ev_mem_rank .mem_rank_list {float:right; margin-top:30px; margin-right:60px;}
  3847. .ev_list .ev_mem_rank .mem_rank_list ul li {float:left; text-align: center; margin-left: 40px;}
  3848. .ev_list .ev_mem_rank .mem_rank_list ul li:first-child {margin-right:0;}
  3849. @media screen and (max-width:1459px) {
  3850. .ev_list .ev_mem_rank {padding-left:70px; padding-right:70px;}
  3851. }
  3852. /* ev_renew 설문조사 참여이벤트 preview */
  3853. .renew .announce_txt {margin-top:80px; padding-top:60px;}
  3854. .renew .announce_txt:before {content:''; position:absolute; top:0; left:-190px; right:-190px; height: 1px; background: #ddd;}
  3855. /* ev_renew 설문조사 참여이벤트 write */
  3856. .ev .survey {margin-bottom:-160px;}
  3857. .survey .input_wrap {width:100%;}
  3858. .survey .survey_wrap {background:#f5f5f5; padding:60px 0 160px;}
  3859. .survey .survey_wrap .survey_con {width: 740px; margin:0 auto; padding-top:20px; padding-bottom:60px; background: #fff; border-top: 3px solid #fe7f4d; box-shadow: 0px 4px 21px 0px rgba(0, 0, 0, 0.1);}
  3860. .survey .survey_wrap .survey_con .survey_row {padding:60px; border-top: 1px solid #ddd;}
  3861. .survey .survey_wrap .survey_con .survey_row:first-child {border-top:none;}
  3862. .survey .survey_wrap .survey_con .survey_row h4 {position:relative; margin:0; padding-left:40px; padding-right:60px; font-size:18px; font-weight: 300; line-height:28px; word-break:keep-all;}
  3863. .survey .survey_wrap .survey_con .survey_row h4 .question {position:absolute; top:0; left:0; font-weight:500;}
  3864. .survey .survey_wrap .survey_con .survey_row .answer {margin-top:25px;}
  3865. .survey .survey_wrap .survey_con .survey_row .answer textarea,
  3866. .survey .survey_wrap .survey_con .survey_row .answer input[type='text'] {width:100%;}
  3867. .survey .survey_wrap .survey_con .survey_row .answer textarea {height:220px; padding:20px;}
  3868. .survey .survey_wrap .survey_con .survey_row .answer ul {margin-right:-60px;}
  3869. .survey .survey_wrap .survey_con .survey_row .answer ul li {float:left; position:relative; margin-bottom:42px; margin-right:48px;}
  3870. .survey .survey_wrap .survey_con .survey_row .answer ul li.etc {width: auto;display: inline-block;margin-bottom: 0;}
  3871. .survey .survey_wrap .survey_con .survey_row .answer input[type='text'].etc_input {width:calc(100% - 83px); max-width:300px !important; height:52px; opacity:0.5; background: #f9f9f9; margin-top: -20px;margin-bottom: -22px;margin-left:20px;padding-right: 10px;}
  3872. .survey .survey_wrap .survey_con .survey_row .answer ul li .etc_radio + label + .etc_input {pointer-events: none;}
  3873. .survey .survey_wrap .survey_con .survey_row .answer ul li .etc_radio:checked + label + .etc_input {pointer-events:auto;opacity: 1;background: #fff;}
  3874. .survey .survey_wrap .survey_con .btn_wrap {margin-top:20px;}
  3875. /* ev_rank 회원등급 혜택 */
  3876. .ev_rank .inner {position: relative;margin-top: 10px;}
  3877. .ev_rank .my_rank_info {background: #fff6f2; padding:49px 0 40px; margin-top: -5px; min-height:260px; box-sizing:border-box;}
  3878. .ev_rank .my_rank_info .desc {float:left;}
  3879. .ev_rank .my_rank_info .desc p {color:#666; font-size:24px; font-weight:200; line-height:34px;}
  3880. .ev_rank .my_rank_info .desc p span.my_name {color:#222; font-weight:500;}
  3881. .ev_rank .my_rank_info .desc p span.my_rank {color:#222; font-weight:700;}
  3882. .ev_rank .my_rank_info .desc .btn {width:154px; height:42px; margin-top:18px; padding:0; font-size:14px; font-weight:300;}
  3883. .ev_rank .my_rank_info .my_rank_progress {float:right; width:760px; margin-right:60px;}
  3884. .ev_rank .my_rank_progress .pro_wrap {margin-bottom: 20px;}
  3885. .ev_rank .my_rank_progress .pro_wrap .rank_txt {margin-bottom: 5px;}
  3886. .ev_rank .my_rank_progress .pro_wrap .rank_txt ul {font-size: 0;}
  3887. .ev_rank .my_rank_progress .pro_wrap .rank_txt li {float:left; position:relative; width:25%; height:60px; font-size:14px; color:#444; font-weight:500; line-height:1;}
  3888. .ev_rank .my_rank_progress .pro_wrap .rank_txt li:first-child {width:0;}
  3889. .ev_rank .my_rank_progress .pro_wrap .rank_txt li .icon {display:none; position:absolute; right:0; bottom:10px; transform:translateX(50%); width:60px; height:60px; margin-bottom:0;}
  3890. .ev_rank .my_rank_progress .pro_wrap .rank_txt li .icon span {margin-top:2px; font-size:22px;}
  3891. .ev_rank .my_rank_progress .pro_wrap .rank_txt li .txt {display:block; position:absolute; right:0; bottom:10px; transform:translateX(50%); width:auto; text-align:center; word-break:initial;}
  3892. .ev_rank .my_rank_progress .pro_wrap .rank_txt li:first-child .txt {left:0; right:auto; transform:translateX(0);}
  3893. .ev_rank .my_rank_progress .pro_wrap .rank_txt li:last-child .txt {left:auto; right:0; transform:translateX(0);}
  3894. .ev_rank .my_rank_progress .pro_wrap .progress_bar {position:relative; width:100%; height:4px; background:#ddd;}
  3895. .ev_rank .my_rank_progress .pro_wrap .progress_bar .current_bar {display:block; width:auto; height:4px; background:linear-gradient(90deg,#ff9537, #fd4802);}
  3896. .ev_rank .my_rank_progress .pro_wrap.welcome .rank_txt li .icon.welcome,
  3897. .ev_rank .my_rank_progress .pro_wrap.bronze .rank_txt li .icon.bronze,
  3898. .ev_rank .my_rank_progress .pro_wrap.silver .rank_txt li .icon.silver,
  3899. .ev_rank .my_rank_progress .pro_wrap.gold .rank_txt li .icon.gold,
  3900. .ev_rank .my_rank_progress .pro_wrap.vip .rank_txt li .icon.vip {display:block;}
  3901. .ev_rank .my_rank_progress .pro_wrap.welcome .rank_txt li .icon.welcome + .txt,
  3902. .ev_rank .my_rank_progress .pro_wrap.bronze .rank_txt li .icon.bronze + .txt,
  3903. .ev_rank .my_rank_progress .pro_wrap.silver .rank_txt li .icon.silver + .txt,
  3904. .ev_rank .my_rank_progress .pro_wrap.gold .rank_txt li .icon.gold + .txt,
  3905. .ev_rank .my_rank_progress .pro_wrap.vip .rank_txt li .icon.vip + .txt {display:none;}
  3906. .ev_rank .my_rank_progress .pro_wrap.welcome .progress_bar .current_bar {width: 0%;}
  3907. .ev_rank .my_rank_progress .pro_wrap.bronze .progress_bar .current_bar {width: 25%;}
  3908. .ev_rank .my_rank_progress .pro_wrap.silver .progress_bar .current_bar {width: 50%;}
  3909. .ev_rank .my_rank_progress .pro_wrap.gold .progress_bar .current_bar {width: 75%;}
  3910. .ev_rank .my_rank_progress .pro_wrap.vip .progress_bar .current_bar {width: 100%;}
  3911. .ev_rank .my_rank_progress .benefit_txt {background:#fff; padding:26px 0; text-align:center; font-size:18px; color: #444; font-weight: 300;}
  3912. .ev_rank .my_rank_progress .benefit_txt strong {color:#222; font-weight:700;}
  3913. .ev_rank .my_rank_info.no_member {min-height:auto; text-align: center;padding: 60px 0;}
  3914. .ev_rank .my_rank_info.no_member p {color:#222; font-size:24px; font-weight:200; letter-spacing:-1px;}
  3915. .ev_rank .my_rank_info.no_member .login_btn {margin-top:28px; padding:10px 24px; width:85px; height:42px; font-size:14px; font-weight:300;}
  3916. /* ev_benefit_tbl 등급 혜택 테이블 */
  3917. .ev .ev_benefit_tbl {margin-top:100px;}
  3918. .ev_benefit_tbl h3 {margin-bottom:46px; font-size:34px; font-weight:500; text-align:center;}
  3919. .ev_benefit_tbl .rank_tbl_wrap {margin-bottom: 60px;}
  3920. .ev_benefit_tbl .rank_tbl_wrap .icon {margin:0 auto 20px;}
  3921. .ev_benefit_tbl .rank_tbl_wrap .icon + span {display: block; text-align: center; font-size: 18px; color: #222; font-weight: 500;}
  3922. .ev_benefit_tbl .rank_tbl_wrap .tbl_wrap table {border:1px solid #ddd;}
  3923. .ev_benefit_tbl .rank_tbl_wrap .tbl_wrap table th {width: 100px; background: #f5f5f5; font-size: 16px; color: #000; font-weight: 300; border:1px solid #ddd;}
  3924. .ev_benefit_tbl .rank_tbl_wrap .tbl_wrap table .td_30 td {padding:30px 0;}
  3925. .ev_benefit_tbl .rank_tbl_wrap .tbl_wrap table .td_30 td p {margin-top: 0;}
  3926. .ev_benefit_tbl .rank_tbl_wrap .tbl_wrap table td {width: 220px; padding:40px 0; border-bottom:1px solid #ddd; border-right:1px solid #ddd; text-align: center;}
  3927. .ev_benefit_tbl .rank_tbl_wrap .tbl_wrap table td.vt {vertical-align: top;}
  3928. .ev_benefit_tbl .rank_tbl_wrap .tbl_wrap table td p {font-size: 16px; line-height: 1.4; color: #222; font-weight: 200; letter-spacing: -0.025em; margin-top: 20px;}
  3929. .ev_benefit_tbl .rank_tbl_wrap .tbl_wrap table td.bbn {padding-bottom: 0; border-bottom: 0;}
  3930. /* 이용약관,개인정보취급방침,업체리스트 */
  3931. .ps .cont_head > div h3{text-align: center;margin-bottom: 0;padding-bottom: 60px;font-size: 40px;line-height: 1;}
  3932. .ps .cont_body {width: 1200px;margin: 0 auto;}
  3933. .ps .ps_terms .cont_body {margin:0 auto 160px;}
  3934. .ps .cont_foot {width: 1200px;margin: 0 auto;}
  3935. .ps p {font-size:16px;color:#666666;line-height:26px;letter-spacing:-0.025em;}
  3936. .ps {padding:0; border-top:1px solid #000;}
  3937. .ps table {word-break:keep-all;margin-top: 30px;}
  3938. .ps table th,
  3939. .ps table td {position:relative; padding:20px 40px; font-size:16px;color: #222222;letter-spacing:-0.025em;}
  3940. .ps table td {border-bottom:1px solid #ddd;border-right: 1px solid #ddd;font-weight:200;}
  3941. .ps table td:last-child {border-right: 1px solid transparent;}
  3942. .ps table th {border-top: 1px solid #000;border-bottom:1px solid #000;border-right: 1px solid transparent;font-weight:500;text-align:center;}
  3943. .modal.psptn_pop {max-width: none;width: 775px;padding: 60px 60px;}
  3944. .ps.ptn {border: 0;}
  3945. .ps.ptn table {margin-top:0;}
  3946. .ps.ptn table th, .ps.ptn table td {text-align: center;padding: 16px 0;}
  3947. .ps.ptn table th {font-size: 14px; font-weight: 500; line-height:14px;border-bottom: 1px solid #ddd;}
  3948. .ps.ptn table td {font-size: 14px; font-weight: 200; line-height: 14px;border-right: 0px solid #ddd;}
  3949. .ps.ptn .pager {padding-top: 40px;}
  3950. .hookGrp{margin-top: 0px;}
  3951. p + .hookGrp{margin-top: 40px;}
  3952. .hookGrp .hook_list{border: 1px solid #f5f5f5;padding: 40px;margin-bottom: 62px;}
  3953. .hookGrp .hook_list ul{flex-direction: column;list-style: none;flex-wrap: wrap;height: 288px;display: flex;padding: 0;margin: 0;}
  3954. .hookGrp .hook_list ul:after{content: ''; clear:both; display: block;}
  3955. .hookGrp .hook_list ul li{float: left;}
  3956. .hookGrp .hook_list ul li a{display: table; color: #222222;}
  3957. .hookGrp .hook_list ul li a span{margin: 0px 0px 18px 0;display: block;font-size: 16px;font-weight: 300;}
  3958. .hookGrp .hook_list ul li a span::after{content: ''; display: block; box-sizing: border-box; border: 1px solid transparent;}
  3959. .hookGrp .hook_list ul li a:hover,
  3960. .hookGrp .hook_list ul li a:focus{color: #fd4802;}
  3961. .hookGrp .hook_list ul li a:hover span:after,
  3962. .hookGrp .hook_list ul li a:focus span:after{content: '';display: block; color: #fd4802; box-sizing: border-box; border-bottom: 1px solid #fd4802;}
  3963. .hookGrp .hook_cont {font-size:16px;color:#666666;line-height:26px;letter-spacing:-0.025em;}
  3964. .hookGrp .hook_cont div{margin-top: 62px;}
  3965. .hookGrp .hook_cont h4 {font-size:24px;font-weight:500;color:#222222;line-height:26px;letter-spacing:-0.025em;}
  3966. .hookGrp .hook_cont p {font-size:16px;color:#666666;line-height:26px;letter-spacing:-0.025em;}
  3967. .hookGrp .hook_cont p em {font-weight: 500;}
  3968. .hookGrp .hook_cont ol li {padding-left: 15px;}
  3969. .ps #prvc_sel {margin-top: 62px; margin-bottom: 160px;}
  3970. .ps #prvc_sel div {margin-top: 0; margin-bottom: 0;}
  3971. .ps #prvc_sel .select_custom {width: 240px; height:auto;}
  3972. .ps #prvc_sel .select_custom .combo .list {position: absolute; top: auto; bottom: 41px; max-height:367px; border-top: 1px solid #222;}
  3973. .ps #prvc_sel .select_custom .combo .list>li {padding:0 15px;}
  3974. /* MODAL POPUP */
  3975. /* popup_자주 묻는 질문 팝업 */
  3976. .modal.faq_pop {max-width: 1000px; max-height: 780px; padding:60px;}
  3977. .modal.faq_pop .modal-header {border-bottom: 1px solid #ddd; margin-bottom: 0px; padding-bottom: 30px;}
  3978. .modal.faq_pop .modal-header p {font-size: 14px; color:#888; font-weight: 200; margin-bottom: 16px; padding-left: 30px;}
  3979. .modal.faq_pop .modal-header .modal-title {position: relative; padding-left: 68px; line-height: 1.62; font-weight: 300;}
  3980. .modal.faq_pop .modal-header .modal-title::before{content: 'Q'; display: inline-block; width: 26px; height: 26px; border-radius: 100%; color: #fff; background: #222222; font-size: 14px; line-height: 1.9; text-align: center; position: absolute; top: -2px; left: 30px;}
  3981. .modal.faq_pop .modal-body {position: relative; padding: 40px 10px 40px 68px; background:#f5f5f5;}
  3982. .modal.faq_pop .modal-body > span {display: inline-block; width: 26px; height: 26px; border-radius: 100%; color: #fff; background: #fd4800; font-size: 14px; line-height: 1.9; text-align: center; position: absolute; top: 37px; left: 30px;}
  3983. .modal.faq_pop .modal-body .pop_cont > span {display:block; margin-bottom: 26px; font-weight:300; color:#222;}
  3984. .modal.faq_pop a.close-modal {right:30px; top:30px;}
  3985. /* popup_로그인 정보 이용동의 팝업 */
  3986. .modal.mbAgree_pop {width:620px; max-width:none;}
  3987. .modal.mbAgree_pop .agree_info p {margin-bottom:30px; font-size:18px; font-weight:300; line-height:1; letter-spacing:-0.8px;}
  3988. .modal.mbAgree_pop .info_txt {padding:25px 40px; background:#f5f5f5;}
  3989. .modal.mbAgree_pop .info_txt ul li {position:relative; padding-left:13px; margin-bottom:7px; color:#888; font-size:14px; font-weight:200; line-height:20px;}
  3990. .modal.mbAgree_pop .info_txt ul li:last-child {margin-bottom:0;}
  3991. .modal.mbAgree_pop .info_txt ul li:after {content:''; position:absolute; top:7px; left:0; background:#858585; width:3px; height:3px;}
  3992. .modal.mbAgree_pop .info_txt ul li .mb_name {font-weight:300;}
  3993. .modal.mbAgree_pop .info_txt ul li em {font-weight:300;}
  3994. .modal.mbAgree_pop .modal-footer {width:450px; margin:40px auto 0;}
  3995. .modal.mbAgree_pop .modal-footer .ui_row {margin:0;}
  3996. .modal.mbAgree_pop .modal-footer .ui_row [class^='ui_col_'] {margin-left:5px; margin-right:5px;}
  3997. .modal.mbAgree_pop .modal-footer .ui_row [class^='ui_col_']:first-child {margin-left:0px;}
  3998. .modal.mbAgree_pop .modal-footer .ui_row [class^='ui_col_']:last-child {margin-right:0px;}
  3999. /* popup_STYLE24이용약관 팝업 */
  4000. .modal.policiesTerms_pop {width:620px; max-width:none;}
  4001. .modal.policiesTerms_pop .pop_cont {max-height:320px; border:1px solid #ddd;}
  4002. .modal.policiesTerms_pop .text_wrap {padding:20px;}
  4003. .modal.policiesTerms_pop .modal-footer .btn {width:220px; border-color:#a7a7a7;}
  4004. /* popup_개인정보 수집 및 이용 팝업 */
  4005. .modal.policiesPrivacy_pop {width:620px; max-width:none;}
  4006. .modal.policiesPrivacy_pop .pop_cont {max-height:320px; border:1px solid #ddd;}
  4007. .modal.policiesPrivacy_pop .text_wrap {padding:20px;}
  4008. .modal.policiesPrivacy_pop .modal-footer .btn {width:220px; border-color:#a7a7a7;}
  4009. /* popup_개인정보 취급 위탁 팝업 */
  4010. .modal.trustPrivacy_pop {width:620px; max-width:none;}
  4011. .modal.trustPrivacy_pop .pop_cont {max-height:320px; border:1px solid #ddd;}
  4012. .modal.trustPrivacy_pop .text_wrap {padding:20px;}
  4013. .modal.trustPrivacy_pop .modal-footer .btn {width:220px; border-color:#a7a7a7;}
  4014. /*
  4015. 팝업 컨텐츠 공통
  4016. popup_STYLE24이용약관, popup_개인정보 수집 및 이용 약관, popup_개인정보 취급 위탁
  4017. */
  4018. .modal.trustPrivacy_pop .hookGrp .hook_list,
  4019. .modal.policiesTerms_pop .hookGrp .hook_list,
  4020. .modal.policiesPrivacy_pop .hookGrp .hook_list {padding: 20px;margin-bottom: 62px;}
  4021. .modal.trustPrivacy_pop .hookGrp .hook_list ul,
  4022. .modal.policiesTerms_pop .hookGrp .hook_list ul,
  4023. .modal.policiesPrivacy_pop .hookGrp .hook_list ul {width: 426px; height: auto;display: block;}
  4024. .modal.trustPrivacy_pop .hookGrp .hook_list ul li,
  4025. .modal.policiesTerms_pop .hookGrp .hook_list ul li,
  4026. .modal.policiesPrivacy_pop .hookGrp .hook_list ul li {width: 100%;}
  4027. .modal.trustPrivacy_pop .hookGrp .hook_list ul li a span,
  4028. .modal.policiesTerms_pop .hookGrp .hook_list ul li a span,
  4029. .modal.policiesPrivacy_pop .hookGrp .hook_list ul li a span {margin: 0px 0px 20px 0;line-height: 16px;}
  4030. .modal.trustPrivacy_pop table,
  4031. .modal.policiesTerms_pop table,
  4032. .modal.policiesPrivacy_pop table {word-break:keep-all;margin-top: 30px;}
  4033. .modal.trustPrivacy_pop table th,
  4034. .modal.policiesTerms_pop table th,
  4035. .modal.policiesPrivacy_pop table th,
  4036. .modal.trustPrivacy_pop table td,
  4037. .modal.policiesTerms_pop table td,
  4038. .modal.policiesPrivacy_pop table td {position:relative; padding:10px 20px; font-size:14px;color: #222222;letter-spacing:-0.025em;}
  4039. .modal.trustPrivacy_pop table td,
  4040. .modal.policiesTerms_pop table td,
  4041. .modal.policiesPrivacy_pop table td {border-bottom:1px solid #ddd;border-right: 1px solid #ddd;font-weight:200;}
  4042. .modal.trustPrivacy_pop table td:last-child,
  4043. .modal.policiesTerms_pop table td:last-child,
  4044. .modal.policiesPrivacy_pop table td:last-child {border-right: 1px solid transparent;}
  4045. .modal.trustPrivacy_pop table th,
  4046. .modal.policiesTerms_pop table th,
  4047. .modal.policiesPrivacy_pop table th {border-top: 1px solid #000;border-bottom:1px solid #000;border-right: 1px solid transparent;font-weight:500;text-align:center;}
  4048. /* popup_비밀번호 변경 팝업 */
  4049. .modal.pswordModify_pop {width:600px; max-width:none; height:auto;}
  4050. .modal.pswordModify_pop input {color:#222;}
  4051. .modal.pswordModify_pop .input_label {float:left; display:inline; width:150px; margin-top:14px; line-height:1; color:#222; font-size:14px; font-weight:500; vertical-align:top;}
  4052. .modal.pswordModify_pop .input_wrap {float:left; width:calc(100% - 150px);}
  4053. .modal.pswordModify_pop .form_field {display:block; margin-top:10px}
  4054. .modal.pswordModify_pop .form_field:first-child {margin-top:0;}
  4055. .modal.pswordModify_pop .modal-footer .ui_row {margin:0;}
  4056. .modal.pswordModify_pop .pop_cont {max-height:510px !important; padding-top:30px; border-top:1px solid #222;}
  4057. .modal.pswordModify_pop .help_block {text-indent:0;}
  4058. .modal.pswordModify_pop .help_block p span {position:relative; display:block; padding-left:20px; font-size:14px; word-break:keep-all;}
  4059. .modal.pswordModify_pop .help_block p span.t_err {padding-left:22px;}
  4060. .modal.pswordModify_pop .help_block p span.t_err::before {position:absolute; top:50%; transform:translateY(-50%);}
  4061. .modal.pswordModify_pop .help_block p span .ico {position:absolute; left:0; top:7px; width:10px; height:8px;}
  4062. .modal.pswordModify_pop .help_block p span .ico::before {vertical-align:top;}
  4063. /* popup_배송지 변경 팝업 */
  4064. .modal.adrsChange_pop {width:600px; max-width:none; height:auto;}
  4065. .modal.adrsChange_pop .modal-footer {margin-top:0; margin-left:-60px; margin-right:-60px; margin-bottom:-60px;}
  4066. .modal.adrsChange_pop .modal-body .pop_cont {max-height:510px !important; margin-left:-20px; margin-right:-20px; padding:0 20px; line-height:1;}
  4067. .modal.adrsChange_pop .modal-body .pop_cont ul {padding-bottom: 60px;}
  4068. .modal.adrsChange_pop .modal-body .pop_cont.nodata ul {display: none;}
  4069. .modal.adrsChange_pop .modal-body .pop_cont.nodata .empty_txt {display: block;}
  4070. .modal.adrsChange_pop .modal-body .pop_cont .empty_txt {display: none; padding:80px 0 140px;}
  4071. .modal.adrsChange_pop button span {line-height:1;}
  4072. .modal.adrsChange_pop .btn.btn_sm {min-width:70px; height:34px; padding-top:9px; font-size:14px; font-weight:300;}
  4073. .modal.adrsChange_pop .form_field,
  4074. .modal.adrsChange_pop .form_field > div {display:block; width:100%;}
  4075. .modal.adrsChange_pop .pop_cont li {margin-top:30px;}
  4076. .modal.adrsChange_pop .pop_cont li:first-child {margin-top:0;}
  4077. .modal.adrsChange_pop .pop_cont .adrs_box {padding:30px; border:1px solid #ddd; color:#222; font-size:16px;}
  4078. .modal.adrsChange_pop .pop_cont .adrs_box .btn {margin-top:30px;}
  4079. .modal.adrsChange_pop .pop_cont .adrs_box .btn:first-child {float:left;}
  4080. .modal.adrsChange_pop .pop_cont .adrs_box .btn:last-child {float:right;}
  4081. .modal.adrsChange_pop .pop_cont .adrs_box dl > div {margin-top:15px;}
  4082. .modal.adrsChange_pop .pop_cont .adrs_box dl > div:first-child {margin-top:0; margin-bottom:20px; height:16px;}
  4083. .modal.adrsChange_pop .pop_cont .adrs_box dl > div dt {float:left;}
  4084. .modal.adrsChange_pop .pop_cont .adrs_box .icon_tag {display:inline-block; margin-top:-3px; vertical-align:top;}
  4085. /* popup_배송지 추가 팝업 */
  4086. .modal.adrsAdd_pop {width:600px; max-width:none; height:auto;}
  4087. .modal.adrsAdd_pop .modal-body .pop_cont {line-height:1; max-height:550px; margin-left:-20px; margin-right:-20px; padding-left:20px; padding-right:20px;}
  4088. .modal.adrsAdd_pop .modal-footer button.btn {width:220px; height:60px; margin:auto; font-size:18px; font-weight:300;}
  4089. .modal.adrsAdd_pop button span {line-height:1;}
  4090. .modal.adrsAdd_pop h6 {margin-bottom:0; padding-bottom:20px; border-bottom:1px solid #222; color:#222; font-size:18px;}
  4091. .modal.adrsAdd_pop .form_field,
  4092. .modal.adrsAdd_pop .form_field > div {display:block; width:100%;}
  4093. .modal.adrsAdd_pop .area_adrsinfo h6 {margin-bottom:20px;}
  4094. .modal.adrsAdd_pop .area_adrsinfo {position:relative;}
  4095. .modal.adrsAdd_pop .area_adrsinfo .default_addrs {position:absolute; right:0; top:0;}
  4096. .modal.adrsAdd_pop .area_adrsinfo > .form_field {margin-top:10px}
  4097. .modal.adrsAdd_pop .area_adrsinfo > .form_field > div {display:table;}
  4098. .modal.adrsAdd_pop .area_adrsinfo > .form_field > div .input_wrap {display:table-cell;}
  4099. .modal.adrsAdd_pop .area_adrsinfo > .form_field > div .btn {display:table-cell; min-width:122px; height:42px; float:none; font-size:14px; font-weight:200;}
  4100. .modal.adrsAdd_pop .area_request {margin-top:60px;}
  4101. .modal.adrsAdd_pop .area_request h6 {margin-bottom:30px;}
  4102. /* popup_배송 요청사항 수정 팝업 */
  4103. .modal.rqstModify_pop {width:600px; max-width:none; height:auto;}
  4104. .modal.rqstModify_pop .modal-body .pop_cont {line-height:1; max-height:none;}
  4105. .modal.rqstModify_pop .modal-footer button.btn {width:220px; height:60px; margin:auto; font-size:18px; font-weight:300;}
  4106. .modal.rqstModify_pop button span {line-height:1;}
  4107. .modal.rqstModify_pop .form_field,
  4108. .modal.rqstModify_pop .form_field > div {display:block; width:100%;}
  4109. .modal.rqstModify_pop .area_request {border-top:1px solid #222; padding-top:30px;}
  4110. .modal.rqstModify_pop .btn_group_block {margin-top:60px;}
  4111. .modal.rqstModify_pop .btn_group_block .btn.btn_block {width:220px; height:60px; margin:auto; font-size:18px; font-weight:300;}
  4112. .modal .area_request .form_field > div {margin-top:35px;}
  4113. .modal .area_request .form_field > div:first-child {margin-top:0;}
  4114. .modal .area_request .form_field > div label {color:#222; font-size:16px; font-weight:200; line-height:1;}
  4115. .modal .area_request .info_box .input_wrap {margin-top:15px;}
  4116. .modal .area_request .info_box .input_wrap p {position:relative; padding-left:10px; margin-top:15px; color:#888; font-size:14px; font-weight:200;}
  4117. .modal .area_request .info_box .input_wrap p::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:2px; height:2px; background:#888;}
  4118. /* popup_배송지 수정 팝업 */
  4119. .modal.adrsModify_pop {width:600px; max-width:none; height:auto;}
  4120. .modal.adrsModify_pop .modal-body .pop_cont {line-height:1; max-height:550px; margin-left:-20px; margin-right:-20px; padding-left:20px; padding-right:20px;}
  4121. .modal.adrsModify_pop .modal-footer button.btn {width:220px; height:60px; margin:auto; font-size:18px; font-weight:300;}
  4122. .modal.adrsModify_pop button span {line-height:1;}
  4123. .modal.adrsModify_pop h6 {margin-bottom:0; padding-bottom:20px; border-bottom:1px solid #222; color:#222; font-size:18px;}
  4124. .modal.adrsModify_pop .form_field,
  4125. .modal.adrsModify_pop .form_field > div {display:block; width:100%;}
  4126. .modal.adrsModify_pop .area_adrsinfo h6 {margin-bottom:20px;}
  4127. .modal.adrsModify_pop .area_adrsinfo {position:relative;}
  4128. .modal.adrsModify_pop .area_adrsinfo .default_addrs {position:absolute; right:0; top:0;}
  4129. .modal.adrsModify_pop .area_adrsinfo > .form_field {margin-top:10px;}
  4130. .modal.adrsModify_pop .area_adrsinfo > .form_field > div {display:table;}
  4131. .modal.adrsModify_pop .area_adrsinfo > .form_field > div .input_wrap {display:table-cell;}
  4132. .modal.adrsModify_pop .area_adrsinfo > .form_field > div .btn {display:table-cell; min-width:122px; height:42px; float:none; font-size:14px; font-weight:200;}
  4133. .modal.adrsModify_pop .area_request {margin-top:60px;}
  4134. .modal.adrsModify_pop .area_request h6 {margin-bottom:30px;}
  4135. /* popup_다다익선 상품보기 / 배송비 SAVE 상품보기 팝업 */
  4136. .modal .area_slider .swiper-container .item_prod {width:100%;}
  4137. .modal .area_slider .swiper-container .item_prod .item_state {padding:0;}
  4138. .modal .area_slider .swiper-container .item_prod .item_state .btn {margin-top:20px; width:100%; height:34px; padding:10px; font-size:14px; font-weight:300;}
  4139. .modal .area_slider .swiper-container .item_prod .item_state .itemPrice {position:relative; padding-top:20px;}
  4140. .modal .area_slider .swiper-container .item_prod .item_state .itemPrice_original {position:absolute; top:0; left:0; margin:0;}
  4141. .modal .area_slider .swiper-container .item_prod .item_state .itemPercent {top:auto; bottom:0;}
  4142. .modal .area_slider .swiper-scrollbar {background:#ddd;}
  4143. .modal .area_slider .swiper-scrollbar-drag {border-radius:0; background:#222;}
  4144. .modal .area_slider .swiper-container-horizontal>.swiper-scrollbar {position:relative; left:auto; right:auto; bottom:auto; margin-top:60px; width:100%; height:2px; opacity: 1 !important;}
  4145. /* popup_다다익선 상품보기 */
  4146. .modal.moresale_pop {width:950px; max-width:none; height:auto;}
  4147. .modal.moresale_pop .modal-body .pop_cont {line-height:1; max-height:none;}
  4148. .modal.moresale_pop button span {line-height:1;}
  4149. .modal.moresale_pop .area_benefit {margin-bottom:30px; padding-top:4px; color:#fd4802; font-size:14px;}
  4150. .modal.moresale_pop .area_benefit::after {clear:both; display:block;}
  4151. .modal.moresale_pop .area_benefit .tag {float:left; width:55px; margin-top:-4px;}
  4152. .modal.moresale_pop .area_benefit p {float:left;}
  4153. .modal.moresale_pop .area_benefit p span {float:left; position:relative; padding:0px 12px;}
  4154. .modal.moresale_pop .area_benefit p span::before {content:''; position:absolute; width:1px; height:14px; left:0px; top:50%; transform:translateY(-50%); background:#ddd;}
  4155. .modal.moresale_pop .area_benefit p span:first-child::before {display:none;}
  4156. /* popup_배송비 SAVE 상품보기 */
  4157. .modal.dlvrSave_pop {width:950px; max-width:none; height:auto;}
  4158. .modal.dlvrSave_pop .modal-body .pop_cont {line-height:1; max-height:none;}
  4159. .modal.dlvrSave_pop button span {line-height:1;}
  4160. /* popup_장바구니 옵션변경 */
  4161. .modal.optModify_pop {width:890px; max-width:none; height:auto; max-height:890px;}
  4162. .modal.optModify_pop .modal-body .pop_cont {line-height:1; max-height:680px; margin-left:-20px; margin-right:-20px; padding-left:20px; padding-right:20px;}
  4163. .modal.optModify_pop .modal-header {margin-bottom:20px;}
  4164. .modal.optModify_pop .modal-header h5.modal-title {margin-bottom:20px;}
  4165. .modal.optModify_pop button span {line-height:1;}
  4166. .modal.optModify_pop img {position: absolute;width: 100%;height: auto;top: 50%;left: 0;transform: translateY(-50%);}
  4167. .modal.optModify_pop .form_field,
  4168. .modal.optModify_pop .form_field > div {display:block; width:100%;}
  4169. .modal.optModify_pop .opt_header {margin-bottom:18px; font-size:14px;}
  4170. .modal.optModify_pop .opt_header > span {float:left; display:inline;}
  4171. .modal.optModify_pop .opt_header .title {color:#222; font-weight:500;}
  4172. .modal.optModify_pop .opt_header .color {margin-left:20px; color:#666; font-weight:200;}
  4173. .modal.optModify_pop .opt_header .text {margin-left:20px; color:#666; font-weight:200;}
  4174. .modal.optModify_pop .area_pic {float:left; width:360px;}
  4175. .modal.optModify_pop .area_pic .pic_list {margin-top:-5px;}
  4176. .modal.optModify_pop .area_pic .pic_list .thumb {position: relative;display: block;padding-bottom: 0%;box-sizing: border-box;width: 175px;height: 261px;border: 1px solid #eee;background: #f5f5f5;}
  4177. .modal.optModify_pop .area_pic .pic_list li {float:left; width:50%; padding-top:5px; padding-bottom:5px;}
  4178. .modal.optModify_pop .area_pic .pic_list li:nth-child(odd) {padding-right:5px;}
  4179. .modal.optModify_pop .area_pic .pic_list li:nth-child(even) {padding-left:5px;}
  4180. .modal.optModify_pop .area_order {float:right; width:380px;}
  4181. .modal.optModify_pop .area_order > div {margin-top:40px;}
  4182. .modal.optModify_pop .area_order > div:first-child {margin-top:0;}
  4183. .modal.optModify_pop .area_order .opt_color ul {margin-top:-6px;}
  4184. .modal.optModify_pop .area_order .opt_color ul li {float:left; margin-left:6px; margin-top:6px;}
  4185. .modal.optModify_pop .area_order .opt_color ul li:nth-child(5n-4) {margin-left:0;}
  4186. .modal.optModify_pop .area_order .opt_color ul li a {display:block; position: relative; box-sizing:border-box; width:70px; height:103px;padding-bottom: 0%;border: 1px solid #eee;background: #f5f5f5;}
  4187. .modal.optModify_pop .area_order .opt_color ul li a::after {display: block;content: '';position: absolute;left: 0;right: 0;top: 0;bottom: 0;border: 1px solid #f5f5f5;box-sizing: border-box;}
  4188. .modal.optModify_pop .area_order .opt_color ul li a.on::after {display: block;content: '';border:1px solid #fd4802;}
  4189. .modal.optModify_pop .area_order .opt_size {padding-bottom:40px; border-bottom:1px solid #ddd;}
  4190. .modal.optModify_pop .area_order .opt_size .form_field {display:block; width:95%; margin-top:-6px;}
  4191. .modal.optModify_pop .area_order .opt_size .form_field > div {margin-left:6px; margin-top:6px;}
  4192. .modal.optModify_pop .area_order .opt_size .form_field > div:nth-child(6n-5) {margin-left:0px;}
  4193. .modal.optModify_pop .area_order .opt_size .form_field input[type="radio"] + label {position:relative; display:block; width:50px; height:40px; padding:0; line-height:40px; text-align:center; background:#fff; box-sizing:border-box; border:1px solid #ddd; color:#222; font-weight:200; font-size:14px;}
  4194. .modal.optModify_pop .area_order .opt_size .form_field input[type="radio"] + label::before,
  4195. .modal.optModify_pop .area_order .opt_size .form_field input[type="radio"] + label::after {display:none;}
  4196. .modal.optModify_pop .area_order .opt_size .form_field input[type="radio"]:checked + label {border:1px solid #fd4802;}
  4197. .modal.optModify_pop .area_order .opt_size .form_field input[type="radio"]:disabled + label {text-decoration:line-through; background:#f5f5f5; border-color:#f5f5f5; color:#bbb; opacity:1;}
  4198. .modal.optModify_pop .area_order .opt_size .form_field input[type="radio"] + label span {position:absolute; top:50%; left:0%; width:100%; padding:0 6px; line-height:1.2; transform:translateY(-50%); transform:translateY(-50%); display:-webkit-box; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;}
  4199. .modal.optModify_pop .area_order .opt_size .form_field > div {float:left; width:auto;}
  4200. .modal.optModify_pop .area_order .opt_select .select_custom .combo .select {height:42px; padding:15px;}
  4201. .modal.optModify_pop .area_order .opt_select .select_custom .combo .list > li {height:42px; padding:15px; font-size:14px; line-height:1;}
  4202. .modal.optModify_pop .area_order .opt_count .opt_count {padding-bottom:0;}
  4203. .modal.optModify_pop .area_order .opt_count .number_count {display:inline-block; border:1px solid #ddd;}
  4204. .modal.optModify_pop .area_order .opt_count .number_count::after {content:''; clear:both; display:block;}
  4205. .modal.optModify_pop .area_order .opt_count .number_count span,
  4206. .modal.optModify_pop .area_order .opt_count .number_count input[type='text']{float:left;}
  4207. .modal.optModify_pop .area_order .opt_count .number_count span {cursor:pointer; position:relative; display:inline-block; width:40px; height:40px; text-align:center;}
  4208. .modal.optModify_pop .area_order .opt_count .number_count span::after {content:''; position:absolute; left:50%; top:50%; transform: translate(-50%, -50%);; width:12px; height:12px; background:url('//image.istyle24.com/Style24/images/pc/btn_count.png') no-repeat 100% 0; image-rendering:pixelated;}
  4209. .modal.optModify_pop .area_order .opt_count .number_count span.min_val,
  4210. .modal.optModify_pop .area_order .opt_count .number_count span.max_val {opacity:0.2;}
  4211. .modal.optModify_pop .area_order .opt_count .number_count .plus::after {content:''; background-position:100% 0;}
  4212. .modal.optModify_pop .area_order .opt_count .number_count .minus::after {content:''; background-position:0 0;}
  4213. .modal.optModify_pop .area_order .opt_count .number_count input[type='text'] {width:44px; height:40px; padding:0; text-align:center; color:#222; font-size:15px; font-weight:200; border:none;}
  4214. .modal.optModify_pop .area_order .btn_group_block .btn {height:60px; font-size:18px; font-weight:300;}
  4215. /* popup_쿠폰변경 팝업 */
  4216. .modal.couponModify_pop {width:630px; max-width:none; padding-bottom:0; height:auto;}
  4217. .modal.couponModify_pop .modal-body .pop_cont {max-height:600px; line-height:1;}
  4218. .modal.couponModify_pop .modal-footer {margin-top:0; margin-left:-60px; margin-right:-60px;}
  4219. .modal.couponModify_pop button span {line-height:1;}
  4220. .modal.couponModify_pop h6 {margin-bottom:20px;}
  4221. .modal.couponModify_pop .form_field,
  4222. .modal.couponModify_pop .form_field > div {display:block; width:100%;}
  4223. .modal.couponModify_pop .area_item_coupon {margin-bottom:40px;}
  4224. .modal.couponModify_pop .area_item_coupon .apply_item {margin-top:30px;}
  4225. .modal.couponModify_pop .area_item_coupon .apply_item:first-child {margin-top:0;}
  4226. .modal.couponModify_pop .area_item_coupon .apply_item .item_gd {margin-bottom:20px;}
  4227. .modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure {height:120px;}
  4228. .modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure > div {display:inline-block;}
  4229. .modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure .thumb {float:left; width:80px; height:120px; padding-top:0;}
  4230. .modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure figcaption {display:table-cell; padding-left:20px; width:calc(100% - 140px); height:120px; vertical-align:middle;}
  4231. .modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure figcaption .name {margin-top:10px;}
  4232. .modal.couponModify_pop .area_item_coupon .apply_item .item_gd figure figcaption .option {margin-top:15px;}
  4233. .modal.couponModify_pop .area_item_coupon .select_custom {height:90px;}
  4234. .modal.couponModify_pop .area_item_coupon .select_custom .combo .select {height:90px; padding:0;}
  4235. .modal.couponModify_pop .area_item_coupon .select_custom .combo .select:after {top:50%; right:20px; transform:translateY(-50%);}
  4236. .modal.couponModify_pop .area_item_coupon .select_custom .combo .list {top:89px; padding:0;}
  4237. .modal.couponModify_pop .area_item_coupon .select_custom .combo .list > li {line-height:1; height:90px; padding:0; border-top:1px solid #ddd;}
  4238. .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon {padding:14px 18px;}
  4239. .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon .name {color:#222; font-size:14px; font-weight:300;}
  4240. .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon .txt {margin-top:10px; color:#888; font-size:14px; font-weight:200;}
  4241. .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon .txt span {font-weight:300;}
  4242. .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon .discount {margin-top:10px; color:#fd4802; font-size:16px; font-weight:300;}
  4243. .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon .discount span {font-weight:500;}
  4244. .modal.couponModify_pop .area_item_coupon .select_custom .combo .item_coupon .empty {margin-top:22px; color:#222; font-size:14px; font-weight:300;}
  4245. .modal.couponModify_pop .area_item_coupon .select_custom .combo .list > li[aria-disabled="true"] .item_coupon p {color:#888;}
  4246. .modal.couponModify_pop .area_cart_coupon {margin-bottom:40px;}
  4247. .modal.couponModify_pop .area_cart_coupon .form_field > div {border-bottom:1px solid #ddd;}
  4248. .modal.couponModify_pop .area_cart_coupon .form_field > div:first-child {border-top:1px solid #ddd;}
  4249. .modal.couponModify_pop .area_cart_coupon .form_field > div label {width:100%;}
  4250. .modal.couponModify_pop .area_cart_coupon .cart_coupon {display:table-cell; width:100%; height:104px; padding:20px 0px; line-height:1; vertical-align:middle;}
  4251. .modal.couponModify_pop .area_cart_coupon .cart_coupon .name {color:#222; font-size:14px; font-weight:300;}
  4252. .modal.couponModify_pop .area_cart_coupon .cart_coupon .txt {margin-top:10px; color:#888; font-size:14px; font-weight:200;}
  4253. .modal.couponModify_pop .area_cart_coupon .cart_coupon .txt span {font-weight:300;}
  4254. .modal.couponModify_pop .area_cart_coupon .cart_coupon .discount {margin-top:10px; color:#fd4802; font-size:16px; font-weight:300;}
  4255. .modal.couponModify_pop .area_cart_coupon .cart_coupon .discount span {font-weight:500;}
  4256. /* popup_사은품지급안내 */
  4257. .modal.infoGift_pop {width:600px; max-width:none; height:auto;}
  4258. .modal.infoGift_pop .modal-body .pop_cont {max-height:none; padding:5px; border:1px solid #ddd; font-size:14px;}
  4259. .modal.infoGift_pop .modal-body .pop_cont .cont_box {line-height:20px; padding:15px; max-height:360px; overflow:auto;}
  4260. .modal.infoGift_pop .modal-body .pop_cont .cont_box ul li{width: 100%; position: relative; padding-left: 10px; word-break: keep-all;margin-bottom: 5px;}
  4261. .modal.infoGift_pop .modal-body .pop_cont .cont_box ul li::before {content: '';position: absolute;left: 0;top: 10px;margin-top: -1px;width: 2px;height: 2px;background: #888;}
  4262. .modal.infoGift_pop .modal-body .pop_cont .cont_box::-webkit-scrollbar {width: 2px;}
  4263. .modal.infoGift_pop .modal-body .pop_cont .cont_box::-webkit-scrollbar-thumb {background-color: #888888;border-radius: 0px;background-clip: padding-box;border: 0px solid transparent;}
  4264. .modal.infoGift_pop .modal-body .pop_cont .cont_box::-webkit-scrollbar-track{background-color: #dddddd;border-radius: 0px;}
  4265. /* popup_쿠폰사용안내 */
  4266. .modal.couponInfo_pop {width:600px; max-width:none; height:auto;}
  4267. .modal.couponInfo_pop .modal-title {word-break:keep-all;}
  4268. .modal.couponInfo_pop .modal-body .pop_cont {line-height:1; max-height:none; overflow: visible;}
  4269. .modal.couponInfo_pop button span {line-height:1;}
  4270. .modal.couponInfo_pop .form_field,
  4271. .modal.couponInfo_pop .form_field > div {display:block; width:100%;}
  4272. .modal.couponInfo_pop dl {font-size:14px; line-height:1;}
  4273. .modal.couponInfo_pop dl > div:first-child {margin-top:0;}
  4274. .modal.couponInfo_pop dl > div {margin-top:20px;}
  4275. .modal.couponInfo_pop dl > div::after {content:''; clear:both; display:block;}
  4276. .modal.couponInfo_pop dl dt {float:left; position:relative; width:84px; padding-left:15px; color:#222; font-weight:300;}
  4277. .modal.couponInfo_pop dl dt::before {content:''; position:absolute; left:0; top:5px; width:3px; height:3px; background:#888;}
  4278. .modal.couponInfo_pop dl dd {padding-left:84px; color:#666; font-weight:200;}
  4279. /* my_popup > 환불계좌등록 */
  4280. .modal.refund_pop {width:620px; max-width:none; padding:60px;}
  4281. .modal.refund_pop .modal-title {margin-top:0;}
  4282. .modal.refund_pop .modal-footer {margin-top:40px;}
  4283. .modal.refund_pop .modal-footer .btn {width:255px;}
  4284. .modal.refund_pop .modal-body .pop_cont {overflow:visible; position: relative; max-height:none;}
  4285. .modal.refund_pop .select_custom {color:#666; font-size:14px;}
  4286. .modal.refund_pop .select_custom .combo {min-width:300px; width:100%;}
  4287. .modal.refund_pop .select_custom .combo .select {padding:14px 15px; color:#666; font-size:14px;}
  4288. .modal.refund_pop .select_custom .combo .list {max-height: 200px;}
  4289. .modal.refund_pop .select_custom .combo .list > li {padding:0 15px;}
  4290. .modal.refund_pop table {width:470px;}
  4291. .modal.refund_pop table th {padding:10px 0; color:#222; font-size:14px; font-weight:500; vertical-align:top;}
  4292. .modal.refund_pop table th span {display:inline-block; line-height:42px;}
  4293. .modal.refund_pop table td {padding:10px 0;}
  4294. .modal.refund_pop .input_wrap .form_control {float:left; width:100%;}
  4295. .modal.refund_pop .input_wrap > *:nth-last-child(2) {width:275px;}
  4296. .modal.refund_pop .input_wrap .form_control + .btn.btn_sm {width:95px; height:42px; font-size:14px; font-weight:300;}
  4297. .modal.refund_pop .txt_info {margin-top:10px; color:#888; font-size:14px; font-weight:200;}
  4298. .modal.refund_pop .txt_info ul li {position:relative; padding-left:10px; margin-top:5px;}
  4299. .modal.refund_pop .txt_info ul li::before {content:''; position:absolute; left:0; top:50%; margin-top:-1px; width:2px; height:2px; background:#888;}
  4300. .modal.refund_pop .txt_info ul li:first-child {margin-top:0;}
  4301. /* popup_총알배송 가능여부 팝업 */
  4302. .modal.bulletShip_pop {width:580px; max-width:none; padding:60px;}
  4303. .modal.bulletShip_pop .modal-header {display:none;}
  4304. .modal.bulletShip_pop .modal-body .pop_cont .txt_result {text-align:center; line-height:1;overflow: hidden;}
  4305. .modal.bulletShip_pop .modal-body .pop_cont .txt_result > p:nth-child(1) {position:relative; padding-top:35px; color:#666; font-size:16px; font-weight:300;}
  4306. .modal.bulletShip_pop .modal-body .pop_cont .txt_result > p:nth-child(1)::before {content:''; position:absolute; width:52px; height:24px; top:0; left:50%; transform:translateX(-50%); background:url('//image.istyle24.com/Style24/images/pc/ico_home.png') no-repeat; background-size:auto 100%;}
  4307. .modal.bulletShip_pop .modal-body .pop_cont .txt_result > p:nth-child(2) {margin-top:15px; color:#222; font-size:32px; font-weight:700;}
  4308. .modal.bulletShip_pop .modal-body .pop_cont .txt_result > p:nth-child(2) span {color:#fd4802;}
  4309. .modal.bulletShip_pop .modal-body .pop_cont .txt_result .address {display:block; margin-top:25px; padding:20px 30px; background:#f5f5f5; color:#666; font-size:16px; font-weight:200; line-height:26px; word-break:keep-all;}
  4310. .modal.bulletShip_pop .modal-body .pop_cont .txt_result .info {margin-top:30px; color:#888; font-size:14px;}
  4311. .modal.bulletShip_pop .modal-footer {margin-top:40px;}
  4312. .modal.bulletShip_pop .modal-footer .btn {width:220px; font-size:16px; font-weight:300;}
  4313. /* my_popup > 교환옵션변경 */
  4314. .modal.exchange_pop {width:630px; max-width:none; padding:60px;}
  4315. .modal.exchange_pop .modal-title {margin-top:0;}
  4316. .modal.exchange_pop .modal-footer {margin-top:40px;}
  4317. .modal.exchange_pop .modal-footer .btn {width:255px;}
  4318. .modal.exchange_pop .pop_cont {overflow:auto; max-height:500px; margin-left:-10px; margin-right:-10px; padding-left:10px; padding-right:10px;}
  4319. .modal.exchange_pop .form_field {display:block; width:100%;}
  4320. .modal.exchange_pop .form_field > div {display:block; width:100%; line-height:1;}
  4321. .modal.exchange_pop .form_field input[type="checkbox"] + label {padding-left:30px; color:#222; font-size:16px; font-weight:200; line-height:1;}
  4322. .modal.exchange_pop .form_field input[type="checkbox"] + label::before,
  4323. .modal.exchange_pop .form_field input[type="checkbox"] + label::after,
  4324. .modal.exchange_pop .form_field input[type="checkbox"]:checked + label:after {top:50%;}
  4325. .modal.exchange_pop .select_option_area {padding-bottom:40px;}
  4326. .modal.exchange_pop .select_option_area h6 {color:#222; font-size:16px; font-weight:500;}
  4327. .modal.exchange_pop .select_option_area .form_field > div {margin-top:20px;}
  4328. .modal.exchange_pop .select_custom {color:#666; font-size:14px;}
  4329. .modal.exchange_pop .select_custom .combo {min-width:400px; width:auto;}
  4330. .modal.exchange_pop .select_custom .combo .select {padding:14px 15px; color:#666; font-size:14px;}
  4331. .modal.exchange_pop .select_custom .combo .list > li {padding:0 15px;}
  4332. .modal.exchange_pop .modify_option_area {padding:40px 0; border-top:1px solid #ddd; border-bottom:1px solid #ddd;}
  4333. .modal.exchange_pop .modify_option_area .modify_box {margin-top:30px; padding-top:30px; border-top:1px dashed #ddd;}
  4334. .modal.exchange_pop .modify_option_area .modify_box:first-child {margin-top:0; padding-top:0; border-top:none;}
  4335. .modal.exchange_pop .modify_option_area .modify_box .name_blk {color:#222; font-size:14px; font-weight:500; line-height:1;}
  4336. .modal.exchange_pop .modify_option_area .modify_box .select_blk {width:510px;}
  4337. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_radio {margin-top:12px;}
  4338. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_radio .form_field {display:block; margin-top:-8px;}
  4339. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_radio .form_field > div {margin-left:8px; margin-top:8px;}
  4340. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_radio .form_field > div:nth-child(7n-6) {margin-left:0px;}
  4341. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_radio .form_field input[type="radio"] + label {display:block; width:66px; height:42px; padding:0; line-height:42px; text-align:center; background:#fff; box-sizing:border-box; border:1px solid #ddd; color:#222; font-weight:200; font-size:14px;}
  4342. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_radio .form_field input[type="radio"] + label::before,
  4343. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_radio .form_field input[type="radio"] + label::after {display:none;}
  4344. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_radio .form_field input[type="radio"]:checked + label {border:1px solid #fd4802;}
  4345. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_radio .form_field input[type="radio"]:disabled + label {text-decoration:line-through; background:#f5f5f5; border-color:#f5f5f5; color:#bbb; opacity:1;}
  4346. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_radio .form_field > div {float:left; width:auto;}
  4347. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_select {margin-top:20px;}
  4348. .modal.exchange_pop .modify_option_area .modify_box .select_blk .sel_select .select_custom .combo {width:100%;}
  4349. .modal.exchange_pop .modify_option_area .modify_box .allcheck_blk {margin-top:20px;}
  4350. /* popup_고객등록 이미지 팝업1 */
  4351. .modal.contact_img_pop {width:700px; height:700px; max-width:none; max-height:none; padding:0px; box-sizing:border-box;}
  4352. .modal.contact_img_pop a.close-modal {right:0; top:-60px; background-image:url('//image.istyle24.com/Style24/images/pc/ico_pop_cls02.png');}
  4353. .modal.contact_img_pop .modal-body .pop_cont {max-height:none;}
  4354. .modal.contact_img_pop .swiper-slide .pop_img {position:relative; width:100%; height:0; padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:contain;}
  4355. .modal.contact_img_pop .swiper-pagination {position:absolute; left:0; right:0; bottom:30px; width:100%; text-align:center;}
  4356. .modal.contact_img_pop .swiper-pagination .swiper-pagination-bullet {width:10px; height:10px; margin-left:10px; background:#ddd; opacity:1;}
  4357. .modal.contact_img_pop .swiper-pagination .swiper-pagination-bullet-active {background:#fd4802;}
  4358. .modal.contact_img_pop .swiper-pagination .swiper-pagination-bullet:first-child {margin-left:0;}
  4359. .modal.contact_img_pop .swiper-button-prev::after,
  4360. .modal.contact_img_pop .swiper-button-next::after {content: '';}
  4361. .modal.contact_img_pop .swiper-button-prev,
  4362. .modal.contact_img_pop .swiper-button-next {top:50%; transform:translateY(-50%); margin:0; display:inline-block;}
  4363. .modal.contact_img_pop .swiper-button-prev {left:-70px;}
  4364. .modal.contact_img_pop .swiper-button-next {right:-70px;}
  4365. .modal.contact_img_pop .swiper-button-prev:after {content:''; display:block; position:absolute; top:0px; left:0; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(-135deg); -webkit-transform:rotate(-135deg);}
  4366. .modal.contact_img_pop .swiper-button-next:after {content:''; display:block; position:absolute; top:0px; right:0; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(45deg); -webkit-transform:rotate(45deg);}
  4367. /* popup_고객등록 이미지 팝업2 */
  4368. .modal.thumb_img_pop {width:700px; height:700px; max-width:none; max-height:none; padding:0px; box-sizing:border-box;}
  4369. .modal.thumb_img_pop a.close-modal {right:0; top:-60px; background-image:url('//image.istyle24.com/Style24/images/pc/ico_pop_cls02.png');}
  4370. .modal.thumb_img_pop .modal-body .pop_cont {max-height:none;}
  4371. .modal.thumb_img_pop .swiper-slide .pop_img {position:relative; width:100%; height:0; padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:contain;}
  4372. .modal.thumb_img_pop .swiper-slide .pop_img iframe {position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%;}
  4373. .modal.thumb_img_pop .swiper-slide .pop_img .picsThumbs {max-width:none; max-height:none; width: 100%; height: 100%;}
  4374. .modal.thumb_img_pop .swiper-pagination {position:absolute; left:0; right:0; bottom:30px; width:100%; text-align:center;}
  4375. .modal.thumb_img_pop .swiper-pagination .swiper-pagination-bullet {width:10px; height:10px; margin-left:10px; background:#ddd; opacity:1;}
  4376. .modal.thumb_img_pop .swiper-pagination .swiper-pagination-bullet-active {background:#fd4802;}
  4377. .modal.thumb_img_pop .swiper-pagination .swiper-pagination-bullet:first-child {margin-left:0;}
  4378. .modal.thumb_img_pop .swiper-button-prev::after,
  4379. .modal.thumb_img_pop .swiper-button-next::after {content: '';}
  4380. .modal.thumb_img_pop .swiper-button-prev,
  4381. .modal.thumb_img_pop .swiper-button-next {top:50%; transform:translateY(-50%); margin:0; display:inline-block;}
  4382. .modal.thumb_img_pop .swiper-button-prev {left:-70px;}
  4383. .modal.thumb_img_pop .swiper-button-next {right:-70px;}
  4384. .modal.thumb_img_pop .swiper-button-prev:after {content:''; display:block; position:absolute; top:0px; left:0; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(-135deg); -webkit-transform:rotate(-135deg);}
  4385. .modal.thumb_img_pop .swiper-button-next:after {content:''; display:block; position:absolute; top:0px; right:0; width:34px; height:34px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(45deg); -webkit-transform:rotate(45deg);}
  4386. /* popup_룩북 피커 팝업 */
  4387. .modal.lookbook_item_pop {max-width:585px; min-height:390px; padding:0;}
  4388. .modal.lookbook_item_pop .item_prod {width:100%;}
  4389. .modal.lookbook_item_pop .modal-header {margin:0;}
  4390. .modal.lookbook_item_pop .itemsGrp {margin-bottom:0;}
  4391. .modal.lookbook_item_pop .itemsGrp .item_prod {width: 100%; overflow: hidden;}
  4392. .modal.lookbook_item_pop .itemsGrp .item_prod .item_state {display: table; padding-left: 310px; padding-right: 55px; padding-bottom: 0; width: 100%; min-height:390px;}
  4393. .modal.lookbook_item_pop .itemsGrp .item_prod .itemLink {display: table-cell; position: static; vertical-align: middle;}
  4394. .modal.lookbook_item_pop .itemsGrp .item_prod .itemPic {position: absolute; top: 0; left: 0; margin-bottom: 0; width: 260px; height:390px; padding:0; background: #f9f9f9;}
  4395. .modal.lookbook_item_pop .itemsGrp .item_prod .itemBrand {margin:0px 0px 15px; font-size: 14px; font-weight: 300; line-height: 14px;}
  4396. .modal.lookbook_item_pop .itemsGrp .item_prod .itemName {margin:0px 0px 25px; font-size: 18px; font-weight: 300; line-height: 28px; height:56px;}
  4397. .modal.lookbook_item_pop .itemsGrp .item_prod .itemPrice {font-size: 26px; line-height: 1; font-weight: 500; margin:0;}
  4398. .modal.lookbook_item_pop .itemsGrp .item_prod .itemPrice_original {display: inline-block; margin-left:0; margin-bottom:10px; font-size: 20px; font-weight: 200;}
  4399. .modal.lookbook_item_pop .itemsGrp .item_prod .itemPercent {position:relative; font-size: 26px; line-height: 0.8;}
  4400. .modal.lookbook_item_pop .itemsGrp .item_prod .itemLink .btn {margin-top:40px; border:1px solid #a7a7a7; font-weight:300;}
  4401. /* popup_마이페이지 회수조회 팝업 */
  4402. .modal.reclaim_pop {width: 1000px; max-width:1000px;}
  4403. .modal.reclaim_pop .modal-header {margin-bottom: 0; padding-bottom: 40px;}
  4404. .modal.reclaim_pop .modal-body .pop_cont {color:#222;}
  4405. @media screen and (max-width:1459px) {
  4406. .fold_head .fold_state {width: 140px;}
  4407. .case1 .fold_head .fold_tit span, .case2 .fold_head .fold_tit span{width: 720px;}
  4408. .cs .history_wrap .txt {padding-left: 0px;}
  4409. .cs .history_wrap {padding: 50px 30px 50px 0;}
  4410. }
  4411. /* IE */
  4412. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  4413. /* my */
  4414. .goods_info .order_review .review .photo_box .photo_list > ul li {width:calc(10% - 9px);}
  4415. /* od */
  4416. /* cs */
  4417. /* mb */
  4418. /* pd */
  4419. /* dp */
  4420. /* ev */
  4421. /* br */
  4422. /* sch */
  4423. }