| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663 |
- @charset "utf-8";
- body {min-width:1460px; overflow-x:auto;}
- .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);}
- .blind:before {display: block;width: 0;height: 0;font-size: 0;content: '\00a0';}
- /* modal popup */
- .modal .input_wrap .form_control {float:none; width: 100%; padding:5px 20px;}
- .modal .input_wrap .form_control, .modal .form_field .select {height: 42px; font-size: 14px;}
- .modal .select_dress {padding:11px 20px;}
- .modal .desc {color:#999; font-size: 14px;}
- .modal .input_wrap {width: 100%;}
- .modal .modal-body section {margin-bottom: 0px;}
- .modal .modal-footer {text-align: center;}
- .modal .modal-footer button {width: 100%; height: 60px; font-size: 18px; /*background: #222;*/}
- /* layout */
- .container {width:100%; padding:0; margin: 0 auto; position:relative; *zoom:1;}
- .container:after {clear:both; content:"";display:block;}
- .container .wrap {position:relative; width:100%; min-width: 1460px; max-width: 1920px; /*min-width: 1380px;*/ padding-left:70px; padding-right:70px; margin: 0px auto; box-sizing:border-box;}
- .container.main .wrap, .container.dp .wrap {position:relative; width:100%; min-width:auto; max-width:auto; padding-left:0px; padding-right:0px;}
- /* .container .wrap.wide {min-width: 100%;} */
- .container .wrap .content {position:relative; /*max-width: 1460px;*/ margin:0 auto; }
- .container.my .wrap .content {max-width:1460px;} /* 마이페이지 서브 레이아웃 */
- .container .wrap .content.wide{width:100%; /*max-width: 1920px;padding: 0px 0px;*/ padding-left: 0px; padding-right: 0px; margin:0 auto;}
- .container .wrap .content section {/*width: 100%;*/ display:block;}
- /* max-width: 1820px; */
- /* min-width: 1350px; */
- @media screen and (min-width:1460px) {}
- /* 검색 */
- .fs25 {font-size: 25px;}
- .fs18 {font-size: 18px;}
- .fwb {font-weight:bold; }
-
- /* breadcrumb */
- .breadcrumb {padding:0px 70px; margin:42px auto 62px;}
- .breadcrumb ul li {display: inline-block; color: #888;}
- .breadcrumb ul li:last-child {color:#222; font-weight: 300;}
- .breadcrumb ul li:first-of-type::before {content:none;}
- .breadcrumb ul li::before {content:''; display: inline-block; width:6px; height: 11px; padding: 0 12px; background: url('/images/pc/ico_bread_root.png')no-repeat center center;}
- /* content */
- .cont_body::after {content: ''; display: block; clear: both;}
- @media screen and (max-width: 1620px){
- .container .wrap,
- .breadcrumb,
- .common_header > .area,
- .gnb,
- .common_footer,
- #header.minify .common_header > .area,
- #header.minify .common_header > .gnb,
- .container.dp .wrap
- {padding-left:70px; padding-right:70px;}
-
- }
- @media screen and (max-width: 1459px){
- /*.container .wrap,
- .breadcrumb,
- .common_header > .area,
- .gnb,
- .common_footer {padding-left:0; padding-right:0;}*/
- }
- @media (min-width:1440px){
- .visual > .area{height:532px;}
- }
- @media screen and (max-width: 1439px) {
- .visual > .area{height:445px;}
- }
- @keyframes caption_animation {
- from {right:30px;bottom:20px;opacity:0}
- to {bottom:41px;opacity:1}
- }
- @keyframes img_animation_a {
- from {top:30px;opacity:0}
- to {top:0;opacity:1}
- }
- @keyframes img_animation_b {
- from {left:30px;opacity:0}
- to {left:0;opacity:1}
- }
- .area .banner_left {top:0}
- .area .banner_right {top:0}
- /* LNB_layout */
- .lnb,.my_lnb {float: left;width: 17%;}
- .lnb + .cont,.my_cont {float: left;width: 83%;}
- .lnb_tit,.sec_head {margin-bottom: 60px;}
- .lnb_tit h2 {font-size: 36px; font-weight: 500;}
- .lnb_list::after {display: block; content: ''; width:160px; height: 1px; background: #ddd;}
- .lnb_list ul li {margin-bottom:35px; line-height:1;}
- .lnb_list ul li a {color:#888; font-size:19px; font-weight:200; letter-spacing:-0.025em;}
- .lnb_list ul li a.on {color:#222; border-bottom: 2px solid #222; font-weight:500;}
- .lnb_foot {padding-top:30px; line-height:1;}
- .lnb_foot ul li {margin-bottom:20px;}
- .lnb_foot ul li p {color:#222; font-weight:300; font-size:14px; line-height:1;}
- .lnb_foot ul li:nth-child(1) p {}
- .lnb_foot ul li:nth-child(2) p {font-size:28px; font-weight:800;}
- .lnb_foot ul li:nth-child(3) p {color:#888; line-height:20px;}
- /* 상품리스트 > 상품 form */
- .item_gd {}
- .item_gd figure {padding:0; margin:0}
- .item_gd figure a {display:block; position:relative;}
- .item_gd figure::after {clear:both; display:block; content:'';}
- .item_gd figure figcaption {display:block;}
- .item_gd figure figcaption a {display:block;}
- .item_gd figure figcaption .brand {margin-top:0; color:#888; font-size:12px; font-weight:300;}
- .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;}
- .item_gd figure figcaption .price {line-height:20px;}
- .item_gd figure figcaption .price::after {content:''; display:block; clear:both;}
- .item_gd figure figcaption .price .selling_price {float:left; color:#222; font-size:16px; font-weight:500;}
- .item_gd figure figcaption .price del {float:left; padding-left:10px; color:#888; font-size:14px; font-weight:300;}
- .item_gd figure figcaption .price .discount {color:#fd4802; font-size:16px; font-weight:300;}
- .item_gd figure figcaption .option {color:#888; font-size:12px; line-height:1.4;}
- .item_gd span.thumb {display:block; position:relative; height:0; line-height:0; padding-top:150%; background-color:#eee;}
- .item_gd span.thumb img {position:absolute; left:0; right:0; top:0; bottom:0; width:100%; height:100%; z-index:2;}
- /* 상품리스트 slide */
- .item_slide {}
- .item_slide .item_gd {padding:0 10px}
- .item_slide .item_gd figcaption {padding:0 5px}
- .item_slide .item_gd a .brand {margin-top:20px;}
- .item_slide .item_gd a .name {margin-top:15px;}
- .item_slide .item_gd a .price {margin-top:40px;}
- .item_slide .item_gd a .price .discount {float:right;}
- .item_slide .item_gd a .itemLike {right:20px; top:20px;}
- .item_slide .slick-dots {bottom:-70px;}
- .item_slide .slick-dots li button {background-color:#ddd;}
- .item_slide .slick-prev,
- .item_slide .slick-next {position:absolute; top:50%; transform:translateY(-50%); margin-top:-60px; font-size:0;}
- .item_slide .slick-prev {left:-50px;}
- .item_slide .slick-next {right:-50px;}
- .item_slide .slick-prev::after,
- .item_slide .slick-next::after {content: ''; display:inline-block; width:27.5px; height:50px; background:url(/images/pc/ico_arr_lg.png) no-repeat;}
- .item_slide .slick-prev::after {background-position:0 50%;}
- .item_slide .slick-next::after {background-position:100% 50%;}
- /* 테이블 type1 수평 행,열별 구분선 없음 */
- .tbl.type1 {padding:15px 0; border-top:1px solid #000; border-bottom:1px solid #ddd;}
- .tbl.type1 table {text-align:left; word-break:keep-all;}
- .tbl.type1 table th,
- .tbl.type1 table td {position:relative; padding:10px 40px; font-weight:200; font-size:16px; letter-spacing:-0.025em;}
- .tbl.type1 table th {font-weight:300;}
- /* 테이블 type2 - 수직형 행,열별 구분선 있음 */
- .tbl.type2 {padding:0; border-top:1px solid #000;}
- .tbl.type2 table {word-break:keep-all;}
- .tbl.type2 table th,
- .tbl.type2 table td {position:relative; padding:20px 0; border-bottom:1px solid #ddd; font-weight:200; font-size:16px; letter-spacing:-0.025em; text-align:center;}
- .tbl.type2 table th {font-weight:300;}
- /* 테이블 type3 - 결제정보 */
- .tbl.type3 {padding:0; border:1px solid #000;}
- .tbl.type3 table {word-break:keep-all;}
- .tbl.type3 table th,
- .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;}
- .tbl.type3 table th {font-weight:300;}
- .tbl.type3 table tr:last-child td {border-bottom:none;}
- /* 테이블 type4 - 수평 th 컬러구분 */
- .tbl.type4 table {border-top:1px solid #000;}
- .tbl.type4 table th,
- .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;}
- .tbl.type4 table th {background:#f5f5f5; color:#222; font-weight:300;}
- .tbl.type4 table td {position:relative; font-weight:200;}
- /* 안내 */
- .com_info_txt {padding:40px; border:1px solid #ddd; line-height:1.2;}
- .com_info_txt .tit {position: relative; font-size: 16px; color: #666; padding-left: 30px; margin-bottom: 30px; font-weight:300;}
- .com_info_txt .tit:after {content:''; position: absolute; top:50%; left:0; transform:translateY(-50%); width: 20px; height: 20px; background: url(/images/pc/ico_null02.png) no-repeat center}
- .com_info_txt ul li {position: relative; font-size: 14px; color: #888; padding-left: 15px; margin-bottom: 10px; line-height: 1.4;}
- .com_info_txt ul li:last-child {margin-bottom: 0;}
- .com_info_txt ul li:after {content:''; position: absolute; top:7px; left: 0; background: #858585; width: 3px; height: 3px;}
- /* 주문내역 테이블 리스트 */
- .part_deliver {position:relative;}
- .part_deliver .tbl.type2 {border-bottom:1px solid #ddd;}
- .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;}
- .part_deliver .tbl.type2 table td.merge_row {border-top:1px solid #ddd;}
- .part_deliver .tbl.type2 table tr.bundle_row {border-top:1px solid #ddd;}
- .part_deliver .tbl.type2 table tr:first-of-type {border-top:none;}
- .part_deliver .tbl.type2 table tr:first-of-type td.merge_row {border-top:none;}
- .part_deliver .tbl.type2 table td:first-child {border-left:none;}
- .part_deliver .tbl.type2 table tr.bundle_row td:first-child {border-top:none;}
- .part_deliver table .info_item {display:table; position:relative; width:900px; text-align:left; box-sizing:border-box;}
- .part_deliver table .info_item > div {display:table-cell; vertical-align:middle; padding-top:30px; padding-bottom:30px;}
- .part_deliver table .info_item .form_box {width:40px; position:relative; height:150px; vertical-align:top;}
- .part_deliver table .info_item .thumb_box {width:100px; height:150px; vertical-align:top;}
- .part_deliver table .info_item .thumb_box a {display:block; background:#f5f5f5;}
- .part_deliver table .info_item .info_box {padding-left:30px; padding-right:30px;}
- .part_deliver table .info_item .info_box > * {line-height:1;}
- .part_deliver table .info_item .info_box .od_name {}
- .part_deliver table .info_item .info_box .od_name a {display:block;}
- .part_deliver table .info_item .info_box .od_name span {display:inline-block; line-height:1;}
- .part_deliver table .info_item .info_box .od_name .brand {color:#888; font-size:14px; font-weight:200;}
- .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;}
- .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;}
- .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;}
- .part_deliver table .info_item .info_box .od_opt {margin-top:14px; color:#666; font-size:14px;}
- .part_deliver table .info_item .info_box .od_opt .option {display:block;}
- .part_deliver table .info_item .info_box .od_opt .count {display:block; margin-top:12px;}
- .part_deliver table .info_item .info_box .od_opt em {position:relative; padding-left:10px; margin-left:10px;}
- .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}
- .part_deliver table .info_item .info_box .od_opt em:first-child {padding-left:0; margin-left:0;}
- .part_deliver table .info_item .info_box .od_opt em:first-child::before {border-left:0;}
- .part_deliver table .info_item .info_box .od_modify {margin-top:17px}
- .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;}
- .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;}
- .part_deliver table .info_item .info_box .od_moresale {position:relative; margin-top:20px; font-size:14px;}
- .part_deliver table .info_item .info_box .od_moresale .ico {margin-right:10px;}
- .part_deliver table .info_item .info_box .od_moresale .btn_moresale {display:inline-block; position:relative; padding-right:20px; color:#fd4802;}
- .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(/images/pc/ico_mb_arrow2.png) no-repeat 0 0; background-size:auto 100%;}
- .part_deliver table .info_item .info_box .od_moresale .btn_moresale.active::after {transform:rotate(-90deg);}
- .part_deliver table .info_item .info_box .od_moresale .btn_moresale span {line-height:18px;}
- .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;}
- .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;}
- .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;}
- .part_deliver table .info_item .info_box .od_moresale .li_moresale ul li:first-child {margin-top:0}
- .part_deliver table .info_item .info_box .od_moresale .li_moresale ul li a {margin-left:20px; padding-right:15px; background:url(/images/pc/ico_mb_arrow2.png) no-repeat 100% 0%; color:#fd4802; font-weight:200; line-height:inherit;}
- .part_deliver table .info_item .info_calc {width:190px; text-align:center;}
- .part_deliver table .info_item .info_calc .btn {width:78px; height:34px; padding:0; font-size:14px; font-weight:200; box-sizing:border-box;}
- .part_deliver table .info_calc .price {}
- .part_deliver table .info_calc .price .selling_price {display:block; color:#222; font-size:20px; font-weight:300;}
- .part_deliver table .info_calc .price .selling_price.msale {color:#fd4802;}
- .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;}
- .part_deliver table .info_calc .point {margin-top:10px; margin-bottom:15px; color:#888; font-size:14px; font-weight:200;}
- .part_deliver table .info_calc .util {display:inline-block; margin-top:10px}
- .part_deliver table .info_calc .util::after {content:''; clear:both; display:block;}
- .part_deliver table .info_calc .util > span {float:left; display:inline-block; position:relative; margin-left:24px;}
- .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;}
- .part_deliver table .info_calc .util > span:first-child {margin-left:0;}
- .part_deliver table .info_calc .util > span:first-child::before {display:none;}
- .part_deliver table .info_calc .util button {position:relative; display:inline-block;}
- .part_deliver table .info_calc .util button.btn_favorite {}
- .part_deliver table .info_calc .util button.btn_delete {}
- .part_deliver table .info_dlvr {}
- .part_deliver table .info_dlvr .dlvr_fee {display:block; color:#222; font-size:18px; font-weight:300;}
- .part_deliver table .info_dlvr .dlvr_shop {display:block; margin-top:12px; color:#666; font-size:14px; font-weight:200;}
- .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;}
- .part_deliver table .info_item.unable {}
- .part_deliver table .info_item.unable .info_unable {display:block; padding:20px 0 0 0; color:#fd4802; font-size:14px;}
- .part_deliver table .info_item.unable .info_calc .btn {opacity:1; background-color:#aaa; color:#fff; border-color:#aaa;}
- /* 주문결제정보 */
- .order_amount {}
- .order_amount dl::after,
- .order_amount dl div::after {content: '';display: block;clear: both;}
- .order_amount dl dt {float:left}
- .order_amount dl dd {float:right}
- .order_amount dl dd.price {font-weight:500;}
- .order_amount dl dd.price .oder_total_price {font-size:18px; font-weight:600;}
- .order_amount dl div {margin-top:10px; color:#888; font-size:14px}
- .order_amount dl div:first-child {margin-top:0px}
- .order_amount dl div dd .paymethod {color:#666; font-weight:300;}
- .order_amount .ico_calc {position:absolute; top:50%; right:-13px; transform:translateY(-50%); width:26px; height:26px; background:#fff; border-radius:50%; border:1px solid #ddd; box-sizing:border-box; z-index:1; }
- .order_amount .ico_calc.minus::after {content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:12px; height:2px; background:#222;}
- .order_amount .ico_calc.result::before {content:''; position:absolute; top:9px; left:50%; transform:translateX(-50%); width:12px; height:2px; background:#222;}
- .order_amount .ico_calc.result::after {content:''; position:absolute; top:13px; left:50%; transform:translateX(-50%); width:12px; height:2px; background:#222;}
- /* sub */
- /* mb_공통 */
- .mb {padding:160px 0 220px; font-weight:200;}
- .mb [class^="ico_content_"]::before {margin:0px auto 25px;}
- .mb h4 { margin-bottom:42px; text-align:center; line-height:1;}
- .mb input[type="text"],
- .mb input[type="password"] {float:none; width: 100%; padding:15px 0 15px 18px; color:#222; font-size:16px; font-weight:300;}
- .mb input[type="text"]::placeholder{color:#999; font-weight:200;}
- .mb .form_field {display:block;}
- .mb .btn {font-size:18px; font-weight:300}
- .mb .ui_row {margin-top:0px; margin-bottom:0}
- .mb .btn_group_block {float:none; margin-top:40px}
- .mb .btn_group_block [class^='ui_col_'] {overflow:hidden; margin-right:5px; margin-left:5px;}
- .mb .btn_group_block button {padding-top:15px; padding-bottom:16px;}
- .mb .cont_body {width:530px; margin: 0 auto;}
- .mb .form_wrap .form_info {text-align:center;}
- .mb .form_wrap .form_info p {font-size:18px; font-weight:300; letter-spacing:-0.025em; line-height:24px;}
- .mb .form_wrap .form_info p.t_info {font-size: 16px; color:#888; font-weight:300; line-height:1.625;}
- .mb .form_wrap .form_field input::placeholder {color:#888; font-weight:200;}
- .mb .form_wrap .form_field {margin-top:10px;}
- .mb .form_wrap .form_field:first-child {margin-top:0px;}
- .mb .foldGroup {margin:0;}
- .mb .form_group{display:none;}
- .mb .form_group:first-of-type{display:block;}
- .mb .form_group::after {display: block; content: ''; clear: both;}
- .mb .fold_tit,
- .mb .fold_tit span {width: inherit !important;}
- .mb .fold_head .fold_tit {padding: 0 0 0 34px;}
- .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('/images/pc/ico_chk_rdi.png')no-repeat -60px 0px;}
- .mb .fold_head .fold_tit span {font-size:18px; line-height:1;}
- .mb .fold_head.on .fold_tit::before {background-position:-80px 0;}
- .mb .foldGroup .fold_cont {display:none; padding:40px 30px; box-sizing: border-box; background: #f5f5f5; border-top: 1px solid #ddd;}
- .mb .foldGroup .fold_cont .txt {font-size:16px; color:#666; font-weight:300; text-align:center;}
- .mb .find_result {padding:0px 0px 40px; font-weight:200;}
- .mb .find_result .help_block {text-align:left}
- .mb .find_result input {font-size:16px;}
- .mb .find_result .form_print_bar {padding:34px 0; display: flex; display: -ms-flexbox; justify-content: center; align-items: center; background: #f5f5f5; text-align: left; color:#222; font-size:16px;}
- .mb .find_result .form_print_bar ul li {margin-top: 16px;}
- .mb .find_result .form_print_bar ul li:first-child {margin-top: 0;}
- .mb .find_result .form_print_bar ul li span {display:inline-block;}
- .mb .find_result .form_print_bar ul li span.t_span {width:120px; color:#888;}
- .mb .registration_nav {margin-bottom:40px;}
- .mb .registration_nav ul::after {content:''; display: block; clear:both;}
- .mb .registration_nav ul li {float: left; width:50%; text-align: center; background: #f5f5f5; box-sizing: border-box;}
- .mb .registration_nav ul li.active {background:#fff; border-top: 2px solid #fd4802}
- .mb .registration_nav ul li a {display:inline-block; width:100%; height:60px; line-height:60px; color:#888; font-size:18px; font-weight:300; letter-spacing:-0.025em;}
- .mb .registration_nav ul li.active a {color:#fd4802; font-weight:500;}
- .mb .registration_tap .form_group > .form_field > div {float:left; width:auto; margin-left:108px}
- .mb .registration_tap .form_group > .form_field > div:first-child {margin-left:0}
- .mb .registration_tap .registration_cont .regist_box {display:none; padding:40px 0; color:#666; font-size:16px; line-height:1.625; text-align:center;}
- .mb .registration_tap .registration_cont .regist_box.on {display:block;}
- .mb .registration_tap .foldGroup li:first-child {border-top: none;}
- .mb .registration_tap .foldGroup li .fold_head.on::after {background-repeat: no-repeat; background-position: 0 0%;}
- .mb .registration_tap .foldGroup li .fold_head::after {background: url(/images/pc/ico_mb_arrow.png)no-repeat; background-position: 0 100%;}
- .mb .sns_wrap {position:relative; margin-top:40px; text-align:center;}
- .mb .sns_wrap h5 {color:#222; font-size:18px; font-weight:300; letter-spacing:-0.025em; margin:0 0 15px;}
- .mb .sns_wrap ul {display:inline-block;}
- .mb .sns_wrap ul::after {content:''; clear:both; display:block;}
- .mb .sns_wrap ul li {float:left; width:60px; margin-left:40px}
- .mb .sns_wrap ul li:first-child {margin-left:0}
- .mb .sns_wrap ul li a {display:block; text-align:center;}
- .mb .sns_wrap ul li a span {display:block; color:#222; font-size:14px; font-weight:300; margin-top:10px; line-height:1.25;}
- .mb .sns_wrap ul li a .ico_snslogin {margin-right:10px;}
- .mb .sns_wrap ul li a .ico_snslogin::before {width:60px; height:60px; background-image:url(/images/pc/ico_sns_bg.png);}
- .mb .sns_wrap ul li a .ico_snslogin.kakao::before {background-position:-70px 0;}
- .mb .sns_wrap ul li a .ico_snslogin.naver::before {background-position:0 0;}
- .mb .sns_wrap ul li a .ico_snslogin.yes24::before {background-position:-140px 0;}
- .mb .btn_nonMb {display:inline-block; color:#888; font-size:14px; font-weight:200; border-bottom:1px solid #888;}
- .mb .t_err {position:relative; padding-left:24px; font-weight:200;}
- .mb .t_err::before {position:absolute; left:0; top:1px;}
- .mb .help_block {margin:0; text-indent:0; text-align:left;}
- .mb .help_block .t_err {margin-top:10px;}
- /* mb_idInquiry_1 */
- .find h4 {margin-bottom:45px}
- .find .find_result {padding-top:40px;}
- .find .input_wrap {position: relative; width:100%;}
- .find .input_wrap .form_control {height: inherit;}
- .find .input_wrap .btn {padding:6px 22px; border:none; position: absolute; top:50%; transform: translateY(-50%); right:10px; font-size:14px; font-weight:200;}
- /* mb_idInquiry_2 */
- .find_complete {}
- /* mb_idInquiry_3,mb_idInquiry_4 */
- .nocontent {}
- /* mb_idInquiry_5 */
- .security_pw {}
- /* mb_idInquiry_6 */
- .dormant .form_wrap .form_btn::after {clear:both; display:block; content:'';}
- .dormant .form_wrap .ui_row button {position:relative; padding:30px; border-radius:45px;}
- .dormant .form_wrap .ui_row button span {font-size: 18px; font-weight: 300;}
- .dormant .form_wrap .ui_row button span .ico {margin-right:10px}
- .dormant .form_wrap .ui_row button span .ico::before {margin-top:-6px}
- .dormant .form_wrap .form_summary {margin-top:40px;}
- .dormant .form_wrap .form_summary strong {font-size: 16px; font-weight:300;}
- .dormant .form_wrap .form_summary p {margin-top: 14px; color:#888; font-weight:200; line-height:1.857; word-break:keep-all;}
- /* mb_idInquiry_7 */
- .dormant_clear {}
- /* mb_idInquiry_8 */
- .non_mb_oder {}
- .non_mb_oder .form_summary {padding-top:40px; border-top:1px solid #ddd;}
- .non_mb_oder .form_summary .txt {position:relative; margin-bottom:10px; font-size:18px; line-height:1;}
- .non_mb_oder .form_summary .txt span.c_primary {font-size:20px;}
- .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;}
- .non_mb_oder .form_summary .t_info {display:block; color:#888; font-size:16px}
- /* mb_join_1 */
- .join1 .form_wrap .form_sign_up {position:relative; display:block; font-weight:500;}
- .join1 .form_wrap .form_sign_up p {color:#888; font-size:16px; font-weight:200; line-height:1.5;}
- .join1 .form_wrap .form_sign_up p.c_primary {font-size:24px; font-weight:300;}
- /* mb_join_2 */
- .join2 .form_wrap .desc_wrap p {font-size:16px; line-height:1.75; font-weight:200; color:#888;}
- .join2 .form_wrap .desc_wrap p a {color:#666; font-weight:300;}
- .join2 .help_block::after {clear:both; display:block; width:100%;}
- .join2 .help_block .btn.btn_sm {float:left; margin-right:8px; padding:6px 15px; border-color:#222; font-size:14px;}
- /* mb_join_3 */
- .join3 .form_wrap {text-align:center;}
- .join3 .form_wrap .print_bar {padding:34px 0; background: #f5f5f5;}
- .join3 .form_wrap .print_bar p {font-size:18px;}
- .join3 .btn_group_md .btn_default {border-color:#a7a7a7}
- /* mb_join_3 */
-
- /* mb_login */
- .mb .login {}
- .login .btn {border: 1px solid #222;}
- .login .help_block {margin-top:10px; text-indent:0; text-align:left;}
- .login .help_block .captcha {padding: 30px; background: #f5f5f5; text-align: left;}
- .login .help_block .captcha ul {display: flex; align-items: center;}
- .login .help_block .captcha .captcha_box {width:235px; height: 72px; border: 1px solid #ddd; background: chartreuse;}
- .login .help_block .captcha .captcha_btn_dual {margin: 0 18px 0 10px;}
- .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('/images/pc/ico_captcha_btn.png')no-repeat center 9px;}
- .login .help_block .captcha .captcha_btn_dual button:first-child {margin-bottom: 8px;}
- .login .help_block .captcha .captcha_btn_dual button:last-child {background-position:center -31px;}
- .login .help_block .captcha .captcha_area {margin-bottom: -7px;}
- .login .help_block .captcha .captcha_area input {width:200px; padding: 17px 0 17px 14px;}
- .login .help_block .captcha .captcha_area label { display: block; width: 100%; margin:-8px 0 4px 0;}
- .login .login_check {padding: 12px 0 0;}
- .login .login_check::after {content:''; display: block; clear:both;}
- .login .login_check .form_field {float:left; display:inline-block; width:59%; text-align:left}
- .login .login_check .form_field span {font-size: 16px;}
- .login .btn_mb_wrap {margin:20px 0 0 0; text-align:center;}
- .login .btn_mb_wrap ul {display:inline-block}
- .login .btn_mb_wrap ul::after {content:''; clear:both; display:block;}
- .login .btn_mb_wrap ul li {float:left; position:relative; margin-left:15px; padding-left:15px; font-size: 14px;}
- .login .btn_mb_wrap ul li::before {content:''; position: absolute; width:1px; height:14px; left:0px; top:50%; transform: translateY(-50%); background: #ddd;}
- .login .btn_mb_wrap ul li:first-child {margin-left: 0px; padding-left:0;}
- .login .btn_mb_wrap ul li:first-child::before {display:none}
- .login .btn_mb_wrap ul li a {display:inline-block; color:#222; line-height:24px; font-weight:200}
- .login .ui_row .ui_col_12 {margin: 0;}
- /* mb_login */
- /* cs_공통 */
- .cs {font-family:'LATO','Noto Sans CJK kr','Noto Sans kr',sans-serif; line-height:1.2; padding-bottom:150px;}
- .cs .wrap .content {max-width:1460px;}
- .cs .foldGroup {margin-top: 60px;}
- .cs .history_wrap {width: 100%; height: 173px; padding: 50px; box-sizing: border-box; background: #f5f5f5;}
- .cs .history_wrap::after {content:''; display: block; clear:both;}
- .cs .history_wrap .hist_status {float:left;}
- .cs .history_wrap .txt {float:left; padding-left:50px; color: #666; font-size: 14px; font-weight:200; box-sizing:border-box; line-height:24px;}
- .cs .history_wrap ul li {position:relative; float:left; width:180px; text-align:center;}
- .cs .history_wrap ul li::before {content:''; position:absolute; left:0; top:50%; transform: translateY(-50%); height:30px; border-left:1px solid #ddd}
- .cs .history_wrap ul li:first-child::before {display:none;}
- .cs .history_wrap .btn_area {margin-top:24px;}
- .cs .history_wrap .btn_area .btn {padding:10px 32px; border:1px solid #a1a1a1; color:#222; font-weight:300; }
- .cs .history_wrap div ul li span {display: block; font-size: 16px; font-weight: 300; letter-spacing: -0.025em; color:#666; line-height:1;}
- .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;}
- .cs .history_wrap div ul li a::after {content:''; position:absolute; left:4px; right:4px; bottom:-2px; border-bottom:2px solid #222;}
- .cs .history_wrap div ul li a.doing {color:#888}
- .cs .history_wrap div ul li a.doing::after {display:none}
- .cs .ui_foot {}
- .cs .ui_row.nodata {display: inherit; padding-top: 124px; margin-bottom: 0; /*border-top: 1px solid #222222;*/ text-align: center;}
- .cs .ui_row.nodata .foldGroup {display:none;}
- .cs .ui_row.nodata + .ui_foot {display:none;}
- .cs .ui_row.nodata::before {content: ''; display: block; width: 36px; height: 46px; margin:0 auto; background: url('/images/pc/ico_null.png')no-repeat;}
- .cs .ui_row.nodata::after {content: '등록된 문의가 없습니다.'; display: block; padding: 33px 0 160px; font-size: 22px; font-weight: 200; color: #888;}
- /* cs_faq */
- .cs .faq {}
- .faq .ui_row.nodata {border:none;}
- .faq .ui_row.nodata::after {content:'총 0개의 목록이 있습니다.';}
- .faq .quick_list {margin-bottom:50px;}
- .faq .quick_list ul,.faq .quick_list ul li {box-sizing: border-box;}
- .faq .quick_list ul {width:100%; height: 260px; display: flex; display: -ms-flexbox; flex-wrap: wrap; border:2px solid #000; align-items: center;}
- .faq .quick_list ul li {width: 19.99%; height: 49.9%; text-align: center; border-left: 1px solid #ddd; border-bottom: 1px solid #ddd;}
- .faq .quick_list ul li:nth-child(1),.faq .quick_list ul li:nth-child(6) {border-left:none;}
- .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;}
- .faq .quick_list ul li a {display: flex; display: -ms-flexbox; justify-content: center; width:100%; height: 100%; line-height:26px; font-size:16px; font-weight: 200; align-items: center; color:#222; letter-spacing:-0.025em;}
- .faq .search_wrap {margin-bottom:60px;}
- .faq .search_wrap .faq_search {height:190px; background:#f5f5f5; padding:50px; box-sizing:border-box; text-align:center;}
- .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;}
- .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;}
- .faq .search_wrap .faq_search .search_box input[type='text']::placeholder {color:#888;}
- .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('/images/pc/ico_search_faq.png') no-repeat 50% 50%; font-size:1px; text-indent:-9999px; z-index:2}
- .faq .search_wrap .faq_search .t_info {width:600px; margin:15px auto 0; font-weight:200; text-align:left;}
- .faq .fold_nav {width:100%;}
- .faq .fold_nav ul {display: flex; display: -ms-flexbox; flex-wrap: wrap; margin-top:-12px}
- .faq .fold_nav ul li {margin:12px 12px 0 0;}
- .faq .fold_nav ul li a {display:inline-block;padding:15px 22px 13px;border: 1px solid #ddd;font-size: 16px;font-weight: 300;line-height: 1; letter-spacing:-0.025em;}
- .faq .fold_nav ul li a.on {position: relative; background: #222; color:#fff; border: 1px solid #222;}
- .faq .fold_nav ul li a.on::after {content:''; position: absolute; width:0; height: 0; bottom:-1px; right:-1px; border-bottom: 9px solid #fff; border-left: 9px solid transparent;}
- .faq .foldGroup {margin-top:50px}
- .faq .foldGroup .fold_head .fold_tit {max-width: 820px;}
- .faq .foldGroup .fold_answer .answer_head {margin-bottom:10px}
- .faq .foldGroup .fold_cont > div:first-of-type {padding-top:35px; border-top:1px solid #ddd}
- /* cs_faq_pop */
- .modal.faq_pop {max-width: 1000px; max-height: 780px; padding:60px;}
- .modal.faq_pop .modal-header {border-bottom: 1px solid #ddd; margin-bottom: 0px; padding-bottom: 30px;}
- .modal.faq_pop .modal-header p {font-size: 14px; color:#888; font-weight: 200; margin-bottom: 16px; padding-left: 30px;}
- .modal.faq_pop .modal-header .modal-title {position: relative; padding-left: 68px; line-height: 1.62; font-weight: 300;}
- .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;}
- .modal.faq_pop .modal-body {position: relative; padding: 40px 10px 40px 68px; background:#f5f5f5; }
- .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;}
- .modal.faq_pop .modal-body .pop_cont > span {display:block; margin-bottom: 26px; font-weight:300; color:#222;}
- .modal.faq_pop a.close-modal {right:30px; top:30px;}
- /* cs_product, cs_contactUs */
- .cs .product {}
- .cs .contactUs {}
- .product .history_wrap,
- .contactUs .history_wrap * {box-sizing: border-box;}
- .product .fold_head .fold_tit .prod::before {display: none;}
- .product .case1 .fold_head .fold_tit {max-width: 760px;}
- .product .case1 .fold_head .fold_tit span {width: 760px;}
- .product .ui_row.nodata,
- .contactUs .ui_row.nodata {border-top:none;}
- .contactUs .fold_cont .img_group .thumb_pic {background:#fff;}
- .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;}
- .modal.cs_pop.contact_img_pop {width:800px; height:800px; max-width:none; max-height:none; padding:60px; box-sizing:border-box;}
- .modal.cs_pop.contact_img_pop .modal-body .pop_cont {max-height:none;}
- .modal.cs_pop.contact_img_pop .swiper-slide {}
- .modal.cs_pop.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;}
- .modal.cs_pop.contact_img_pop .swiper-pagination {position:absolute; left:0; right:0; bottom:15px; width:100%; text-align:center;}
- .modal.cs_pop.contact_img_pop .swiper-pagination .swiper-pagination-bullet {width:10px; height:10px; margin-left:10px; background:#ddd; opacity:1;}
- .modal.cs_pop.contact_img_pop .swiper-pagination .swiper-pagination-bullet-active {background:#fd4802}
- .modal.cs_pop.contact_img_pop .swiper-pagination .swiper-pagination-bullet:first-child {margin-left:0;}
- .modal.cs_pop.contact_img_pop .swiper-button-prev::after,
- .modal.cs_pop.contact_img_pop .swiper-button-next::after {content: '';}
- .modal.cs_pop.contact_img_pop .swiper-button-prev,
- .modal.cs_pop.contact_img_pop .swiper-button-next {top:50%; transform:translateY(-50%); margin:0; display:inline-block; }
- .modal.cs_pop.contact_img_pop .swiper-button-prev {left:-70px;}
- .modal.cs_pop.contact_img_pop .swiper-button-next {right:-70px;}
- .modal.cs_pop.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);}
- .modal.cs_pop.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);}
- /* cs_contactUs_my */
- .cs .contactUs_my {}
- .contactUs_my .blt_dot {position:relative; padding-left:10px}
- .contactUs_my .blt_dot::before {content:''; position:absolute; left:0; top:50%; margin-top:-2px; width:3px; height:3px; background:#888;}
- .contactUs_my textarea,
- .contactUs_my .select,
- .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;}
- .contactUs_my input[type="text"]::placeholder,
- .contactUs_my textarea::placeholder {color:#888; font-weight:200;}
- .contactUs_my .form_wrap {padding:30px 40px; border-top:1px solid #222; border-bottom:1px solid #ddd}
- .contactUs_my .form_control {height:42px; color:#222; font-size:14px;}
- .contactUs_my textarea {height:200px; padding:20px;}
- .contactUs_my .input_label {line-height:42px;}
- .contactUs_my .form_field {margin-top:20px}
- .contactUs_my .form_field:first-of-type {margin-top:0}
- .contactUs_my .form_field .cellphone {display:block;}
- .contactUs_my .form_field .cellphone input[type="text"]{width:400px;}
- .contactUs_my .form_field .cellphone .ck_box {display:inline-block;}
- .contactUs_my .form_field .imgUpload+.imgUpload{margin-left:20px;}
- .contactUs_my .form_field .pics{position: absolute;top: 0;left: 0;z-index: 2;}
- .contactUs_my .contactus_cnt {color:#888}
- .contactUs_my .select {height:40px; font-size:14px;}
- .contactUs_my .select .select_dress {padding:7px 20px; color:#222; font-weight:200; line-height:26px;}
- .contactUs_my .select .select_dress:after {top:16px; right: 28px; border-color:#888 transparent transparent transparent;}
- .contactUs_my .select .select_dress.active:after {top:10px; border-color: transparent transparent #888 transparent;}
- .contactUs_my .select .select_options {color:#666}
- .contactUs_my .help_block {margin-top:10px; text-indent:0;}
- .contactUs_my .ck_box {padding:10px 20px}
- .contactUs_my .ck_box input[type="checkbox"] + label {font-size:16px; font-weight:200;}
- .contactUs_my .t_err {font-weight:200}
- .contactUs_my .t_err::before {background-image:url('/images/pc/ico_err2.png');}
- .contactUs_my .info_addfile {margin-top:20px; color:#666; font-size:14px; line-height:24px; font-weight:200;}
- .contactUs_my .sec_foot {margin-top:60px}
- .contactUs_my .sec_foot .btn.btn_md {margin:0px 5px; font-weight:300; padding:15px 90px;}
- .contactUs_my .txt_cnt {text-align:right; margin-top:10px}
- /* cs_notice */
- .cs .notice .foldGroup {margin-top: 0;}
- .notice .foldGroup .critical .fold_head,
- .notice .foldGroup .critical .fold_detail,
- .notice .foldGroup .critical .fold_answer {background:#fff6f2;}
- .notice .foldGroup .critical .fold_category {font-weight:500;}
- .notice .foldGroup .fold_head .fold_tit span {width:700px; font-weight:300}
- .notice .fold_cont > div:first-of-type {padding-top:35px; border-top:1px solid #ddd}
- .notice .sec_body.nodata {border-top: 1px solid #222;}
- /* dp_list */
- .dp .item_state {padding: 0;}
- .dp .select_dress {padding:12px 15px;}
- .dp .dp_inner {max-width:1780px; margin: 0 auto;}
- .container .wrap .content.dp_list,.container .wrap .content.dp_best,.container .wrap .content.dp_hotdeal,.container .wrap .content.dp_Exhibition,.container .wrap .content.dp_Bulletship {max-width: 1780px; overflow: hidden;}
- .container .wrap .content.wide.dp_detail_case1 {max-width: 1920px;}
- .container.dp .cont_head > div {position: relative;}
- .container.dp .cont_head > div.item_header {padding: 80px 0 60px;}
- .container.dp .cont_head > div.item_header h3 {padding: 20px 0 0; font-size: 30px; line-height: 1;}
- .container.dp .cont_head > div h3 {text-align: center; margin-bottom: 0; padding-bottom: 60px; font-size: 40px; line-height: 1;}
- .container .filter_list {padding: 20px 30px; border-top: 1px solid #222; border-bottom: 1px solid #ddd;}
- .container .filter_list::after,.container .count_wrap::after {content:''; display: block; clear:both;}
- .container .filter_list .form_field {float: right; width:inherit;}
- .dp_list .form_field input[type="checkbox"] + label {font-weight: 200; line-height: 1;}
- .dp_list .form_field input[type="checkbox"] + label:before, .dp_list .form_field input[type="checkbox"]:checked + label:after {top: -4px;}
- .dp_list .form_field input[type="checkbox"]:checked + label:before {display: none;}
- .container .filter_list .form_field div:last-child {margin-left: 20px;}
- .container .filter_list > ul {float:left; display: flex;}
- .container .filter_list ul li {position: relative; margin-right: 40px;}
- .container .filter_list ul li a {color:#222; font-size: 16px; font-weight: 300;}
- .container .filter_list ul li.on a {color:#fd4802;}
- .container .filter_list > ul > li:first-child button{padding-left: 30px; position: relative;}
- .container .filter_list > ul > li:first-child button span {color:#888;}
- .container .filter_list > ul > li:first-child button::before {
- display: none;
- content:'';
- position: absolute;
- width:12px;
- height: 10px;
- background: url(/images/pc/ico_filter.png)no-repeat;
- top: 44%;
- left: 0;
- transform: translateY(-50%);
- }
- .container .filter_list > ul > li:hover > a {color:#fd4802;}
- .container .filter_list .form_field div label span {color:#888;}
- .filter_content .sort {display: none; position: relative; padding: 40px 36px 80px; border: 1px solid #ddd; border-bottom: 0; border-top: none;}
- .filter_content .sort .tap_close {
- position: absolute;
- bottom: 30px;
- right: 40px;
- display: block;
- width: 30px;
- height: 30px;
- text-indent: -9999px;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center center;
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==);
- z-index: 98;
- background-image: url(/images/pc/ico_pop_cls.png);
- }
- .filter_content .sort#tap01 > ul {position: relative;}
- .filter_content .sort#tap01 > ul > li {width: 170px; margin-bottom: 20px;}
- .filter_content .sort#tap01 ul li div {position: absolute; width:170px; left:170px; top:0; padding-left: 40px; display: none;}
- .filter_content .sort#tap01 ul li div::before {content:''; position: absolute; top:0; left:0; width:1px; height: 270px; background: #ccc;}
- .filter_content .sort#tap01 ul li div ul li {margin-bottom: 20px;}
- .filter_content .sort#tap01 ul li a {color:#666; position: relative;}
- .filter_content .sort#tap01 ul li a:hover {color:#fd4802;}
- .filter_content .sort#tap01 ul li.noDepth.on > a {color:#fd4802;}
- .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;
- }
- .filter_content .sort > ul {max-height: 350px; overflow-y: auto;}
- .filter_content .sort#tap02 ul::after {content:''; display: block; clear:both;}
- .filter_content .sort#tap02 ul li {float: left; width:228px; margin-bottom: 20px;}
- .filter_content .sort#tap03 ul li {border-bottom: 1px solid #ccc;}
- .filter_content .sort#tap03 ul li:first-child {padding-bottom: 30px;}
- .filter_content .sort#tap03 ul li:nth-child(2) {padding: 30px 0;}
- .filter_content .sort#tap03 ul li:last-child {padding-top: 30px; border: none;}
- .filter_content .sort#tap03 ul li strong {margin-right: 20px;}
- .filter_content .sort#tap03 ul li span {color:#666; margin-right: 20px;}
- .filter_content .sort#tap03 ul li .size_btn,.filter_content .sort#tap02 ul li .brand_btn,.filter_content .sort#tap06 ul li .Age_btn,.filter_content .sort#tap07 ul li .Season_btn,.filter_content .sort#tap09 ul li .Benefits_btn {cursor: pointer;}
- .filter_content .sort#tap03 ul li .size_btn input:checked+span,.filter_content .sort#tap02 ul li .brand_btn input:checked+span,.filter_content .sort#tap06 ul li .Age_btn input:checked+span,.filter_content .sort#tap07 ul li .Season_btn input:checked+span,.filter_content .sort#tap09 ul li .Benefits_btn input:checked+span {color:#fd4802;}
- .filter_content .sort#tap03 ul li .size_btn input,.filter_content .sort#tap02 ul li .brand_btn input,.filter_content .sort#tap06 ul li .Age_btn input,.filter_content .sort#tap07 ul li .Season_btn input,.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);
- }
- .filter_content .sort#tap04 ul {display: flex; justify-content: center; padding: 0 215px;}
- .filter_content .sort#tap04 ul::after {
- content: "";
- position: absolute;
- left: 20%;
- top: 46px;
- width: 60%;
- height: 2px;
- background: #222;
- z-index: -2;
- }
- .filter_content .sort#tap04 ul li {text-align: center; width:20%;}
- .filter_content .sort#tap04 ul li:last-child {margin-right: 0;}
- .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;
- }
- .filter_content .sort#tap04 ul li input + label span:last-child {color:#666;}
- .filter_content .sort#tap04 ul li input:checked + label span:first-child {border-color: #fd4802;}
- .filter_content .sort#tap04 ul li input:checked + label span:last-child {color:#fd4802;}
- .filter_content .sort#tap04 ul li span {display: block; cursor: pointer;}
- .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%;
- }
- .filter_content .sort#tap04 ul li:first-child span:first-child::before {display: none;}
- .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;
- }
- .filter_content .sort#tap05 ul {display: flex; justify-content: center; padding: 0 150px;}
- .filter_content .sort#tap05 ul::after {
- content: "";
- position: absolute;
- left: 14.5%;
- top: 46px;
- width: 70.2%;
- height: 2px;
- background: #222;
- z-index: -2;
- }
- .filter_content .sort#tap05 ul li {text-align: center; width:10%;}
- .filter_content .sort#tap05 ul li:last-child {margin-right: 0;}
- .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;
- }
- .filter_content .sort#tap05 ul li input + label span:last-child {color:#666;}
- .filter_content .sort#tap05 ul li input:checked + label span:first-child {border-color: #fd4802;}
- .filter_content .sort#tap05 ul li input:checked + label span:last-child {color:#fd4802;}
- .filter_content .sort#tap05 ul li span {display: block; cursor: pointer;}
- .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%;
- }
- .filter_content .sort#tap05 ul li:first-child span:first-child::before {display: none;}
- .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;
- }
- .filter_content .sort#tap06 ul::after,.filter_content .sort#tap07 ul::after,.filter_content .sort#tap09 ul::after {content:''; display: block; clear: both;}
- .filter_content .sort#tap06 ul li,.filter_content .sort#tap07 ul li,.filter_content .sort#tap09 ul li {float: left; margin-right: 48px;}
- .filter_content .sort#tap06 ul li:last-child,.filter_content .sort#tap07 ul li:last-child,.filter_content .sort#tap09 ul li:last-child {margin-right: 0;}
- #tap08 ul::after {content:''; display: block; clear:both;}
- #tap08 ul li {float: left; margin-left: 20px;}
- #tap08 ul li:first-child {margin-left: 0;}
- #tap08 ul li .color-check input {
- position: absolute;
- display: block;
- overflow: hidden;
- height: 1px;
- width: 1px;
- clip: rect(1px, 1px, 1px, 1px);
- }
- #tap08 ul li .color-check [class*="pdColor"] {position: relative; display: inline-block; width:26px; height: 26px; cursor: pointer;}
- [class*="pdColor"]:before {
- content: "";
- display: inline-block;
- width: 100%;
- height: 100%;
- border-radius: 50%;
- box-sizing: border-box;
- }
- .pdColor-color01::before {background-color: #000;}
- .pdColor-color02::before {background-color: #7f7f7f;}
- .pdColor-color03::before {background-color: #ff0306;}
- .pdColor-color04::before {background-color: #f98473;}
- .pdColor-color05::before {background-color: #ff99ec;}
- .pdColor-color06::before {background-color: #9c1d88;}
- .pdColor-color07::before {background-color: #9c5a28;}
- .pdColor-color08::before {background-color: #655611;}
- .pdColor-color09::before {background-color: #ffffaf;}
- .pdColor-color10::before {background-color: #ff8700;}
- .pdColor-color11::before {background-color: #012061;}
- .pdColor-color12::before {background-color: #0170c1;}
- .pdColor-color13::before {background-color: #bfffdd;}
- .pdColor-color14::before {background-color: #13b987;}
- .pdColor-color15::before {background-color: #5c5527;}
- .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(/images/pc/ico_color_check.png) no-repeat 50% 50%;
- border-radius: 50%;
- z-index: 2;
- }
- .filter_content .sort.on {display: block;}
- .container .dp_list .fillter {display: none; padding: 9px 20px; background: #f5f5f5; border:1px solid #ddd; border-top: 0;}
- .container .dp_list .fillter::after {content:''; display: block; clear:both;}
- .container .dp_list .fillter .fillter_reset {float:right; position: relative; padding: 10px 15px 10px 32px; background: #f5f5f5;}
- .container .dp_list .fillter .fillter_reset::before {
- content:'';
- position: absolute;
- top:50%;
- left:14px;
- transform: translateY(-50%);
- width:13px;
- height: 13px;
- background: url(/images/pc/ico_filter_reset.png)no-repeat;
- }
- .container .count_wrap {padding: 60px 0 30px;}
- .container .count_wrap div:first-child {float: left;}
- .container .count_wrap div:first-child p {color:#888;}
- .container .count_wrap div:first-child p span {color:#fd4802;}
- .container .count_wrap div:last-child {float: right; }
- .container .count_wrap div:last-child ul {display: flex;}
- .container .count_wrap div:last-child ul li a {color:#888;}
- .container .count_wrap div:last-child ul li:first-child a {color:#222;}
- .container .count_wrap div:last-child ul li:nth-child(2) {position: relative; padding: 0 32px;}
- .container .count_wrap div:last-child ul li:nth-child(2)::before {
- content:'';
- position: absolute;
- width:1px;
- height: 13px;
- background: #ccc;
- top:50%;
- left: 15px;
- transform: translateY(-50%);
- }
- .container .count_wrap div:last-child ul li:nth-child(2)::after {
- content:'';
- position: absolute;
- width:1px;
- height: 13px;
- background: #ccc;
- top:50%;
- right: 15px;
- transform: translateY(-50%);
- }
- .dp .item_prod {width: 15.7%; margin-right: 1.12%; margin-bottom: 70px;}
- .dp .item_prod:nth-child(6n) {margin-right: 0;}
- .dp .item_prod .itemLike {right: 20px;}
- .dp .select_options {z-index: 4;}
- .dp .cont_body .list_content.nodata .count_wrap,.dp .cont_body .list_content.nodata .itemsGrp {display: none;}
- .list_defult {display: none; text-align: center; padding: 120px 0 160px;}
- .list_content.nodata .list_defult {display: block;}
- .list_defult > div:first-child {margin-bottom: 46px;}
- .list_defult > div:first-child p {line-height: 2;}
- .list_defult .ui_row {justify-content: center; margin-bottom: 0;}
- .dp .range {width:1000px; margin: 0 auto;}
- .dp .irs--round .irs-from, .dp .irs--round .irs-to, .dp .irs--round .irs-single {background-color: #fff; color:#222; display: none;}
- .dp .irs--round .irs-from:before, .dp .irs--round .irs-to:before, .dp .irs--round .irs-single:before {display: none;}
- .dp .irs--round .irs-line {background-color:#222; height: 2px;}
- .dp .irs--round .irs-bar {background-color: #fd4802; height: 2px;}
- .dp .irs--round .irs-handle {width:15px; height: 15px; top: 30px; border-color: #fd4802; border: 2px solid #fd4802; box-shadow: none;}
- .dp .irs--round .irs-grid-text {color:#222; display: block;}
- .dp .irs--round .irs-min, .dp .irs--round .irs-max {display: none;}
- .dp .irs-grid-pol.small {display: none;}
- .dp .irs-from, .dp .irs-to, .irs-single {top:52px;}
- /* dp_best */
- .dp_best .best_nav {display: flex; justify-content: center; padding-bottom: 20px;}
- .dp_best .best_nav ul::after {content:''; display: block; clear: both;}
- .dp_best .best_nav ul li {float: left; margin-right: 40px; }
- .dp_best .best_nav ul li button {position: relative; font-size: 20px; color:#888;}
- .dp_best .best_nav ul li button:hover, .dp_best .best_nav ul li button.active {color: #222;}
- .dp_best .best_nav ul li:hover button::after, .dp_best .best_nav ul li button.active::after{content:''; position: absolute; bottom:-3px; left:0; width:100%; height: 2px; background: #222; }
- .dp_best .best_nav ul li:last-child {margin-right: 0;}
- .dp_best .ui_row {margin-bottom: 40px;}
- .dp_best .ui_row .ui_col_12 {margin: 0;}
- .dp_best .ui_row .ui_col_12 .form_field {justify-content: flex-end;}
- .dp_best .ui_row .ui_col_12 .select {width:180px;}
- /* dp_hotdeal */
- .dp_hotdeal .hotdeal {position: relative; width:100%; height: 540px; margin-bottom: 120px; background: url(/images/pc/thumb/hotdeal_bg.png)no-repeat center center;}
- #countdown{
- text-align: center;
- margin: auto;
- position: absolute;
- width:100%;
- top:268px;
- left:50%;
- transform: translateX(-50%);
- }
- #countdown {position: relative; z-index: 1;}
- #countdown span{
- width: 166px;
- font-size: 88px;
- font-weight: bold;
- text-align: center;
- color: #222;
- /* background-color: #fff; */
- padding: 50px 0;
- display: inline-block;
- position: relative;
- }
- #countdown span:nth-child(2) {margin: 0 72px;}
- #countdown span{
- width: 166px;
- font-size: 88px;
- font-weight: bold;
- text-align: center;
- color: #222;
- /* background-color: #fff; */
- padding: 50px 0;
- display: inline-block;
- position: relative;
- }
- /* 핫딜 전용 아이템 리스트 */
- .dp .itemsGrp.rowtype .item_prod {width: 49.43%; margin-bottom: 1.12%; height: 420px; border:1px solid #ddd; overflow: hidden;}
- .dp .itemsGrp.rowtype .item_prod:nth-child(2n) {margin-right: 0;}
- .dp .itemsGrp.rowtype .item_prod .itemBadge, .dp .itemsGrp.rowtype .item_prod .itemcolorchip {display: none;}
- .dp .itemsGrp.rowtype .item_prod .item_state {display: table; padding-left: 330px; padding-right: 50px; padding-bottom: 0; height: 420px; width: 100%;}
- .dp .itemsGrp.rowtype .item_prod .itemLink {display: table-cell; position: static; vertical-align: middle;}
- .dp .itemsGrp.rowtype .item_prod .itemLike {z-index: 99;}
- .dp .itemsGrp.rowtype .item_prod .itemPic {position: absolute; top: 0; left: 0; margin-bottom: 0; padding-top: 0; width: 280px; height: 420px;}
- .dp .itemsGrp.rowtype .item_prod .itemPic .shape {z-index: 89;}
- .dp .itemsGrp.rowtype .item_prod .itemPic::after {background: #f5f5f5; opacity:1; z-index: 87;}
- .dp .itemsGrp.rowtype .item_prod .itemPic .pd_img {z-index: 88;}
- .dp .itemsGrp.rowtype .item_prod.sold_out .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: 99; text-align: center;}
- .dp .itemsGrp.rowtype .item_prod .itemBrand {margin:0px 6px 65px; font-size: 16px; font-weight: 300;}
- .dp .itemsGrp.rowtype .item_prod .itemComment {position: absolute; left: 340px; top: 150px; font-size: 16px; font-weight: 300; margin:0;}
- .dp .itemsGrp.rowtype .item_prod .itemName {margin:0px 6px 40px; font-size: 30px; font-weight: 200; line-height: 1.2; max-height:80px;}
- .dp .itemsGrp.rowtype .item_prod .itemPrice {font-size: 30px; line-height: 1; font-weight: 500;}
- .dp .itemsGrp.rowtype .item_prod .itemPrice_original {font-size: 20px; font-weight: 200;}
- .dp .itemsGrp.rowtype .item_prod .itemPercent {font-size: 42px; line-height: 0.8;}
- /* dp_Exhibition */
- .dp_Exhibition .best_nav {display: flex; justify-content: center; padding-bottom: 20px;}
- .dp_Exhibition .best_nav ul::after {content:''; display: block; clear: both;}
- .dp_Exhibition .best_nav ul li {float: left; margin-right: 40px; }
- .dp_Exhibition .best_nav ul li button {position: relative; font-size: 20px; color:#888;}
- .dp_Exhibition .best_nav ul li button:hover, .dp_Exhibition .best_nav ul li button.active {color: #222;}
- .dp_Exhibition .best_nav ul li:hover button::after, .dp_Exhibition .best_nav ul li button.active::after{content:''; position: absolute; bottom:-3px; left:0; width:100%; height: 2px; background: #222; }
- .dp_Exhibition .best_nav ul li:hover button::after {content:''; position: absolute; bottom:-3px; left:0; width:100%; height: 2px; background: #222;}
- .dp_Exhibition .best_nav ul li:last-child {margin-right: 0;}
- .dp_Exhibition .cont_body > .ui_row {margin-bottom: 40px;}
- .dp_Exhibition .ui_row .ui_col_12 {margin: 0;}
- .dp_Exhibition .ui_row .ui_col_12::after {content:''; display: block; clear: both;}
- .dp_Exhibition .ui_row .ui_col_12 .form_count {float: left; margin-top: 25px;}
- .dp_Exhibition .ui_row .ui_col_12 .form_count p {font-size: 16px; font-weight: 200; color:#888;}
- .dp_Exhibition .ui_row .ui_col_12 .form_count p span {font-weight: 500;}
- .dp_Exhibition .ui_row .ui_col_12 .select {width:180px; float: right;}
- .dp_Exhibition .ui_row .ui_col_12 .form_count p span {color:#fd4802;}
- .dp .ui_row .ui_col_12 .btn_group {float: right;}
- .dp .ui_row .ui_col_12 .btn_group > .btn {padding: 12px 96px 12px 19px; line-height: 1; font-size: 14px; color: #666;}
- .dp .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;
- }
- .dp .ui_row .ui_col_12 .btn_group .btn.on {
- border-color: #222;
- }
- .dp .ui_row .ui_col_12 .btn_group .btn.on .caret {
- top: 10px;
- border-color: transparent transparent #888888 transparent;
- }
- .dp .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;
- }
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu ul {padding-bottom: 40px; border-bottom: 1px solid #ddd;}
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu ul::after {content:''; display: block; clear:both}
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu ul li {float: left; width:36.3%; margin-top: 22px;}
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu ul li:nth-child(3n+0) {width:25%;}
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu ul li:first-child,.dp .ui_row .ui_col_12 .btn_group .dropdown_menu ul li:nth-child(2),.dp .ui_row .ui_col_12 .btn_group .dropdown_menu ul li:nth-child(3) {margin-top: 0;}
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu label {cursor: pointer; font-size: 14px; font-weight: 300;}
- .dp .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);
- }
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu input:checked+span {color:#fd4802;}
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row {justify-content: center; margin: 30px 0 0;}
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row .fillter_reset {position: relative; padding: 10px 15px 10px 32px; background: #f5f5f5;}
- .dp .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(/images/pc/ico_filter_reset.png)no-repeat;
- }
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row button {width:92px;}
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row button:last-child {background: #222;}
- .dp .ui_row .ui_col_12 .btn_group .dropdown_menu .ui_row button:last-child span {color:#fff;}
- .dp_Exhibition .list_content {max-width: 1780px;}
- .dp_Exhibition .itemPic {padding-top: 100%;}
- .dp_Exhibition .item_prod {width: 340px; margin-bottom: 80px;}
- .dp_Exhibition .item_prod .itemName {font-size: 18px; line-height: 1.5; overflow:visible; max-height: none;}
- .dp_Exhibition .item_prod .item_state {padding: 0;}
- .dp_Exhibition .item_prod .summary {display: inline-block; margin: 0px 6px 0; line-height: 1; font-size:14px; font-weight: 400; color: rgb(137, 137, 137);}
- .dp_Exhibition .item_prod:nth-child(5n+0) {margin-right: 0;}
- .dp_Exhibition .item_prod:nth-child(6n+0) {margin-right: 20px;}
- .dp_Exhibition .itemsGrp {margin-bottom: 80px;}
- .dp_Exhibition .itemsGrp .exhi_item {float:left; width: 24.15%; overflow: hidden; margin:0 1.12% 40px 0;}
- .dp_Exhibition .itemsGrp .exhi_item {float:left; width: 24.15%; overflow: hidden; margin:0 1.12% 40px 0;}
- .dp_Exhibition .itemsGrp .exhi_item:nth-child(4n) {margin:0 0 40px 0;}
- .dp_Exhibition .itemsGrp .exhi_item .exhi_item_img {width: 430px; height: 430px; overflow: hidden;}
- .dp_Exhibition .itemsGrp .exhi_item .exhi_item_img img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height:auto;}
- .dp_Exhibition .itemsGrp .exhi_item .exhi_item_img a {position: relative; width: 100%; height: 100%; display: block; padding-bottom: 100px;}
- .dp_Exhibition .itemsGrp .exhi_item .exhi_item_img a .shape {max-width:52px; min-height:52px; width: 42px;}
- .dp_Exhibition .itemsGrp .exhi_item .exhi_item_img a .shape span {width: 43px; font-weight: 300;}
- .dp_Exhibition .itemsGrp .exhi_item .exhi_item_img a .shape:after {height: 42px;}
- .dp_Exhibition .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;}
- .dp_Exhibition .itemsGrp .exhi_item .exhi_item_img .exhi_detail {position: absolute; left: 0; bottom: 100px; z-index: 9; padding: 23px; padding-bottom: 0;}
- .dp_Exhibition .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;}
- .dp_Exhibition .itemsGrp .exhi_item .exhi_item_img .exhi_detail .brand {font-size: 14px;}
- .dp_Exhibition .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;}
- .dp_Exhibition .itemsGrp .exhi_item .exhi_item_img .exhi_detail .sale {font-size: 14px;}
- .dp_Exhibition .itemsGrp .exhi_item_pr {background: #fff; padding: 20px; position: relative; z-index: 99; width: 380px; margin:-70px auto 0;}
- .dp_Exhibition .itemsGrp .exhi_item_pr li {float:left; width: 100px; margin-right: 20px;}
- .dp_Exhibition .itemsGrp .exhi_item_pr li:last-child {margin-right: 0;}
- .dp_Exhibition .itemsGrp .exhi_item_pr li .img {position: relative; background: #f5f5f5; width: 100%; height: 150px; overflow: hidden;}
- .dp_Exhibition .itemsGrp .exhi_item_pr li .img img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
- .dp_Exhibition .itemsGrp .exhi_item_pr li .txt p {display: -webkit-box; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: #222; word-break: keep-all;}
- .dp_Exhibition .itemsGrp .exhi_item_pr li .txt .pr_tit {margin:20px 0; line-height: 1.4; font-size: 14px; max-height:38px;}
- .dp_Exhibition .itemsGrp .exhi_item_pr li .txt .price {font-size: 16px; font-weight: 300;}
-
- /* dp_Bulletship */
- .Bulletship {padding-bottom: 120px;}
- .Bulletship .Bulletship_head {width:1780px; height: 813px; background: url(/images/pc/thumb/bullet_bg1.png)no-repeat center center;}
- .Bulletship .Bulletship_body {text-align: center; padding: 60px 0 72px;}
- .Bulletship .Bulletship_body > p {margin-top: 30px;}
- .Bulletship .Bulletship_body > p:first-child {position: relative; margin-bottom: 26px; padding-top: 38px;}
- .Bulletship .Bulletship_body > p:first-child::before {position: absolute; content: ''; width:63px; height: 31px; top:0; left:50%; transform: translateX(-50%); background: url(/images/pc/ico_home.png)no-repeat;}
- .Bulletship .Bulletship_body > p:nth-child(2) {margin-bottom: 46px;}
- .Bulletship .Bulletship_body > p:nth-child(2) span {color: #fd4802;}
- .Bulletship .Bulletship_body > p:nth-child(3) {margin-top: 30px;}
- .Bulletship .Bulletship_foot {width:1780px; height: 393px; background: url(/images/pc/thumb/bullet_bg2.png)no-repeat center center;}
- .Bulletship .Bulletship_body .search {position: relative; width:720px; height: 80px; margin: 0 auto; border: 3px solid #fd4802;}
- .Bulletship .Bulletship_body .search .area,.Bulletship .Bulletship_body .search form,.Bulletship .Bulletship_body .search fieldset{height: 100%;}
- .Bulletship .Bulletship_body .search .ico_search:before {width:35px; height: 36px; background: url(/images/pc/ico_search_bullet.png)no-repeat;}
- .Bulletship .Bulletship_body .search input {width:100%; height: 100%; border: none; padding: 22px 30px;}
- .Bulletship .Bulletship_body .search button {position: absolute; top:20px; right:19px;}
- .Bulletship .Bulletship_body .bullet_able,.Bulletship .Bulletship_body .normal_able {width:720px; padding: 26px 112px; margin-bottom: 30px; box-sizing: border-box; background: #f5f5f5;}
- .Bulletship .Bulletship_body > div {width:720px; margin: 0 auto;}
- .dp .bullet_sticky_nav {margin-bottom: 0px !important; padding:20px 0; background: #fff; border-top:1px solid #222; border-bottom:1px solid #222; z-index: 20;}
- .container.dp .bullet_sticky_nav.sticky {position: fixed; max-width: 1780px; top: 0px;}
- /* .dp .bullet_sticky_nav ul {overflow-x: scroll; white-space: nowrap; -ms-overflow-style: none; cursor: grab;}
- .dp .bullet_sticky_nav ul::-webkit-scrollbar {display: none;} */
- .dp .bullet_sticky_nav ul li {position: relative; display: inline-block; padding: 20px 40px;}
- .dp .bullet_sticky_nav ul li:last-child::after {display: none;}
- .dp .bullet_sticky_nav ul li::after {content:''; position: absolute; top:50%; right: 0; transform: translateY(-50%); width:1px; height: 14px; background: #ddd;}
- .dp .bullet_sticky_nav ul li a {font-weight: 500;}
- .dp .list_content .item_header {text-align: center; padding: 78px 0 68px;}
-
- /* dp_Bulletship_pop */
- .modal.ship_pop {padding: 60px; max-width:580px; height: 490px; text-align: center;}
- .modal.ship_pop .modal-header {margin-bottom: 30px;}
- .modal.ship_pop .modal-header p:first-child {position: relative; margin-bottom: 14px; padding-top: 38px;}
- .modal.ship_pop .modal-header p:first-child::before {position: absolute; content: ''; width:63px; height: 31px; top:0; left:50%; transform: translateX(-50%); background: url(/images/pc/ico_home.png)no-repeat;}
- .modal.ship_pop .modal-header p span {color:#fd4802;}
- .modal.ship_pop .modal-body {background: #f5f5f5; padding: 30px 34px;}
- .modal.ship_pop .modal-footer {margin-top: 30px;}
- .modal.ship_pop .modal-footer p {margin-bottom: 28px;}
- /* dp_Bulletship_pop */
- /* dp_detail_case1 */
- .dp .wide .cont_head div div {position: absolute; width:28px; height: 30px; top:0; right:70px; background: url(/images/pc/ico_sns_share.png)no-repeat;}
- .dp .wide .cont_head div div a {display: inline-block; width:100%; height: 100%; text-indent: -9999px;}
- .dp .wide .cont_body .coner_content .coner_front .big_banner {width:100%; height: 1378px; background: url(/images/pc/thumb/detail_case_bg.png)no-repeat;}
- .dp .wide .cont_body .coner_content .coner_item01 {padding: 120px 0 60px;}
- .dp .wide .cont_body .coner_content .coner_item01 .dp_listItems_wrap > div:first-child {margin-bottom: 54px; text-align: center;}
- .dp .wide .cont_body .coner_content .coner_item01 .dp_listItems_wrap > div:first-child p {font-size: 30px; line-height: 1;}
- .dp .wide .cont_body .coner_content .coner_item01 .dp_listItems_wrap > div:first-child a {padding-right: 30px; font-size: 30px; color: #222; font-weight: 500; background:url(/images/pc/ico_dp_arrow.png) no-repeat right top 2px;}
- .dp .wide .cont_body .coner_content .coner_visual {max-width: 1780px; margin: 0 auto;}
- .dp .wide .coner_item01 .dp_listItems_cont ul > .ui_row {padding: 60px 0; margin: 0; justify-content: center;}
- .dp .wide .dp_listItems_cont {display: flex; justify-content: center;}
- .dp .wide .dp_listItems_cont ul li:first-child {margin-bottom: 40px;}
- .dp .wide .dp_listItems_cont ul li .dp_listItems::after {content: ''; display: block; clear: both;}
- .dp .wide .dp_listItems_cont ul li .dp_listItems > div {float: left;}
- .dp .wide .dp_listItems_cont ul li .dp_listItems .dp_listItems_info { padding: 184px 0 0 50px;}
- .dp .wide .dp_listItems_info .dp_listItems_brand {margin-bottom: 20px;}
- .dp .wide .dp_listItems_info .dp_listItems_brand,.dp_listItems_info .dp_listItems_price del {color:#888;}
- .dp .wide .dp_listItems_cont ul li .dp_listItems .dp_listItems_name {margin-bottom: 26px;}
- .dp .wide .dp_listItems_info .dp_listItems_price {margin-bottom: 30px;}
- .dp .wide .dp_listItems_info .dp_listItems_price del {margin: 0 8px;}
- .dp .wide .dp_listItems_info .dp_listItems_price .percent{color:#fd4802;}
- .dp .wide .dp_lookbook_case1 {position: relative;}
- .dp .wide .dp_lookbook_case1 .slick-prev{display:block; position:absolute; left:50px; top:50%; width:26px; height:50px; background:url(/images/pc/slide_prev.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%);}
- .dp .wide .dp_lookbook_case1 .slick-next{display:block; position:absolute; right:50px; top:50%; width:26px; height:50px; background:url(/images/pc/slide_next.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%);}
- .dp .wide .dp_lookbook_case1 .slick-dots{position:absolute; left:0; bottom:-40px; width:100%; text-align:center; z-index:10;}
- .dp .wide .dp_lookbook_case1 .slick-dots li{display:inline-block; width:10px; height:10px; margin:0 5px; text-align:center;}
- .dp .wide .dp_lookbook_case1 .slick-dots li button{display:inline-block; width:10px; height:10px; background:#ddd; border-radius: 50%; text-indent:-9999em;}
- .dp .wide .dp_lookbook_case1 .slick-dots li.slick-active button{background:#fd4802;}
- /* dp_detail_case2 */
- .dp .wide .cont_body .coner_content .coner_item02 {padding-top: 120px;}
- .dp .wide .cont_body .coner_content .coner_item02 .dp_coupon_wrap > div:first-child {margin-bottom: 60px; text-align: center;}
- .dp .wide .cont_body .coner_content .coner_item02 .dp_coupon_wrap > div:first-child p {font-size: 30px; line-height: 1; font-weight: 500;}
- /* dp_detail_case2 쿠폰 */
- .dp .coupon_list {margin-bottom: 60px;}
- .dp .coupon_list li {float:left; width: 285px; margin:0 20px 20px 0; position: relative; position: relative; overflow: hidden;}
- .dp .coupon_list li:nth-child(4n) {margin-right: 0;}
- .dp .coupon_list li .cp_top {position: relative; overflow: hidden;}
- .dp .coupon_list li .cp_detail { z-index: 99; border:1px solid #ddd; border-bottom: 0; padding:30px 20px 18px; padding-right: 5px;}
- .dp .coupon_list li .cp_detail .tit {margin-bottom: 13px; font-size: 14px;}
- .dp .coupon_list li .cp_detail .sale_t {display: block; color: #fd4802; font-size: 30px; margin-bottom: 15px;}
- .dp .coupon_list li .cp_detail .sale_t span {font-weight: 600;}
- .dp .coupon_list li .cp_detail .sale_t.won_t {font-size: 22px;}
- .dp .coupon_list li .cp_detail .sale_t.won_t span {font-size: 30px;}
- .dp .coupon_list li .cp_detail .cp_cont {margin-bottom: 0; font-weight: 300; color: #888; font-size: 12px; line-height: 1.5; height: 36px; word-break: keep-all;}
- .dp .coupon_list li .cp_detail .cp_cnt {display: none; background: #fff5f3; padding:5px 8px; border:1px solid #fd4802; font-size: 10px; color: #fd4802 !important; font-weight: 500;}
- .dp .coupon_list li .cp_shape {position: absolute; top: 50%; right: -13px; z-index: 101; width: 26px; height: 26px; margin-top: -13px; border:1px solid #ddd; background: #fff; border-radius: 50%; z-index: 96;}
- .dp .coupon_list li .cp_date {border:1px solid #222; background: #222; font-weight: 300; text-align: center;}
- .dp .coupon_list li .cp_date button {display: block; width: 100%; padding:13px 5px; font-size: 16px; font-weight: 300; color: #fff;}
- .dp .coupon_list li .cp_date button span {background: url(/images/pc/ico_cp_down.png) no-repeat right top; padding-right: 28px;}
- .dp .coupon_list li.off .cp_date {border:1px solid #aaa; background: #aaa;}
- .dp .coupon_list li.off .cp_date button span {background:none; padding-right: 0;}
- .dp .coupon_list li .cp_info {text-align: center; margin-top: 20px;}
- .dp .coupon_list li .cp_info button span {display: inline-block; border-bottom: 1px solid #888; color: #888;}
-
- .dp_coupon_list {display: flex; justify-content: center; flex-wrap: wrap; max-width: 1580px; min-width: 1580px; padding: 0 260px 120px; margin: 0 auto; box-sizing: border-box;}
- .dp_coupon_list .dp_coupon_item {text-align: center;}
- .dp_coupon_list .dp_coupon_item div:last-child {margin-top: 18px;}
- .dp_coupon_list .dp_coupon_item div:last-child a {padding-bottom: 2px; border-bottom: 1px solid #888;}
- .dp_coupon_list .dp_coupon_item:nth-child(1) {margin-bottom: 78px;}
- .dp_coupon_list .dp_coupon_item:nth-child(2) {margin: 0 0 0 100px;}
- .dp_coupon_list .dp_coupon_item:nth-child(3) {margin: 0 0 0 100px;}
- .dp_coupon_list .dp_coupon_item:nth-child(5) {margin: 0 0 0 100px;}
- .dp_coupon_list .dp_coupon_item:nth-child(6) {margin: 0 0 0 100px;}
- .dp_coupon_list .dp_coupon {position: relative; width:286px; padding: 36px 40px; box-sizing: border-box; background: #f5f5f5;}
- .dp_coupon_list .dp_coupon::before {
- content:'';
- position: absolute;
- width: 0px; height: 0px;
- top:-26px;
- left:-26px;
- border-top:26px solid transparent;
- border-bottom:26px solid #fff;
- border-right: 26px solid transparent;
- border-left: 26px solid transparent;
- transform: rotate(-45deg);
- }
- .dp_coupon_list .dp_coupon::after {
- content:'';
- position: absolute;
- width: 0px; height: 0px;
- bottom:-26px;
- right: -26px;
- border-top:26px solid transparent;
- border-bottom:26px solid #fff;
- border-right: 26px solid transparent;
- border-left: 26px solid transparent;
- transform: rotate(135deg);
- }
- .dp_coupon_list .dp_coupon p:first-child {overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
- .dp_coupon_list .dp_coupon p:last-of-type {margin-top: 22px; font-size: 40px; line-height: 1; color:#fd4802;}
- .dp_coupon_list .dp_coupon button {position: absolute; width:50px; height: 50px; top:-16px; right: -16px; background: url(/images/pc/ico_down_btn.png)no-repeat;}
- .dp_coupon_tip {max-width: 1580px; margin: 0 auto; padding: 60px 60px 0 60px; box-sizing: border-box; display: flex; border-top: 1px solid #ddd;}
- .dp_coupon_tip .dp_coupon_notice::before {content:''; display: block; width:36px; height: 46px; margin: 0 auto; background: url(/images/pc/ico_null.png)no-repeat;}
- .dp_coupon_tip .dp_coupon_notice::after {content:'유의사항'; display: inline-block; margin-top: 20px; color:#888;}
- .dp_coupon_tip ul {margin-left: 90px;}
- .dp_coupon_tip ul li {position: relative; padding-left: 12px; margin-bottom: 12px; color:#888;}
- .dp_coupon_tip ul li:last-child {margin-bottom: 0;}
- .dp_coupon_tip ul li::before {content:''; position: absolute; width:2px; height: 2px; top:46%; left:0; transform: scaleY(-50%); background: #888;}
- .dp .announce_txt {position: relative; max-width: 1580px; margin: 0 auto; padding-top: 60px;}
- .dp .announce_txt:before {content:''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1580px; height: 1px; background: #ddd;}
- .dp .announce_txt .note_txt {top: 60px;}
- /* .dp .wide .coner_visual .dp_banner_slide {padding-bottom: 170px;} */
- .dp .wide .coner_visual .dp_banner_slide .slide_head {position: relative; width:810px; margin: 0 auto; padding:120px 0 60px; text-align: center;}
- .dp .wide .coner_visual .dp_banner_slide .slide_head p {font-size: 30px; line-height: 1;}
- .dp .wide .coner_visual .dp_banner_slide .slide_head a {padding-right: 30px; font-size: 30px; color: #222; font-weight: 500; background:url(/images/pc/ico_dp_arrow.png) no-repeat right top 2px;}
- .dp .wide .coner_visual .dp_lookbook_case2 {width:810px; margin: 0 auto;}
- .dp .wide .coner_visual .dp_lookbook_case2 .slider .slick-list {margin:0 -10px;}
- .dp .wide .coner_visual .dp_lookbook_case2 .slick-slide {margin:0 10px;}
- .dp .wide .dp_lookbook_case2 .slick-prev{display:block; position:absolute; left:-65px; top:40%; width:26px; height:50px; background:url(/images/pc/slide_prev.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%);}
- .dp .wide .dp_lookbook_case2 .slick-next{display:block; position:absolute; right:-65px; top:40%; width:26px; height:50px; background:url(/images/pc/slide_next.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%);}
- .dp .wide .dp_lookbook_case2 .slick-dots{position:absolute; left:0; bottom:0; width:100%; text-align:center; z-index:10;}
- .dp .wide .dp_lookbook_case2 .slick-dots li{display:inline-block; width:10px; height:10px; margin:0 5px; text-align:center;}
- .dp .wide .dp_lookbook_case2 .slick-dots li button{display:inline-block; width:10px; height:10px; background:#ddd; border-radius: 50%; text-indent:-9999em;}
- .dp .wide .dp_lookbook_case2 .slick-dots li.slick-active button{background:#fd4802;}
- .dp .wide .dp_lookbook_case2 .itemPrice::after {content:''; display: block; clear: both;}
- .dp .wide .dp_lookbook_case2 .itemPrice p:first-child,.dp .wide .dp_lookbook_case2 .itemPrice del {float: left;}
- .dp .wide .dp_lookbook_case2 .itemPrice del {color:#888;}
- .dp .wide .dp_lookbook_case2 .itemPrice p:last-child {float: right; color: #fd4802;}
- .dp .wide .dp_lookbook_item > div:last-child {max-width: 395px; padding: 18px 0 56px;}
- .foot_banner_slide {/*width:1640px;*/ margin: 0 auto;padding:0 70px;}
- .foot_banner_slide > div:first-child {position: relative; text-align: center; padding: 60px 0;}
- .foot_banner_slide > div:first-child p {font-size: 30px; line-height: 1; font-weight: 500;}
- .foot_banner_slide > div:first-child a {position: absolute; top:50%; right:0; transform: translateY(-50%); padding-right: 16px; color:#888; background: url(/images/pc/ico_bread_root.png)no-repeat right top;}
- .foot_banner_slide .dp_lookbook_case3 .dp_lookbook_item > div {width:312px;}
- .foot_banner_slide .dp_lookbook_case3 .dp_lookbook_item > div:last-child {padding: 22px 0 104px;}
- .foot_banner_slide .slick-slide img {width: 100%; height:auto;}
- .foot_banner_slide .dp_lookbook_case3 .slick-prev{display:block; position:absolute; left:-65px; top:31%; width:26px; height:50px; background:url(/images/pc/slide_prev.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
- .foot_banner_slide .dp_lookbook_case3 .slick-next{display:block; position:absolute; right:-65px; top:31%; width:26px; height:50px; background:url(/images/pc/slide_next.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
- /* dp_detail_casePOPUP */
- .modal.dp_coupon_pop {max-width: 600px; padding: 60px;}
- .modal.dp_coupon_pop .modal-header {padding-bottom: 40px; margin-bottom: 0; border-bottom: 1px solid #222;}
- .modal.dp_coupon_pop .modal-header h5 {margin: 0;}
- .modal.dp_coupon_pop .modal-body {padding: 30px 20px; border-bottom: 1px solid #ddd;}
- .modal.dp_coupon_pop .modal-body p {margin-bottom: 20px;}
- .modal.dp_coupon_pop .modal-body p:last-child {margin-bottom: 0;}
- .modal.dp_coupon_pop .modal-body p strong {margin-right: 60px; color:#222;}
- .modal.dp_coupon_pop .modal-footer {margin-top: 20px;}
- .modal.dp_coupon_pop .modal-footer p {position: relative; padding: 0 14px;}
- .modal.dp_coupon_pop .modal-footer p::before {content:''; position: absolute; width:3px; height: 3px; top:8px; left:0; background: #888;}
- .modal.dp_coupon_pop .modal-footer p:first-child {margin-bottom: 10px;}
- /* dp_detail_case3 */
- .dp .wide .dp_lookbook_case4 {position: relative;}
- .dp .wide .dp_lookbook_case4 .slick-prev{display:block; position:absolute; left:70px; top:50%; width:26px; height:50px; background:url(/images/pc/slide_prev.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
- .dp .wide .dp_lookbook_case4 .slick-next{display:block; position:absolute; right:70px; top:50%; width:26px; height:50px; background:url(/images/pc/slide_next.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
- .dp .wide .dp_lookbook_case4 .slick-dots{position:absolute; left:0; bottom:40px; width:100%; text-align:center; z-index:10;}
- .dp .wide .dp_lookbook_case4 .slick-dots li{display:inline-block; width:10px; height:10px; margin:0 5px; text-align:center;}
- .dp .wide .dp_lookbook_case4 .slick-dots li button{display:inline-block; width:10px; height:10px; background:#ddd; border-radius: 50%; text-indent:-9999em;}
- .dp .wide .dp_lookbook_case4 .slick-dots li.slick-active button{background:#fd4802;}
- .coner_item03 .slide_head {position: relative; width:1640px; margin: 0 auto; text-align: center; padding:0 0 60px;}
- .coner_item03 .slide_head p {font-size: 30px;}
- .coner_item03 .slide_head a {padding-right: 30px; font-size: 30px; color: #222; font-weight: 500; background:url(/images/pc/ico_dp_arrow.png) no-repeat right top 2px;}
- .dp .wide .coner_item03 {padding-top: 120px;}
- .dp .wide .coner_item03 .dp_lookbook_case5 {width:1640px; margin: 0 auto;}
- .dp .wide .coner_item03 .dp_lookbook_case5 .slider .slick-list {margin:0 -10px;}
- .dp .wide .coner_item03 .dp_lookbook_case5 .slick-slide {margin:0 10px;}
- .dp .wide .coner_item03 .dp_lookbook_case5 .dp_lookbook_item > div:last-child {text-align: left;}
- .dp .wide .dp_lookbook_case5 .slick-prev{display:block; position:absolute; left:-65px; top:40%; width:26px; height:50px; background:url(/images/pc/slide_prev.png) no-repeat left; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
- .dp .wide .dp_lookbook_case5 .slick-next{display:block; position:absolute; right:-65px; top:40%; width:26px; height:50px; background:url(/images/pc/slide_next.png) no-repeat right; text-indent:-9999px; z-index:10; transform:translateY(-50%); opacity: 0.5;}
- .dp .wide .dp_lookbook_case5 .slick-dots{position:absolute; left:0; bottom:-20px; width:100%; text-align:center; z-index:10;}
- .dp .wide .dp_lookbook_case5 .slick-dots li{display:inline-block; width:10px; height:10px; margin:0 5px; text-align:center;}
- .dp .wide .dp_lookbook_case5 .slick-dots li button{display:inline-block; width:10px; height:10px; background:#ddd; border-radius: 50%; text-indent:-9999em;}
- .dp .wide .dp_lookbook_case5 .slick-dots li.slick-active button{background:#fd4802;}
- .dp .wide .dp_lookbook_case5 .itemPrice::after {content:''; display: block; clear: both;}
- .dp .wide .dp_lookbook_case5 .itemPrice p:first-child,.dp .wide .dp_lookbook_case5 .itemPrice del {float: left;}
- .dp .wide .dp_lookbook_case5 .itemPrice del {color:#888;}
- .dp .wide .dp_lookbook_case5 .itemPrice p:last-child {float: right; color: #fd4802;}
- .dp .wide .coner_item03 .dp_review_cont {padding: 120px 0; margin:120px 0 0; background: #f5f5f5;}
- .dp .wide .coner_item03 .dp_review {max-width: 1200px; margin: 0 auto;}
- .dp .wide .coner_item03 .dp_review > div {margin-bottom: 60px; text-align: center; font-weight: 500;}
- .dp .wide .coner_item03 .dp_review > div p {font-size: 30px; line-height: 1;}
- .dp .wide .coner_item03 .dp_review section {border-top: 1px solid #ddd; padding: 30px 0;}
- .dp .wide .coner_item03 .dp_review .ui_row {justify-content: center; margin:60px 0 0;}
- .dp .wide .coner_item03 .dp_review .ui_row .btn {border-color: #a1a1a1;}
- .dp .wide .coner_item03 .dp_review section:last-of-type {border-bottom: 1px solid #ddd;}
- .review_summary {margin-bottom: 20px;}
- .review_summary div span {display: inline-block;}
- .review_summary div span *,.review_summary div dl * {display:inline-block;}
- .review_summary div span dt,.review_summary div dl dt {margin-right: 12px; color:#fd4802;}
- .review_summary div dl dd {margin-right: 30px;}
- .review_summary .review_head {margin-bottom: 20px;}
- .review_summary .review_head::after {content:''; display: block; clear: both;}
- .review_summary .review_head * {float: left;}
- .review_summary .review_head .best {
- display: inline-block;
- margin: 0;
- padding:0 10px;
- line-height: 22px;
- height: 22px;
- color: #fff;
- background: #fd4802;
- box-sizing: border-box;
- }
- .review_summary .review_head .best::after {content: "BEST";}
- .review_summary .review_head .date {float: right;}
- .review_summary .review_head .date em:first-child {margin-right: 20px;}
- .review_summary .review_head .star { width:100px; height: 22px; margin-right: 10px; background:#000;}
- .review_summary .review_body {margin-bottom: 10px;}
- .review_summary .review_body,.review_summary .review_foot {display: block;}
- .review_content .review_photo {display: flex; justify-content: flex-start;}
- .review_content .review_photo a {margin-left: 10px;}
- .review_content .review_photo a:first-child {margin-left: 0;}
- .review_content .review_photo a img {display: block;}
- .review_content .review_text {padding: 24px 0 0;}
- .review_content .review_text p {line-height:2; max-width: 1100px; overflow: hidden; word-break: break-all;}
- /* 전시_서브메인 */
- .container.dp .content {max-width:1780px; margin:0 auto 120px !important;}
- .container.dp .content.wide {max-width: 100%;}
- .dp .content .cont_head .displayH {margin-bottom: 60px; text-align: center;}
- .dp .dp_submain .dp_sum_slide {position: relative; margin-bottom: 120px; }
- .dp .dp_submain .dp_sum_slide .swiper-pagination {margin:0;}
- .dp .dp_submain .dp_sum_slide .swiper-container {padding-bottom: 60px;}
- .dp .dp_submain .dp_sum_slide .img img {width: 100%; height:auto;}
- .dp .dp_submain .dp_sum_slide .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;}
- .dp .dp_submain .dp_sum_slide .txt span {font-size: 16px; font-weight: 200; color: #222;}
- .dp .dp_submain .swiper-button-next.swiper-button-disabled, .dp .dp_submain .swiper-button-prev.swiper-button-disabled {pointer-events:auto;}
- .dp .dp_submain .swiper-container-horizontal>.swiper-pagination-progressbar {top:auto; bottom:0; height: 2px;}
- .dp .dp_submain .swiper-pagination-progressbar {background: #ddd;}
- .dp .dp_submain .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {background: #222;}
- .dp .dp_submain .swiper-button-next.swiper-button-disabled, .dp .dp_submain .swiper-button-prev.swiper-button-disabled {opacity: 0;}
- .dp .dp_submain .swiper-button-next, .dp .dp_submain .swiper-button-prev {top: 200px; width: 50px; height: 50px; margin-top: 0;}
- .dp .dp_submain .swiper-button-next:after, .dp .dp_submain .swiper-button-prev:after {display: none;}
- .dp .dp_submain .swiper-button-next {right: 0; background: url(/images/pc/slide_next.png) no-repeat center;}
- .dp .dp_submain .swiper-button-prev {left: 0; background: url(/images/pc/slide_prev.png) no-repeat center;}
- .dp .dp_category {margin:120px 0; padding:80px 0; background: #f5f5f5; text-align: center;}
- .dp .dp_category .dp_cate_list {width: 1400px; margin:0 -5px; display: inline-block;}
- .dp .dp_category .dp_cate_list:after {content:''; display: block; clear: both;}
- .dp .dp_category .dp_cate_list a {box-sizing:border-box; float:left; background: #fff url(/images/pc/ico_more_lg.png) no-repeat right 24px center; border:1px solid #ddd; width: 220px; line-height: 58px; margin:0 5px 20px; padding:0 24px; font-size: 18px; font-weight: 500; color: #666; text-align: left;}
-
- .dp .main_trendy {background: #fff; padding:0 70px;}
- .dp .main_trendy .item_prod {margin-bottom: 0;}
- .dp .main_trendy .cont_head {margin-bottom: 60px;}
- .dp .main_trendy .cont_body {padding:0;}
- .dp .main_trendy .slick-dots {bottom: 0;}
- .dp .main_recomm {padding: 0; max-width:1640px !important;}
- .dp .main_recomm .item_prod {width: 20%;}
- .dp .post-recomm .post {margin: 0;}
- .dp .slick-dots {bottom: 0;}
- /* 전시_룩북 */
- .dp .event_list .event_top {position: relative; margin-bottom: 30px; height: 40px;}
- .dp .event_list .event_top:after {content:''; clear:both; display: block;}
- .dp .event_list .event_top .count {width: 130px; font-size: 16px; font-weight: 200; color: #888; display: inline-block; padding-top: 20px;}
- .dp .event_list .event_top .count span {color: #fd4802; font-weight: 300;}
- .dp .event_list .event_top .event_btn {position: absolute; top: 0; right: 0;}
- .dp .event_list .event_top .event_btn a {display: inline-block; background: url(/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;}
- .dp .event_list .list li {float:left; position: relative; width: 24.15%; margin: 0 1.12% 80px 0;}
- .dp .event_list .list li:nth-child(4n) {margin: 0 0 80px 0;}
- .dp .event_list .list li .rank {min-width:52px;}
- .dp .event_list .list li .ev_img {margin-bottom: 25px; position: relative; width: 430px; height: 430px;}
- .dp .event_list .list li .ev_img img {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); width: 100%; height: auto;}
- .dp .event_list .list li .txt .brand {color: #888; font-weight: 300;}
- .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;}
- .dp .event_list .list .no_con {display: none;}
- .dp .event_list.no_data .list .event_con {display: none;}
- .dp .event_list.no_data .list .no_con {display: block; padding:100px 0;}
- .dp .event_list.no_data .list .no_con li {width: 100%; text-align: center; margin-right: 0;}
- .dp .event_list.no_data .list .no_con li span {display: block; margin: 25px 0 40px; font-size: 16px; color: #666; font-weight: 300;}
- .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;}
-
- /* od 공통 */
- .container.od .wrap .content {width:1460px;}
- .container.od .wrap .content.wide {width:100%;}
- .od {padding-top:120px; padding-bottom:150px;}
- .od .cont_head h2 {margin-bottom:0; font-size:40px; font-weight:500; line-height:1; text-align:center; letter-spacing:-1px;}
- .od .item_slide .item_gd a .price {margin-top:15px}
- .od .info_txt {padding:30px; line-height:1.2; background:#fff6f2;}
- .od .info_txt ul li {position: relative; font-size: 14px; color: #888; padding-left: 15px; margin-bottom: 10px;}
- .od .info_txt ul li:last-child {margin-bottom: 0;}
- .od .info_txt ul li:after {content:''; position: absolute; top:5px; left: 0; background: #858585; width: 3px; height: 3px;}
- .od .form_field {display:block;}
- .od .form_field::after {clear:both; display:block; content:'';}
- .od .form_field input[type="radio"] + label,
- .od .form_field input[type="checkbox"] + label {padding-left:30px; line-height:1; color:#222; font-size:16px; font-weight:200;}
- .od .form_field input[type="radio"] + label:before,
- .od .form_field input[type="radio"]:checked + label:after,
- .od .form_field input[type="checkbox"] + label:before,
- .od .form_field input[type="checkbox"]:checked + label:after,
- .od .form_field input[type="checkbox"]:disabled + label:after {top:50%; transform:translateY(-50%);}
- .od .form_field .input_wrap {display:block; width:100%; margin:0;}
- .od .form_field .input_wrap::after {clear:both; display:block;}
- .od .cont_head .oder_steps {margin-top:40px; margin-bottom:60px; text-align:center;}
- .od .cont_head .oder_steps ul {display:inline-block;}
- .od .cont_head .oder_steps ul::after {content:''; clear:both; display:block;}
- .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;}
- .od .cont_head .oder_steps ul li.on {color:#fd4802; font-weight:300;}
- .od .cont_head .oder_steps ul li::before {content:''; position:absolute; left:-60px; top:50%; width:60px; border-bottom:1px solid #ddd;}
- .od .cont_head .oder_steps ul li:first-of-type {margin-left:0}
- .od .cont_head .oder_steps ul li:first-of-type::before {border:none;}
- .od .od_cont {float:left; width:1080px; min-height:400px;}
- .od .od_cont * {font-family:inherit; line-height:1; vertical-align:top;}
- .od .od_cont .tmark_required {color:#fd4802; font-size:12px; font-weight:300; line-height:14px;}
- .od .od_cont .tmark_optional {color:#888; font-size:12px; font-weight:300; line-height:14px;}
- .od .od_cont button span {/*vertical-align:middle;*/ line-height: inherit;}
- .od .od_cont .form_control {min-width:400px; height:42px; padding-left:20px; font-size:14px;}
- .od .od_cont .sec_head {margin-bottom:60px;}
- .od .od_cont .sec_head .tbl .number {color:#fd4802; font-weight:500;}
- .od .od_cont .sec_head .tbl td {text-align:left;}
- .od .od_cont .sec_head .tbl td > span {position:relative; margin-left:30px; padding-left:30px;}
- .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;}
- .od .od_cont .sec_head .tbl td > span:first-child {padding-left:0}
- .od .od_cont .sec_head .tbl td > span:first-child::before {display:none;}
- .od .od_cont .sec_head .tbl td > span em {margin-left:10px; margin-right:5px;}
- .od .od_cont .sec_body {}
- .od .od_cont .sec_body .foldGroup {}
- .od .od_cont .sec_body .foldGroup > ul > li {padding:0px 30px;}
- .od_cont .foldGroup .btn.btn_dark {height:42px; line-height:1; padding:10px 20px;}
- .od_cont .foldGroup .btn_popup {display:inline-block; position:absolute; left:auto; top:50%; transform:translateY(-50%); margin-left:10px; padding:0px 13px; height:34px; color:#222; font-size:14px; font-weight:200; border:1px solid #a7a7a7; box-sizing:border-box;}
- .od_cont .foldGroup .btn_popup span {vertical-align:top;}
- .od_cont .foldGroup .btn_link_popup {display:inline-block; position:absolute; left:auto; top:50%; margin-top:-12px; margin-left:10px; padding:0px; box-sizing:border-box;}
- .od_cont .foldGroup .btn_link_popup span {color:#888; font-size:12px; font-weight:200; border-bottom:1px solid #888;}
- .od_cont .foldGroup .fold_head::after {right:0px; z-index:-1;}
- .od_cont .foldGroup .fold_head a {padding:0;}
- .od_cont .foldGroup .fold_head .fold_tit {width:auto; padding:35px 0px;}
- .od_cont .foldGroup .fold_head .fold_tit span {font-size:24px;}
- .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;}
- .od_cont .foldGroup .fold_head .data.maxdisc {z-index:2;}
- .od_cont .foldGroup .fold_head .data span {display:inline-block; position:relative; padding-left:20px; margin-left:20px;}
- .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;}
- .od_cont .foldGroup .fold_head .data span:first-of-type {margin-left:0; padding-left:0;}
- .od_cont .foldGroup .fold_head .data span:first-of-type::before {display:none;}
- .od_cont .foldGroup .fold_mbinfo .fold_head.on .data {display:none;}
- .od_cont .foldGroup .fold_cont {padding:10px 0 40px; line-height:1; box-sizing:border-box; overflow:hidden;}
- .od_cont .foldGroup .fold_cont > div {}
- .od_cont .foldGroup dl {font-size:16px;}
- .od_cont .foldGroup dl .btn span {vertical-align:middle;}
- .od_cont .foldGroup dl > div {display:block; margin-top:20px; color:#222;}
- .od_cont .foldGroup dl > div:first-of-type {margin-top:0px}
- .od_cont .foldGroup dl > div dt {float:left; margin-right:40px; font-weight:300;}
- .od_cont .foldGroup dl > div dt .mid {display:inline-block; margin-top:12px}
- .od_cont .foldGroup dl > div dd {position:relative; float:left; width:780px;}
- .od_cont .foldGroup dl::after,
- .od_cont .foldGroup dl div::after {content:''; display:block; clear:both;}
- .od .od_side {float:right; width:320px;}
- .od .od_side * {font-family:inherit; line-height:1;}
- .od .od_side h3 {color:#222; font-size:24px; font-weight:300; letter-spacing:-0.025em;}
- .od .od_side h4 {margin-bottom:20px; color:#222; font-size:18px; font-weight:300; letter-spacing:-0.025em;}
- .od .od_side .item_gd figure {position:relative; height:150px;}
- .od .od_side .item_gd figure::after {content: ''; display: block; clear: both;}
- .od .od_side .item_gd figure .thumb {float:left; width:100px; height:150px; padding-top:0;}
- .od .od_side .item_gd figure figcaption {display:table-cell; width:178px; height:150px; vertical-align:middle; padding-left:20px}
- .od .od_side .item_gd figure figcaption a {}
- .od .od_side .item_gd figure figcaption .name {margin-top:5px;}
- .od .od_side .item_gd figure figcaption .price {}
- .od .od_side .item_gd figure figcaption .price {position:relative; margin-top:10px; padding-right:50px; box-sizing:border-box}
- .od .od_side .item_gd figure figcaption .price del {padding-left:0; line-height:1.2;}
- .od .od_side .item_gd figure figcaption .price .discount {position:absolute; right:0; bottom:0;}
- .od .od_side .item_gd figure figcaption .option {margin-top:5px;}
- .od .od_side .area_order {border:1px solid #ddd; border-top-color:#222;}
- .od .od_side .area_order dl dt {float:left;}
- .od .od_side .area_order dl dd {float:right;}
- .od .od_side .area_order dl::after,
- .od .od_side .area_order dl div::after {content:''; display:block; clear:both;}
- .od .od_side .area_order .tit_box {padding:20px 30px; border-bottom:1px solid #ddd;}
- .od .od_side .area_order .tit_box h3 {display:inline-block; margin-bottom:0}
- .od .od_side .area_order .tit_box span {display:inline-block; margin-top:2px; margin-left:5px; color:#888; font-size:14px; font-weight:200; vertical-align:top}
- .od .od_side .area_order .tit_box span em.number {color:#fd4802; font-weight:500;}
- .od .od_side .area_order .od_item_box {padding:0px 30px 0; border-bottom:1px solid #ddd;}
- .od .od_side .area_order .od_item_box .part_dlvr {padding:30px 0px 30px; border-top:1px solid #ddd}
- .od .od_side .area_order .od_item_box .part_dlvr:first-child {border-top:none;}
- .od .od_side .area_order .od_item_box .part_dlvr h4 span {color:#888; font-size:14px; font-weight:200; vertical-align:middle;}
- .od .od_side .area_order .od_item_box .part_dlvr .gd_list {margin-top:25px; padding-top:25px; border-top:1px dashed #ddd}
- .od .od_side .area_order .od_item_box .part_dlvr .gd_list:first-of-type {margin-top:0; padding-top:0; border-top:none;}
- .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd {margin-top:25px}
- .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd:first-of-type{margin-top:0}
- .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd .option .name {margin-top:5px; -webkit-line-clamp:3;}
- .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd .option span {display:block; line-height:1.4;}
- .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd .price {margin-top:5px}
- .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd .info_reserv {margin-top:10px; color:#fd4802;}
- .od .od_side .area_order .od_item_box .part_dlvr .gd_list .item_gd .info_reserv span {margin-left:10px}
- .od .od_side .area_order .od_amount_box {padding:35px 30px 30px; color:#888; font-size:14px; font-weight:200;}
- .od .od_side .area_order .od_amount_box dl div {margin-top:20px;}
- .od .od_side .area_order .od_amount_box dl div:first-child {margin-top:0px}
- .od .od_side .area_order .od_amount_box dl dd {color:#222; font-weight:300;}
- .od .od_side .area_order .od_amount_box dl dd em {font-size:16px}
- .od .od_side .area_order .od_amount_box dl .disc_amount {color:#fd4802; font-weight:300;}
- .od .od_side .area_order .od_amount_box .t_info {margin-top:15px;}
- .od .od_side .area_order .od_amount_box .btn_link {display:inline-block; margin-top:20px; padding:0px 13px; height:40px; line-height:38px; color:#222; font-size:14px; font-weight:300; border:1px solid #a7a7a7; box-sizing:border-box;}
- .od .od_side .area_order .od_amount_box .btn_link::after {display:none;}
- .od .od_side .area_order .totalprice_box {padding:0px 30px 30px}
- .od .od_side .area_order .totalprice_box dl {padding:30px 0 0; border-top:1px solid #ddd; font-size:16px; font-weight:300;}
- .od .od_side .area_order .totalprice_box dl dd span {font-size:24px;}
- .od .od_side .area_order .totalprice_box .info_point {margin-top:25px; padding:15px 10px; background:#f5f5f5; color:#888; font-size:14px; font-weight:300; text-align:center;}
- .od .od_side .area_order .totalprice_box .info_point .save_point {color:#fd4802;}
- .od .od_side .area_order .btn_box {padding:0px 30px 35px;}
- .od .od_side .area_salecoupon {margin-top:35px}
- .od .od_side .area_salecoupon input {font-size:14px; font-weight:200;}
- .od .od_side .area_salecoupon .input_wrap {float:left; width:242px}
- .od .od_side .area_salecoupon .btn {padding:14px 20px; height:50px; box-sizing:border-box; font-size:14px; font-weight:200}
- .od .od_side .area_salecoupon .coupon_box {width:100%; margin-top:10px; padding:30px; background:#f5f5f5; box-sizing:border-box;}
- .od .od_side .area_salecoupon .coupon_box .coupon {position:relative; border:1px solid #ddd; box-sizing:border-box; background:#fff;}
- .od .od_side .area_salecoupon .coupon_box .coupon .btn_close_code {position:absolute; right:14px; top:14px; z-index:2;}
- .od .od_side .area_salecoupon .coupon_box .coupon > div {position:relative;}
- .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:#f5f5f5; z-index:2; border:1px solid #ddd; border-right:none; border-top-left-radius:15px; border-bottom-left-radius:15px; overflow:hidden;}
- .od .od_side .area_salecoupon .coupon_box .coupon p {padding:0 20px;}
- .od .od_side .area_salecoupon .coupon_box .coupon .cp_name {padding-top:30px; color:#222; font-size:14px; font-weight:300;}
- .od .od_side .area_salecoupon .coupon_box .coupon .cp_cont {margin-top:15px;}
- .od .od_side .area_salecoupon .coupon_box .coupon .cp_cont span {color:#fd4802; font-size:20px; font-weight:500;}
- .od .od_side .area_salecoupon .coupon_box .coupon .cp_cont span em {font-size:24px;}
- .od .od_side .area_salecoupon .coupon_box .coupon .cp_condition {margin-top:10px; padding-bottom:15px; color:#888; font-size:12px; font-weight:300; line-height:1.4;}
- .od .od_side .area_salecoupon .coupon_box .coupon .cp_condition span {display:block; margin-top:5px}
- .od .od_side .area_salecoupon .coupon_box .coupon .cp_condition span .tag {display:inline-block; min-width:55px; height:22px; background:#fff6f2; color:#fd4802; font-size:11px; font-weight:300; box-sizing:border-box; border:1px solid #fd4802; text-align:center; line-height:21px;}
- .od .od_side .area_salecoupon .coupon_box .coupon .cp_date {padding:13px 0; border-top:1px dashed #ddd; text-align:center; font-size:14px; font-weight:200;}
- .od .od_side .area_salecoupon .coupon_box .info_coupon {text-align:center;}
- .od .od_side .area_salecoupon .coupon_box .info_coupon button {display:inline-block; margin-top:12px; border-bottom:1px solid #888; color:#888; font-size:12px; font-weight:200; line-height:1.2;}
- .od .od_side .area_saleitem {margin-top:40px}
- .od .od_side .area_saleitem .more_sale {margin-bottom:10px; padding:20px; box-sizing:border-box; border:1px solid #ddd}
- .od .od_side .area_saleitem .more_sale .txt a {display:block; position:relative; padding-left:45px; color:#fd4802; font-size:14px; font-weight:200;}
- .od .od_side .area_saleitem .more_sale .txt a span {display:block; line-height:20px;}
- .od .od_side .area_saleitem .more_sale .item_gd {margin-bottom:20px;}
- .od .od_side .area_saleitem .more_sale .name {-webkit-line-clamp:3; max-height:60px;}
- .od .od_side .area_saleitem .more_sale .item_gd + .txt {padding-top:20px; border-top:1px dashed #ddd;}
- .od .od_side .area_saleitem .more_sale .txt .ico {position:absolute; left:0; top:50%; transform:translateY(-50%);}
- /* od_shopping_Bag */
- .od .shopping_bag {}
- .od .shopping_bag.wide {padding-top:120px}
- .od .shopping_bag table th,
- .od .shopping_bag table td {vertical-align:middle;}
-
- .shopping_bag .sec_head table .form_field > div {display:inline-block; margin-left:30px;}
- .shopping_bag .sec_head table .form_field span {display:inline-block; line-height:23px;}
- .shopping_bag .sec_head table .form_field span .tag {display:inline-block; width:55px; height:22px; margin-right:8px; background:#fff6f2; color:#fd4802; font-size:11px; font-weight:300; box-sizing:border-box; border:1px solid #fd4802; text-align:center; line-height: 21px;}
- .shopping_bag .part_deliver {position:relative; margin-top:100px;}
- .shopping_bag .part_deliver table .info_item .info_box {vertical-align:top;}
- .shopping_bag .part_deliver .form_field input[type="radio"] + label:before,
- .shopping_bag .part_deliver .form_field input[type="radio"]:checked + label:after,
- .shopping_bag .part_deliver .form_field input[type="checkbox"] + label:before,
- .shopping_bag .part_deliver .form_field input[type="checkbox"]:checked + label:after,
- .shopping_bag .part_deliver .form_field input[type="checkbox"]:disabled + label:after {top:65px; transform:translateY(0%);}
- .shopping_bag .part_deliver:first-of-type {margin-top:0;}
- .shopping_bag .part_deliver h3.subH2 span {margin-top:3px; color:#888; font-size:16px; font-weight:200; line-height:24px;}
- .shopping_bag .part_deliver .btn_area {margin-top:20px}
- .shopping_bag .part_deliver .btn_area::after {content:''; clear:both; display:block;}
- .shopping_bag .part_deliver .btn_area button {float:left; padding:8px 14px; margin-left:8px; background:#f5f5f5; border:none; color:#222; font-size:14px; font-weight:200;}
- .shopping_bag .part_deliver .btn_area button:first-child {margin-left:0;}
- .shopping_bag .od_recommend {position:relative;}
- .shopping_bag .od_recommend .swiper-container {width:1460px; margin:auto; padding:0px; overflow:hidden; box-sizing:border-box;}
- .shopping_bag .od_recommend .swiper-container .swiper-wrapper {}
- .shopping_bag .od_recommend .swiper-container .swiper-wrapper .swiper-slide {width:296px}
- .shopping_bag .od_recommend .swiper-container .swiper-wrapper .swiper-slide .item_prod {width:100%}
- .shopping_bag .od_recommend .swiper-container .swiper-wrapper .swiper-slide .item_state {padding-bottom:0;}
- .shopping_bag .od_recommend .swiper-button-prev {left:-50px; top:210px}
- .shopping_bag .od_recommend .swiper-button-next {right:-50px; top:210px}
- .shopping_bag .od_recommend .swiper-button-prev::after,
- .shopping_bag .od_recommend .swiper-button-next::after {content: ''; display:inline-block; width:27.5px; height:50px; background:url(/images/pc/ico_arr_lg.png) no-repeat;}
- .shopping_bag .od_recommend .swiper-button-prev::after {background-position:0 50%;}
- .shopping_bag .od_recommend .swiper-button-next::after {background-position:100% 50%;}
- .shopping_bag .od_recommend .swiper-container .swiper-pagination {position:relative; display:block; left:auto; right:auto; bottom:auto; margin-top:50px}
- .shopping_bag .od_recommend .swiper-container .swiper-pagination-bullet {width:10px; height:10px; background:#ddd; opacity:1;}
- .shopping_bag .od_recommend .swiper-container .swiper-pagination-bullet-active {background: #ff8c12;}
- /* od_odPayment */
- .od .odPayment {}
- .odPayment .icon_tag {display:inline-block; margin-top:-3px;}
- .odPayment .icon_tag::after {content:''; clear:both; display:inline-block; font-weight:300;}
- .odPayment .icon_tag [class*="tag_"] {float:left; display:inline-block; height:22px; box-sizing:border-box; margin:0px 0 0 4px; padding:0 5px; border:1px solid #ddd; background: #fff; color:#888888; font-size: 11px; font-weight:300; vertical-align:top; line-height:21px;}
- .odPayment .icon_tag .tag_stype1 {border-color:#f5f5f5; background:#f5f5f5}
- .odPayment .icon_tag .tag_stype2 {border-color:#fd4802; background:#fff6f2; color:#fd4802;}
- .odPayment .maxdisc_amount,
- .odPayment .fold_head .data .total_gift,
- .odPayment .fold_head .data .total_deduct {color:#fd4802; font-weight:300;}
- .odPayment .fold_cont .area_overseas,
- .odPayment .fold_cont .area_customitem,
- .odPayment .fold_cont .area_selpoint {padding-top:30px; margin-top:30px; border-top:1px dashed #ddd;}
- .odPayment .fold_cont .area_overseas .info_txt,
- .odPayment .fold_cont .area_customitem .info_txt {margin-top:30px;}
- .odPayment .fold_cont .area_overseas .form_field .agree_overs {margin-top:15px;}
- .odPayment .fold_cont .area_overseas .form_field > div {float:left; margin-right:40px}
- .odPayment .fold_cont .area_overseas .info_box,
- .odPayment .fold_cont .area_overseas .info_box label {color:#666; font-size:16px; line-height:26px;}
- .odPayment .fold_cont .area_overseas .info_box label::before,
- .odPayment .fold_cont .area_overseas .info_box label::after {top:-2px !important; transform:translateY(0%) !important;}
- .odPayment .fold_cont .area_overseas .info_box .t_err {margin-top:12px; font-size:14px;}
- .odPayment .fold_cont .area_overseas .info_box.overs1 {margin-top:20px;}
- .odPayment .fold_cont .area_overseas .info_box.overs2 {margin-top:30px;}
-
- .odPayment .fold_cont .area_customitem .agree_custom label {color:#666; font-size:16px; line-height:26px;}
- .odPayment .fold_cont .area_customitem .agree_custom label::before,
- .odPayment .fold_cont .area_customitem .agree_custom label::after {top:-2px !important; transform:translateY(0%) !important;}
- .odPayment .area_selgift {}
- .odPayment .area_selgift .form_field::after {content:''; clear:both; display:block;}
- .odPayment .area_selgift .gift_box {margin-top:20px;}
- .odPayment .area_selgift .gift_box:first-of-type {margin-top:0;}
- .odPayment .gift_box .txt {margin-bottom:30px}
- .odPayment .gift_box .txt span {position:relative; padding-right:20px; margin-right:15px; color:#222; font-weight:300;}
- .odPayment .gift_box .txt span::after {content:'>'; position:absolute; right:0; top:50%; transform:translateY(-50%); color:#888}
- .odPayment .gift_box .form_field .gift {float:left; width:332px; margin-left:12px; margin-bottom:20px;}
- .odPayment .gift_box .form_field .gift:after {content:''; display:block; clear:both;}
- .odPayment .gift_box .form_field .gift:first-child {margin-left:0;}
- .odPayment .gift_box .form_field .gift:nth-child(3n-2) {margin-left:0;}
- .odPayment .gift_box .form_field .gift .chk_img+label span {padding:0; border:none;}
- .odPayment .gift_box .form_field .gift .chk_img:checked+label {border:2px solid #e7501b;}
- .odPayment .gift_box .form_field .gift input[type="checkbox"] + label:before,
- .odPayment .gift_box .form_field .gift input[type="checkbox"] + label:after{left:14px;}
- .odPayment .gift_box .form_field .gift .chk_img:checked+label {border:2px solid #e7501b;}
- .odPayment .gift_box .form_field .gift input[type="radio"] + label:before,
- .odPayment .gift_box .form_field .gift input[type="radio"] + label:after{left:14px;}
- .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;}
- .odPayment .gift_box .form_field .gift label > span {display:inline-block; width:100%;}
- .odPayment .gift_box .form_field .gift label .thumb {position:absolute; left:50px; top:10px; width:77px; height:98px; background-color:#eee;}
- .odPayment .gift_box .form_field .gift label .thumb img {width:100%;}
- .odPayment .gift_box .form_field .gift label .name {width:160px; color:#666; font-size:14px; line-height:1.4; font-weight:200;}
- .odPayment .gift_box .form_field .gift label .deduct {margin-top:5px;color:#fd4802; font-weight:300; font-size:14px;}
- .odPayment .form_field .agree_gift {display:block; width:100%; padding-top:30px; margin-top:30px; border-top:1px dashed #ddd; text-align:center;}
- .odPayment .form_field .agree_gift p {color:#888; font-size:14px;}
- .odPayment .form_field .agree_gift p label {color:#222; font-size:16px; font-weight:300;}
- .odPayment .form_field .agree_gift p.txt {position:relative; margin-top:20px}
- .odPayment .area_seldiscount {}
- /*.odPayment .area_seldiscount .maxdisc {display:block; width:100%; margin-bottom:30px;}*/
- .odPayment .area_seldiscount dl > div dt {width:170px; margin-right:0;}
- .odPayment .area_seldiscount dl > div dd {width:485px;}
- .odPayment .form_field .maxdisc input[type="checkbox"] + label {color:#222; font-size:16px;}
- .odPayment .form_field .input_wrap input[type="text"]:disabled {background:#f5f5f5;}
- .odPayment .form_field .input_wrap input[type="text"]:disabled::placeholder{color:#222; font-weight:300;}
- .odPayment .btn_coupon_toggle {display:inline-block; position:relative; padding-right:22px; color:#222; font-weight:300; }
- .odPayment .btn_coupon_toggle::after {content:''; position:absolute; right:0; top:2px; width:11px; height:9px; background:url('/images/pc/ico_mb_arrow.png') no-repeat 0% 100%; background-size:100% auto;}
- .odPayment .btn_coupon_toggle.on::after {top:3px; background-position:0 0;}
- .odPayment .btn_coupon_toggle span {color:#fd4802}
- .odPayment .coupon_list {display:none; margin-top:20px; padding-top:30px; border-top:1px solid #ddd}
- .odPayment .coupon_list > ul > li {margin-top:30px}
- .odPayment .coupon_list ul li:first-of-type {margin-top:0}
- .odPayment .coupon_list ul li .coupon {position:relative;}
- .odPayment .coupon_list ul li .coupon::after {content:''; display:block; clear:both;}
- .odPayment .coupon_list ul li .coupon .form_field {display:block; width:100%;}
- .odPayment .coupon_list ul li .coupon .form_field .select {display:block; width:100%; font-size:14px;}
- .odPayment .coupon_list ul li .coupon .form_field label {display:block; margin-bottom:10px; font-size:16px; font-weight:300;}
- .odPayment .coupon_list ul li .coupon .select_dress {line-height:24px}
- .odPayment .coupon_list ul li .coupon .item_gd {position:relative; height:90px; box-sizing:border-box;}
- .odPayment .coupon_list ul li .coupon .item_gd .thumb {position:absolute; left:0; top:0; width:60px; height:90px; padding-top:0;}
- .odPayment .coupon_list ul li .coupon .item_gd .name {margin-top:10px; color:#666; font-size:14px;}
- .odPayment .coupon_list ul li .coupon .item_gd .price {margin-top:5px;}
- .odPayment .coupon_list ul li .coupon .item_gd figure {height:90px;display:table-cell;vertical-align:middle;padding-left:80px;}
- .odPayment .coupon_list ul li .coupon .item_gd + .form_field {margin-top:10px;}
- .odPayment .coupon_list ul li .coupon .item_gd + .form_field .select {}
- .odPayment .coupon_list ul li .coupon .cp_discount {margin-top:12px;}
- .odPayment .coupon_list ul li .coupon .cp_discount .cp_amount {color:#fd4802; font-size:14px; font-weight:300;}
- .odPayment .coupon_list ul li .coupon .cp_discount .btn_del_coupon {position:relative; display:inline-block; margin-left:4px; margin-top:2px; width:10px; height:10px; background:url('/images/pc/ico_close1.png') no-repeat 50% 50%; background-size:100% 100%;}
- .odPayment .coupon_list ul li .coupon .cp_discount .btn_del_coupon span {position:absolute; display:inline-block; width:1px; height:1px; font-size:1px; text-indent:-999px; overflow:hidden;}
- .odPayment .coupon_list ul li .coupon_discount {}
- .odPayment .coupon_list ul li .coupon_cart {}
- .odPayment .coupon_list ul li .coupon_dlvrfee {}
- .odPayment .area_selpoint {}
- .odPayment .area_selpoint dl > div dt {width:170px; margin-right:0;}
- .odPayment .area_selpoint .form_field > div {float:left; margin-right:40px}
- .odPayment .area_selpoint .form_field > div.input_wrap {float:none; margin-right:0;}
- .odPayment .area_selpoint .form_field .remain_point {margin-right:10px; color:#fd4802; font-size:14px; font-weight:300;}
- .odPayment .area_selpoint .form_field label + .remain_point {margin-left:10px; vertical-align:middle;}
- .odPayment .area_selpoint .form_field p {margin-top:10px; color:#888; font-size:14px;}
- .odPayment .area_selpoint .form_field .agree_receipt {margin-top:20px;}
- .odPayment .area_selpoint .form_field .agree_receipt .info_box {margin-top:10px;}
- .odPayment .fold_paymethod .fold_cont {padding-top:20px; margin-top:-10px;}
- .odPayment .area_paymethod {}
- .odPayment .area_paymethod .radio_blk {padding:0px 30px; border:1px solid #ddd; margin-top:-1px;}
- .odPayment .area_paymethod .radio_blk:first-of-type {margin-top:0;}
- .odPayment .area_paymethod .radio_blk .paymethod_radio {position:relative}
- .odPayment .area_paymethod .radio_blk .paymethod_radio label {display:block; padding-top:30px; padding-bottom:30px; color:#222; font-size:16px; font-weight:300;}
- .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;}
- .odPayment .area_paymethod .radio_blk.on .paymethod_radio .quickpay_bnr {display:none;}
- .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;}
- .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);}
- .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('/images/pc/ico_pop_cls02.png') no-repeat 50% 50%; background-size:100% auto;}
- .odPayment .area_paymethod .radio_blk .paymethod_box {}
- .odPayment .area_paymethod .radio_blk .paymethod_box .card_quickpay {}
- .odPayment .area_paymethod .radio_blk .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;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .card_quickpay button.btn_addcard span {display:inline-block; position:relative; padding-top:55px;}
- .odPayment .area_paymethod .radio_blk .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('/images/pc/ico_plus.png') no-repeat 50% 50%; border-radius:50%;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .card_quickpay .empty {padding:30px 0; border-bottom:1px solid #ddd;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .card_quickpay .empty button.btn_addcard {margin:auto;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .card_quickpay .list_card {position:relative; padding:30px 0; margin-left:-30px; margin-right:-30px; overflow:visible;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .card_quickpay .list_card::before {content:''; position:absolute; left:-2px; top:0; bottom:0; border-right:2px solid #fd4802; z-index:2;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .card_quickpay .list_card::after {content:''; position:absolute; right:-2px; top:0; bottom:0; border-right:2px solid #fd4802; z-index:2;}
- .odPayment .area_paymethod .radio_blk.on {border:2px solid #fd4802}
- .odPayment .area_paymethod .radio_blk.on .paymethod_radio {border-bottom:1px solid #ddd;}
- .odPayment .card_quickpay .list_card .swiper-slide {width:340px; height:214px;}
- .odPayment .card_quickpay .list_card .swiper-button-prev,
- .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(/images/pc/ico_arr_lg.png) no-repeat; z-index:2;}
- .odPayment .card_quickpay .list_card .swiper-button-prev {left:244px; background-position:0 50%;}
- .odPayment .card_quickpay .list_card .swiper-button-next {right:244px; background-position:100% 50%;}
- .odPayment .card_quickpay .list_card .swiper-button-prev::after,
- .odPayment .card_quickpay .list_card .swiper-button-next::after {font-size:0px;}
- .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;}
- .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;}
- .odPayment .card_quickpay .list_card .card .logo_samsung {background:url(/images/pc/logo_card_samsung.png) no-repeat 0 50%;}
- .odPayment .card_quickpay .list_card .card .logo_hyundai {background:url(/images/pc/logo_card_hyundai.png) no-repeat 0 50%;}
- .odPayment .card_quickpay .list_card .card .etc {position:absolute; right:30px; top:30px; z-index:2;}
- .odPayment .card_quickpay .list_card .card .etc::after {content:''; clear:both; display:block;}
- .odPayment .card_quickpay .list_card .card .etc button {float:left; position:relative; margin-left:22px}
- .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;}
- .odPayment .card_quickpay .list_card .card .etc button:first-child::before {display:none;}
- .odPayment .card_quickpay .list_card .card .name {margin-top:10px; height:20px; text-align:center; font-size:14px; line-height:20px; color:#c9dbff}
- .odPayment .card_quickpay .list_card .card .number {margin-top:10px; text-align:center; font-size:24px; font-weight:300;}
- .odPayment .card_quickpay .list_card .card .number span {padding:0px 5px; letter-spacing:2px;}
- .odPayment .card_quickpay .list_card .card .select {position:absolute; left:20px; right:20px; bottom:20px; width:auto; z-index:2;}
- .odPayment .card_quickpay .list_card .card .select .select_dress {padding:13px 20px; background:#3259a8; color:#fff; font-size:14px; border:none;}
- .odPayment .card_quickpay .list_card .card .select .select_dress:after {top:15px; border-color:#fff transparent transparent transparent;}
- .odPayment .card_quickpay .list_card .card .select .select_dress.active:after {top:9px; border-color:transparent transparent #fff transparent}
- .odPayment .card_quickpay .list_card .card .select .select_options {border:none}
- .odPayment .card_quickpay .list_card .card .select .select_options li {background:#3259a8; font-size:14px; color:#fff;}
- .odPayment .card_quickpay .list_card .card .select .select_options li:hover {background:#093895;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .info_quick {padding:30px 0; border-top:1px solid #ddd;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .info_quick li {position:relative; font-size:14px; color:#888; padding-left:15px; margin-top:10px;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .info_quick li:first-of-type {margin-top:0;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .info_quick li::before {content:''; position:absolute; top:5px; left:0; background:#858585; width:3px; height:3px;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .sel_method {margin-bottom:30px; padding-top:30px;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .sel_method::after {content:''; clear:both; display:block;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .sel_method li {float:left; margin-left:40px;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .sel_method li:first-child {margin-left:0;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .sel_method li label span {display:inline-block; height:28px; color:#222; font-size:14px; line-height:28px;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .sel_method li label .payimg {display:inline-block; height:28px; background-position:0 50%; background-repeat:no-repeat;}
- .odPayment .area_paymethod .radio_blk .paymethod_box .sel_method li label .payimg.kakao {width:79px; background-image:url('/images/pc/pay_kakao.png');}
- .odPayment .area_paymethod .radio_blk .paymethod_box .sel_method li label .payimg.naver {width:68px; background-image:url('/images/pc/pay_naver.png');}
- .odPayment .area_paymethod .radio_blk .paymethod_box .sel_method li label .payimg.payco {width:66px; background-image:url('/images/pc/pay_payco.png');}
- .odPayment .area_paymethod .agree_insurance {display:none; margin:30px 0 0; padding-top:30px; border-top:1px solid #ddd;}
- .odPayment .area_paymethod .agree_insurance input[type="checkbox"] + label {color:#666; font-size:16px; font-weight:200;}
- .odPayment .area_paymethod .agree_insurance p {padding:15px 30px 30px; color:#888; font-size:14px; line-height:20px;}
- .odPayment .area_paymethod .agree_paymethod {margin-top:20px;}
- .odPayment .area_paymethod .agree_paymethod label {font-size:16px; font-weight:200;}
-
- .odPayment .area_paymentinfo {margin-top:30px;}
- .odPayment .paymentinfo {}
- .odPayment .paymentinfo.on {}
- .odPayment .paymentinfo .payinfo_blk {border:1px solid #ddd; border-top:none;}
- .odPayment .paymentinfo .payinfo_blk:first-child {border-top:1px solid #ddd;}
- .odPayment .paymentinfo .payinfo_blk a {display:block; padding:40px; color:#222; font-size:16px; font-weight:300;}
- .odPayment .paymentinfo .payinfo_blk a::after {clear:both; display:block; width:100%;}
- .odPayment .paymentinfo .payinfo_blk a span {float:right; position:relative; padding-right:22px; color:#222; font-size:14px;}
- .odPayment .paymentinfo .payinfo_blk a span::after {content:''; position:absolute; right:0; top:2px; width:11px; height:9px; background:url('/images/pc/ico_mb_arrow.png') no-repeat 0% 100%; background-size:100% auto;}
- .odPayment .paymentinfo .payinfo_blk.on a span::after {top:3px; background-position:0 0;}
- .odPayment .paymentinfo .payinfo_blk .infotxt {display:none; max-height:190px; margin-top:20px; color:#888; font-size:14px; line-height:26px; overflow-y:scroll;}
- .odPayment .paymentinfo .payinfo_blk.on .infotxt {display:block; margin:0px 40px 40px;}
- .odPayment .area_paymentinfo .agree_payment {margin:40px 0 30px; color:#666; font-size:16px; font-weight:200;}
- .odPayment .area_paybtn .btn {height:80px; font-size:18px; font-weight:300;}
- /* od_completed */
- .od .completed {}
- .completed .info_complete {padding:50px 0; text-align:center; background:#fff6f2;}
- .completed .info_complete .txt_box {margin-bottom:30px; color:#222; font-size:24px; font-weight:300; letter-spacing:-1px;}
- .completed .info_complete dl {}
- .completed .info_complete dl div {margin-top:15px}
- .completed .info_complete dl div dt,
- .completed .info_complete dl div dd {display:inline-block; font-weight:300;}
- .completed .info_complete dl div dt {color:#666; font-size:18px;}
- .completed .info_complete dl div dd {margin-left:20px; color:#fd4802; font-size:20px;}
- .completed .info_complete dl div.closedate dt,
- .completed .info_complete dl div.closedate dd {color:#888; font-size:16px; font-weight:200;}
- .completed .od_cont {width:100%;}
- .completed .od_cont h3 {margin-bottom:20px; font-size:20px; font-weight:500; letter-spacing:-0.025em;}
- .completed .od_cont .order_amount dl div {margin-top:20px;}
- .completed .od_cont .order_amount dl div:first-child {margin-top:0}
- .completed .od_cont [class^='area_']{margin-bottom:60px}
- .completed .od_cont .area_payinfo .tbl .tit {font-weight:300; margin-right:40px}
- .completed .btn_group_md {text-align:center;}
- .completed .btn_group_md::after {}
- .completed .btn_group_md .btn {margin:0px 5px; padding:0; width:230px; height:60px; font-weight:300;}
- .completed .btn_group_md .btn_default {border-color:#a7a7a7}
- .completed .btn_popup {display:inline-block; position:absolute; left:auto; top:50%; transform:translateY(-50%); margin-left:10px; padding:0px 13px; height:34px; color:#222; font-size:14px; font-weight:200; border:1px solid #a7a7a7; box-sizing:border-box;}
- .completed .btn_popup span {vertical-align:top;}
- /* od_nonMBorder */
- .od .nonMBorder {}
- .nonMBorder .cont_head {margin-bottom:40px;}
- .nonMBorder .btn {font-weight:300;}
- .nonMBorder .btn.btn_postcode {padding:14px 28px; font-size:16px;}
- .nonMBorder .btn_group_md .btn {padding:0; height:60px;}
- .nonMBorder .cont_head {text-align:center;}
- .nonMBorder .cont_head h3 {margin-bottom:40px; font-size:40px; font-weight:500;}
- .nonMBorder input[type="text"],
- .nonMBorder input[type="password"] {float:none; width: 100%; padding:15px 0 15px 18px; color:#222; font-size:16px; font-weight:300;}
- .nonMBorder input[type="text"]::placeholder{color:#999; font-weight:200;}
- .nonMBorder .form_head {margin-bottom:60px; color:#666; font-size:16px; font-weight:200; line-height:1.5; text-align:center;}
- .nonMBorder .form_field {display:block; margin-bottom:10px;}
- .nonMBorder .form_field:first-of-type {margin-bottom:0px;}
- .nonMBorder .form_field .txt_area {margin-bottom:40px; padding:30px; overflow:auto; max-height:176px; border:1px solid #ddd; color:#888; font-size:14px; line-height:1.5; font-weight:200;}
- .nonMBorder .form_field .ui_row [class^='ui_col_'] {margin-left:0;}
- .nonMBorder .form_info {margin-top:40px; color:#888; font-size:16px; line-height:1; position: relative;}
- .nonMBorder .form_info::after {content:''; clear:both; display:block;}
- .nonMBorder .form_info p span {display:block;}
- .nonMBorder .form_info p .jointit1 {color:#222; font-size:18px; }
- .nonMBorder .form_info p .jointit2 {margin-top:10px; color:#888; font-size:16px;}
- .nonMBorder .form_info 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;}
-
- .nonMBorder .btn_group_md {float:none; margin-top:40px}
- .nonMBorder .btn_group_md .btn_default {border-color:#a7a7a7}
- .nonMBorder .agree_nombPrivacy {margin-top:40px; margin-bottom:20px}
- .nonMBorder .agree_nombPrivacy label span {font-size:18px;}
- .nonMBorder .agree_nombPrivacy label span .tmark_required {color:#fd4802; font-size:14px; font-weight:300; line-height:14px;}
- .nonMBorder .adress_area {}
- .nonMBorder .adress_area dl {padding:15px 10px}
- .nonMBorder .adress_area dl div {margin-top:10px;}
- .nonMBorder .adress_area dl div:first-of-type {margin-top:0}
- .nonMBorder .adress_area dl div::after {content:''; display:block; clear:both;}
- .nonMBorder .adress_area dl div dt,
- .nonMBorder .adress_area dl div dd {float:left; height:24px; color:#666;}
- .nonMBorder .adress_area dl div dt span {display:inline-block; width:40px; height:20px; line-height:18px; margin-right:10px; box-sizing:border-box; border:1px solid #ddd; font-size:12px; text-align:center; letter-spacing:-0.025em; vertical-align:middle;}
- .nonMBorder .adress_area dl div dd {width: calc(100% - 50px); line-height:24px;}
- /* od_popup */
- .modal.od_pop .modal-header h5.modal-title {margin-top:0; font-size:24px; font-weight:300;}
- .modal.od_pop .modal-header .txt {margin-top:20px; color:#666; font-size:16px; font-weight:300;}
- .modal.od_pop .form_field,
- .modal.od_pop .form_field > div {display:block; width:100%;}
- /* od_shoppingbag_popup */
- .modal.opt_modify_pop {max-width:900px; max-height:900px;}
- .modal.opt_modify_pop .modal-header {margin-bottom:20px;}
- .modal.opt_modify_pop .modal-header h5.modal-title {margin-bottom:40px}
- .modal.opt_modify_pop .modal-body .pop_cont {max-height:680px;}
- .modal.opt_modify_pop .prod_title {}
- .modal.opt_modify_pop .opt_header {font-size:14px;}
- .modal.opt_modify_pop .opt_header .title {color:#222; font-weight:300}
- .modal.opt_modify_pop .opt_header .color {color:#666; font-weight:200;}
- .modal.opt_modify_pop img {width:100%}
- .modal.opt_modify_pop ul::after {content:''; clear:both; display:block; width:100%;}
- .modal.opt_modify_pop .prod_info {position:relative;}
- .modal.opt_modify_pop .prod_info::after {content:''; clear:both; display:block; width:100%;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_pic {float:left; width:360px;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_pic .pic_list {}
- .modal.opt_modify_pop .prod_info .prod_preview .area_pic .pic_list li {float:left; width:50%;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order {float:right; width:380px;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_color ul {}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_color ul li {float:left; margin-left:6px; margin-bottom:6px}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_color ul li a {display:block; box-sizing:border-box; width:70px; height:105px;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_color ul li a.on img {border:1px solid #222}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_size .form_field {}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_size .form_field input[type="radio"] + label {display:block; width:50px; height:40px; padding:0; line-height:41px; text-align:center; background:#f5f5f5; box-sizing:border-box;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_size .form_field input[type="radio"] + label::before,
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_size .form_field input[type="radio"] + label::after {display:none;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_size .form_field input[type="radio"]:checked + label {border:1px solid #222;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_size .form_field input[type="radio"]:disabled + label {text-decoration:line-through;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_size .form_field > div {float:left; width:auto;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_count .number_count span {cursor:pointer; display:inline-block; width:30px; height:30px; background:#f5f5f5; text-align:center;}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_count .number_count .plus::after {content:'+';}
- .modal.opt_modify_pop .prod_info .prod_preview .area_order .opt_count .number_count .minus::after {content:'-';}
- /* od_odPayment_popup */
- .modal.qPayAgree_pop {}
- .modal.qPayAgree_pop .area_QpayCk {margin-top:10px;}
- .modal.qPayAgree_pop .area_QpayCk:first-child {margin-top:0;}
- .modal.qPayAgree_pop .area_QpayCk .agr_select {position:relative; padding:13px 20px; border:1px solid #ddd}
- .modal.qPayAgree_pop .area_QpayCk .agr_select button {position:absolute; right:0; top:0; bottom:0; z-index:2;}
- .modal.qPayAgree_pop .area_QpayCk .info_agrQpay {display:none; padding:13px 20px; border:1px solid #ddd; border-top:none}
- .modal.adrsChange_pop {}
- .modal.adrsAdd_pop {}
- .modal.rqstModify_pop {}
-
-
- /* pd_공통 */
- .pd,
- .pd button {}
- .pd button span {line-height:1; font-weight:300;}
- .pd .dot_info {position:relative; padding-left:14px;}
- .pd .dot_info::before {content:'·'; position:absolute; left:0; top:0; line-height:inherit;}
- .pd .swiper-pagination {position:absolute; left:0; right:0; bottom:-66px; width:100%; text-align:center;}
- .pd .swiper-pagination .swiper-pagination-bullet {width:10px; height:10px; margin-left:10px; background:#ddd; opacity:1;}
- .pd .swiper-pagination .swiper-pagination-bullet-active {background:#fd4802}
- .pd .swiper-pagination .swiper-pagination-bullet:first-child {margin-left:0;}
- .pd .swiper-button-prev::after,
- .pd .swiper-button-next::after {content: '';}
- .pd .swiper-button-prev,
- .pd .swiper-button-next {top:50%; transform:translateY(-50%); margin:0; display:inline-block; width:27.5px; height:50px; background:url(/images/pc/ico_arr_lg.png) no-repeat;}
- .pd .swiper-button-prev {left:0; background-position:0 50%;}
- .pd .swiper-button-next {right:0; background-position:100% 50%;}
- .pd .area_slider {position:relative; width:100%; box-sizing:border-box; padding:0px 70px}
- .pd .area_slider .swiper-container .item_prod {width:100%;}
- .pd .area_slider .swiper-container .item_prod .item_state {padding:0}
- /* pd */
- .pd {}
- .pd .item_picker {position:absolute; z-index:2;}
- .pd .item_picker .pick_descr {display:none; position:absolute; background:#fff; z-index:2;}
- /* pd_detail */
- .pd_detail {}
- .pd_detail .thumb {display:block; position:relative; width:100%; height:0px; line-height:0; font-size:0; padding-top:150%; background:#f5f5f5; overflow:hidden;}
- .pd_detail .thumb img {position:absolute; left:0; top:50%; width:100%; transform:translateY(-50%) ; z-index:2;}
- .pd_detail .btn_popup {display:inline-block; padding:0px; box-sizing:border-box;}
- .pd_detail .btn_popup span {color:#888; font-size:12px; font-weight:200; border-bottom:1px solid #888; /*vertical-align:top;*/}
- .pd_detail .item_detail {}
- .pd_detail .item_detail .area_pic {float:left; position:relative; width:calc(100% - 560px); max-width:1200px; box-sizing:border-box;}
- .pd_detail .area_pic .thumb_nav_wrap {position:absolute; left:auto; top:0; width:50px; z-index:2;}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav {position:relative; padding:30px 0;}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container {max-height:500px;}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container .swiper-slide {width:50px; height:75px !important; box-sizing:border-box; background:#f5f5f5;}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container .swiper-slide.on {}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container .swiper-slide img {width:100%; box-sizing:border-box;}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-container .swiper-slide.on img {border:1px solid #222;}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-button-prev,
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-button-next {left:50%; right:auto; width:12px; height:21px; transform:translateX(-50%) translateY(0) rotate(90deg);}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-button-prev {top:-4px; bottom:auto;}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav .swiper-button-next {top:auto; bottom:-4px;}
- .pd_detail .area_pic .thumb_list_wrap {width:100%; padding-left:70px; box-sizing:border-box;}
- .pd_detail.hotdeal .area_pic .thumb_list_wrap {padding-left:0;}
- .pd_detail .area_pic .thumb_list_wrap ul {margin-top:-10px;}
- .pd_detail .area_pic .thumb_list_wrap ul::after {content:''; clear:both; display:block; width:100%;}
- .pd_detail .area_pic .thumb_list_wrap li {float:left; position:relative; width:calc(50% - 5px); margin-top:10px;}
- .pd_detail .area_pic .thumb_list_wrap li:nth-child(even) {margin-left:10px}
- .pd_detail .area_pic .thumb_list_wrap li a {display:block; cursor:url('/images/pc/cursor_zoom.png') 0 0, zoom-in;}
- .pd_detail .area_pic .thumb_list_wrap li.on a span img {border:2px solid #222; box-sizing:border-box; z-index:2;}
- .pd_detail .area_pic .thumb_nav_wrap.fixtop {position:fixed; top:90px; bottom:auto;}
- .pd_detail .area_pic .thumb_nav_wrap.fixbottom {position:absolute; top:auto; bottom:0px;}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav.disabled {padding:0;}
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav.disabled .swiper-button-prev,
- .pd_detail .area_pic .thumb_nav_wrap .thumbnav.disabled .swiper-button-next {display:none;}
- .pd_detail .area_pic.onlyitem {padding-left:0}
- .pd_detail .area_pic.onlyitem .thumb_nav_wrap {display:none;}
- .pd_detail .area_pic.onlyitem .thumb_list_wrap ul li {float:none; display:block; margin:0 auto;}
- .pd_detail .area_pic.onlyitem .thumb_list_wrap ul li.on::after {display:none;}
-
- .pd_detail .item_detail .area_desc {float:right; /*position:relative;*/ width:510px;}
- .pd_detail .area_desc .desc_wrap {/*position:absolute; right:auto; top:0; background:#eee*/width:510px; z-index:2;}
- .pd_detail .area_desc .desc_wrap.absbottom {position:absolute; top:auto; bottom:0px;}
- .pd_detail .area_desc .desc_wrap.fixbottom {position:fixed; top:auto; bottom:0px;}
-
- .pd_detail .area_desc .desc_wrap .timer_box {padding-bottom:30px;}
- .pd_detail .area_desc .desc_wrap .timer_box p {padding:16px 30px; background:#222;}
- .pd_detail .area_desc .desc_wrap .timer_box p span {display:inline-block; position:relative;}
- .pd_detail .area_desc .desc_wrap .timer_box p .tit {padding-left:25px; color:#fff; font-size:16px; background:url('/images/pc/ico_timer.png') no-repeat 0 50%;}
- .pd_detail .area_desc .desc_wrap .timer_box p .timer em {display:inline-block; position:relative; padding-left:15px; color:#fd4802; font-size:18px; font-weight:300;}
- .pd_detail .area_desc .desc_wrap .timer_box p .timer em::before {content:':'; position:absolute; left:4px; top:50%; transform:translateY(-50%);}
- .pd_detail .area_desc .desc_wrap .timer_box p .timer em:first-of-type {padding-left:20px;}
- .pd_detail .area_desc .desc_wrap .timer_box p .timer em:first-of-type::before {display:none;}
- .pd_detail .area_desc .desc_wrap .descript_box {margin-top:10px;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top {position:relative; height:23px;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top::after {content:''; clear:both; display:block;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top a.btn_brand {float:left; position:relative; margin-top:3px; padding-right:14px; color:#222; font-size:16px; font-weight:300;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top a.btn_brand:after {display:block; position:absolute; top:2px; right:0; width:8px; height:8px; border:1px solid #222; border-width:1px 1px 0 0; transform:rotate(45deg); -webkit-transform:rotate(45deg); content:''}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top button {float:right; position:relative; top:auto; right:auto; width:23px; height:23px; margin-left:15px; font-size:0px;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike {background:url('/images/pc/btn_itemLike.png') no-repeat 0% 50%;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike:hover,
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike.active {background-position:100% 50%;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike::before,
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemLike::after {display:none}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_top button.itemShare {background:url('/images/pc/btn_itemShare.png') no-repeat 50% 50%;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info {margin-top:40px; line-height:1;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .title_blk::after {content:''; clear:both; display:block;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .title_blk .codenumber {float:right; color:#888; font-size:14px; font-weight:200;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .title_blk .comment {float:left; color:#666; font-size:16px; font-weight:300;}
- .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:1.2;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk {position:relative; margin-top:30px;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk::after {content:''; clear:both; display:block;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk > span {float:left; }
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .sale_percent {display:block; width:100%; margin-bottom:20px; color:#fd4802; font-size:20px; font-weight:600;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .sale_price {color:#222; font-size:24px; font-weight:500;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .sale_price em {font-size:30px; font-weight:600;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .org_price {display:inline-block; margin-left:20px; margin-top:5px; color:#888; font-size:20px; font-weight:200;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .save_point {display:block; width:100%; margin-top:15px; color:#888; font-size:14px; font-weight:200;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_info .price_blk .btn_coupon {position:absolute; right:0; bottom:33px; z-index:2;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_status {margin-top:30px; padding:20px; background:#fff6f2; color:#fd4802; font-size:16px; font-weight:300; padding-left:20px;}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_status p {}
- .pd_detail .area_desc .desc_wrap .descript_box .desc_status p::before {content:''; display:inline-block; width:17px; height:17px; margin-right:8px; background:url('/images/pc/ico_err.png') no-repeat 50% 50%; vertical-align:top;}
- .pd_detail .area_desc .desc_wrap .benefit_box {margin-top:40px; padding-top:30px; border-top:1px solid #ddd; font-size:14px; font-weight:300;}
- .pd_detail .area_desc .desc_wrap .benefit_box dl .bnf_shopping {margin-bottom:25px}
- .pd_detail .area_desc .desc_wrap .benefit_box dl div::after {content:''; clear:both; display:block;}
- .pd_detail .area_desc .desc_wrap .benefit_box dl div dt {float:left; width:90px; color:#666}
- .pd_detail .area_desc .desc_wrap .benefit_box dl div dd {float:left; position:relative; width:calc(100% - 90px); color:#222;}
- .pd_detail .area_desc .desc_wrap .benefit_box dl div dd span {display:block; margin-top:10px}
- .pd_detail .area_desc .desc_wrap .benefit_box dl div dd span:first-child {margin-top:0px}
- .pd_detail .area_desc .desc_wrap .benefit_box dl div dd .btn_popup {position:absolute; right:0; top:0; z-index:2;}
- .pd_detail .area_desc .desc_wrap .option_box {margin-top:30px; padding-top:10px; padding-bottom:30px; border-top:1px solid #ddd;}
- .pd_detail .area_desc .desc_wrap .option_box > [class^="opt_"] {padding:20px 0;}
- .pd_detail .area_desc .desc_wrap .option_box > [class^="opt_"] .opt_header {margin-bottom:20px}
- .pd_detail .area_desc .desc_wrap .option_box > [class^="opt_"] .opt_header::after {content:''; clear:both; display:block;}
- .pd_detail .area_desc .desc_wrap .option_box > [class^="opt_"] .opt_header > span {display:inline-block; font-size:14px;}
- .pd_detail .area_desc .desc_wrap .option_box > [class^="opt_"] .opt_header .title {margin-right:20px; color:#222; font-weight:300;}
- .pd_detail .area_desc .desc_wrap .option_box > [class^="opt_"] .opt_header .color,
- .pd_detail .area_desc .desc_wrap .option_box > [class^="opt_"] .opt_header .size {color:#666; font-weight:200;}
- .pd_detail .area_desc .desc_wrap .option_box > [class^="opt_"] .opt_header .btn_popup {float:right;}
- .pd_detail .area_desc .desc_wrap .option_box .info_restock {padding-bottom:30px; border-bottom:1px solid #ddd;}
- .pd_detail .area_desc .desc_wrap .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;}
- .pd_detail .area_desc .desc_wrap .option_box .info_restock a.btn_popup::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:12px; height:13px; background:url('/images/pc/ico_bell.png') no-repeat 0 0;}
- .pd_detail .area_desc .desc_wrap .option_box .info_restock a.btn_popup::after {content:''; position:absolute; right:0px; top:50%; transform:translateY(-50%); width:6px; height:11px; background:url('/images/pc/ico_more_lg.png') no-repeat 100% 50%; background-size:contain;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select {}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .form_field {margin-top:10px;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom {height:52px;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom .select {height:52px; padding:18px 40px 18px 18px;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom .select:after {top:22px; right:20px}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom[aria-disabled="true"] .select {color:#bbb; background:#f5f5f5;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom .combo .list {top:50px; padding:0}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom .combo .list > li {padding:18px 18px; line-height:1;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom .combo .list > li > div {margin-top:5px}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom .combo .list > li > div:first-child {margin-top:0;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom .combo .list > li[data-soldout="true"]::after {right:18px; top:50%; bottom:auto; transform:translateY(-50%);}
- /**/
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom.deal_opt_item,
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom.deal_opt_item .select {height:110px}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom.deal_opt_item .item_prod {width:100%;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom.deal_opt_item .item_prod .item_state {padding:0; margin:0}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom.deal_opt_item .item_prod .item_state a {position:relative; padding-left:70px}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom.deal_opt_item .item_prod .item_state a .itemPic {position:absolute; left:0; top:0; width:50px; height:70px; padding:0;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_select .select_custom.deal_opt_item .combo .list {top:109px}
- .pd.deal .tab_detail_cont .select_custom.deal_opt_item,
- .pd.deal .tab_detail_cont .select_custom.deal_opt_item .select {height:110px}
- .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod {width:100%;}
- .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod .item_state {padding:0; margin:0}
- .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod .item_state a {position:relative; padding-left:70px}
- .pd.deal .tab_detail_cont .select_custom.deal_opt_item .item_prod .item_state a .itemPic {position:absolute; left:0; top:0; width:50px; height:70px; padding:0;}
- .pd.deal .tab_detail_cont .select_custom.deal_opt_item .combo .list {top:109px}
- /**/
- .pd_detail .area_desc .desc_wrap .option_box .opt_color ul {margin-top:-8px}
- .pd_detail .area_desc .desc_wrap .option_box .opt_color ul::after {content:''; clear:both; display:block;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_color ul li {float:left; margin-left:8px; margin-top:8px}
- .pd_detail .area_desc .desc_wrap .option_box .opt_color ul li:nth-child(7n-6) {margin-left:0;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_color ul li a {display:block; box-sizing:border-box; width:66px; height:99px;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_color ul li a img {width:100%;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_color ul li a.on img {border:1px solid #222}
- .pd_detail .area_desc .desc_wrap .option_box .opt_size .form_field {display:block; margin-top:-8px;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_size .form_field > div {margin-left:8px; margin-top:8px;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_size .form_field > div:nth-child(7n-6) {margin-left:0px;}
- .pd_detail .area_desc .desc_wrap .option_box .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;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_size .form_field input[type="radio"] + label::before,
- .pd_detail .area_desc .desc_wrap .option_box .opt_size .form_field input[type="radio"] + label::after {display:none;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_size .form_field input[type="radio"]:checked + label {border:1px solid #222;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_size .form_field input[type="radio"]:disabled + label {text-decoration:line-through; background:#f5f5f5; border-color:#f5f5f5; color:#bbb; opacity:1;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_size .form_field > div {float:left; width:auto;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_result {}
- .pd_detail .area_desc .desc_wrap .option_box .opt_result .result_item {position:relative; padding:30px 0; border-bottom:1px solid #ddd;}
- .pd_detail .area_desc .desc_wrap .option_box .result_item .opt_header span {display:block}
- .pd_detail .area_desc .desc_wrap .option_box .result_item .opt_header .item_name {color:#222; font-size:16px; font-weight:300;}
- .pd_detail .area_desc .desc_wrap .option_box .result_item .opt_header .item_option {margin-top:10px; color:#888;}
- .pd_detail .area_desc .desc_wrap .option_box .result_item .item_price {position:absolute; right:0; bottom:30px; color:#222; font-size:18px; font-weight:500;}
- .pd_detail .area_desc .desc_wrap .option_box .result_item .btn_delete_item {position:absolute; right:0; top:30px; width:14px; height:14px; overflow:hidden; background:url('/images/pc/btn_delete_item.png') no-repeat 50% 50%; image-rendering:pixelated; text-indent:-999px; z-index:2;}
- .pd_detail .area_desc .desc_wrap .option_box .opt_count {padding-bottom:0;}
- .pd_detail .area_desc .desc_wrap .option_box .number_count {display:inline-block; border:1px solid #ddd}
- .pd_detail .area_desc .desc_wrap .option_box .number_count::after {content:''; clear:both; display:block;}
- .pd_detail .area_desc .desc_wrap .option_box .number_count span,
- .pd_detail .area_desc .desc_wrap .option_box .number_count input[type='text']{float:left;}
- .pd_detail .area_desc .desc_wrap .option_box .number_count span {cursor:pointer; position:relative; display:inline-block; width:40px; height:40px; text-align:center;}
- .pd_detail .area_desc .desc_wrap .option_box .number_count span::after {content:''; position:absolute; left:50%; top:50%; transform: translate(-50%, -50%);; width:12px; height:12px; background:url('/images/pc/btn_count.png') no-repeat 100% 0; image-rendering:pixelated;}
- .pd_detail .area_desc .desc_wrap .option_box .number_count .plus::after {content:''; background-position:100% 0;}
- .pd_detail .area_desc .desc_wrap .option_box .number_count .minus::after {content:''; background-position:0 0;}
- .pd_detail .area_desc .desc_wrap .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; font-family:'LATO','Noto Sans CJK kr','Noto Sans kr',sans-serif;}
- .pd_detail .area_desc .desc_wrap .price_box {padding:30px 0 40px; border-top:1px solid #222;}
- .pd_detail .area_desc .desc_wrap .price_box::after {content:''; clear:both; display:block;}
- .pd_detail .area_desc .desc_wrap .price_box .number {float:left; color:#666; font-size:14px; font-weight:200; margin-top:8px}
- .pd_detail .area_desc .desc_wrap .price_box .price {float:right; color:#222; font-size:30px; font-weight:500;}
- .pd_detail .area_desc .desc_wrap .price_box .price em {font-size:24px;}
- .pd_detail .area_desc .desc_wrap .btn_box .ui_row,
- .pd_detail .area_desc .desc_wrap .btn_box .ui_row [class^='ui_col_'] {margin:0;}
- .pd_detail .area_desc .desc_wrap .btn_box::after {content:''; clear:both; display:block;}
- .pd_detail .area_desc .desc_wrap .btn_box .btn {height:60px; font-size:18px; font-weight:300;}
- .pd_detail .area_desc .desc_wrap .btn_box .btn:disabled{background:#aaa; border-color:#aaa; opacity:1;}
- .pd_detail .area_desc .desc_wrap .npay_box {min-height:50px; margin-top:30px; background:#f5f5f5;}
- .pd_detail .area_desc .desc_wrap .exinfo_box {margin-top:30px}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul {border-top:1px solid #ddd}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li {border-bottom:1px solid #ddd}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li [class^="ex_"] > a {display:block; padding:30px 0; background:url('/images/pc/ico_more_lg.png') no-repeat 492px 50%; image-rendering:pixelated;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li [class^="ex_"] > a::after {content:''; clear:both; display:block;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li [class^="ex_"] > a .tit {color:#222; font-size:14px; font-weight:300;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li [class^="ex_"] > a .tit em.number {margin-left:4px; color:#666; font-weight:200;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_review {}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_review .star_score {float:right; margin-right:48px; height:14px;}
- .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:#ddd;}
- .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('/images/pc/star_empty.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_review .star_score .star .progbar {display:inline-block; height:14px; background:#222}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_review .star_score .score {color:#222; font-size:16px; font-weight:300;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review {width:500px; margin-bottom:30px;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a {display:block; position:relative; height:150px; padding:20px 35px 20px 150px; border:1px solid #eee;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .pic {position:absolute; left:20px; top:20px; width:110px;}
- .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;}
- .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('/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .star_score {margin-top:10px; height:14px;}
- .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:#ddd;}
- .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('/images/pc/star_empty.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .star_score .star .progbar {display:inline-block; height:14px; background:#222}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .star_score .ico {margin-left:10px}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .star_score .ico::before {vertical-align:inherit;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .best_review a .txt_best_review {margin-top:10px}
- .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;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_qna {}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_shipping {color:#666; font-size:14px; font-weight:200;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_shipping span {display:block; margin-top:10px;}
- .pd_detail .area_desc .desc_wrap .exinfo_box ul li .ex_shipping span:first-child {margin-top:0; margin-bottom:20px;}
- .pd_together {padding-top:120px;}
- .pd_together .area_slider {padding:0;}
- .pd_together .area_slider .swiper-wrapper {padding-bottom:60px;}
- .pd_together .area_slider .swiper-scrollbar {background:#ddd}
- .pd_together .area_slider .swiper-scrollbar-drag {border-radius:0; background:#222;}
- .pd_together .area_slider .swiper-container-horizontal>.swiper-scrollbar {position:relative; left:auto; right:auto; bottom:auto; width:100%; height:2px; opacity: 1 !important;}
- [class*="pd_descrp"] {width:1200px; margin-top:80px; padding-top:120px}
- [class*="pd_descrp"] .cont_body {max-height:1100px; overflow:hidden;}
- [class*="pd_descrp"] .cont_body.on {max-height:none;}
- [class*="pd_descrp"] .cont_body > div {position:relative; width:1200px; margin-left:auto; margin-right:auto}
- [class*="pd_descrp"] .descrp_box {}
- [class*="pd_descrp"] .descrp_box > div {margin-top:40px}
- [class*="pd_descrp"] .descrp_box > div:first-child {margin-top:0;}
- [class*="pd_descrp"] .descrp_box > div > span.tit_desc {display:block; margin-bottom:10px; font-size:18px; font-weight:500; letter-spacing:-0.025em;}
- [class*="pd_descrp"] .descrp_box > div > p {font-size:16px; font-weight:200; line-height:1.5; word-break:keep-all;}
- [class*="pd_descrp"] .mdhtml_box {margin-top:80px}
- [class*="pd_descrp"] .mdhtml_box img {max-width:100%;}
- [class*="pd_descrp"] .mdhtml_box iframe {display:block; margin-left:auto; margin-right:auto}
- [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}
- [class*="pd_descrp"] .mdhtml_box .movblock > iframe {position:absolute; left:0; right:0; top:0; bottom:0; width:100%; height:100%; z-index:2}
- [class*="pd_descrp"] [class^="view_"] {margin-top:100px; text-align:center;}
- [class*="pd_descrp"] [class^="view_"]:first-of-type {margin-top:0;}
- [class*="pd_descrp"] [class^="view_"] .tit_view {display:block; color:#222; font-size:32px; font-weight:300; text-align:center;}
- [class*="pd_descrp"] [class^="view_"] .model_info {display:block; margin-top:20px; color:#666; font-size:16px; font-weight:200; text-align:center;}
- [class*="pd_descrp"] [class^="view_"] .view {margin-top:40px}
- [class*="pd_descrp"] [class^="view_"] .view img {display:block; margin:10px auto 0}
- [class*="pd_descrp"] [class^="view_"] .view img:first-child {margin-top:0}
- [class*="pd_descrp"] .view_label_box .view span {display:inline-block;}
- [class*="pd_descrp"] .view_label_box .view span::after {content:''; clear:both; display:inline-block;}
- [class*="pd_descrp"] .view_label_box .view span img {float:left; margin-top:0; margin-left:20px}
- [class*="pd_descrp"] .view_label_box .view img:first-child {margin-left:0}
- [class*="pd_descrp"] .view_outfit_box {}
- [class*="pd_descrp"] .view_detail_box {}
- [class*="pd_descrp"] .brand_box {margin-top:100px; padding:40px; border:1px solid #ddd; text-align:center; box-sizing:border-box;}
- [class*="pd_descrp"] .brand_box .name {margin-bottom:25px; color:#222; font-size:24px; font-weight:300;}
- [class*="pd_descrp"] .brand_box a {display:inline-block; border:1px solid #a7a7a7; color:#222; font-weight:300;}
- [class*="pd_descrp"] .required_box {margin-bottom:80px}
- [class*="pd_descrp"] .required_box .area_detail {text-align:center;}
- [class*="pd_descrp"] .required_box .area_detail img {max-width:100%;}
- [class*="pd_descrp"] .required_box .area_infotbl {margin-top:100px;}
- [class*="pd_descrp"] .required_box .area_infotbl .title {font-size:24px; font-weight:500; letter-spacing:-0.025em;}
- [class*="pd_descrp"] .required_box .area_infotbl .tbl table th {width:280px; font-weight:300;}
- [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;}
- [class*="pd_descrp"] .required_box .area_kcl p {margin-top:20px; color:#222; font-size:14px; line-height:1; letter-spacing:-0.025em;}
- [class*="pd_descrp"] .required_box .area_kcl .tit {margin-top:0; font-size:16px;}
- [class*="pd_descrp"] .required_box .area_kcl a.linktxt3 {margin-left:20px; color:#888; font-weight:200; text-decoration:none !important;}
- [class*="pd_descrp"] .required_box .area_kcl .ico_kcl {position:absolute; left:64px; top:50%; transform:translateY(-50%); z-index:2;}
- [class*="pd_descrp"] .btn_more_box {position:relative; width:100%; margin-top:0; margin-bottom:120px; background:#fff; text-align:center; z-index:2;}
- [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; }
- [class*="pd_descrp"] .btn_more_box .btn {border-color:#fd4802; color:#fd4802;}
- [class*="pd_descrp"] .btn_more_box .btn span {position:relative; padding-right:35px;}
- [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(/images/pc/ico_mb_arrow2.png) no-repeat 0 0; background-size:auto 100%;}
- [class*="pd_descrp"] .btn_more_box .btn.active span::after {transform:rotate(-90deg);}
- [class*="pd_descrp"] .btn_more_box .btn .ico {margin-left:20px; margin-right:0;}
- .pd_clickother {}
- .pd_clickother .area_slider {margin-bottom:190px;}
- .pd_clickother .area_slider .itemName {height:32px}
- .pd_recommend {}
- .pd_recommend .area_slider {margin-bottom:170px; padding-bottom:1px;}
- .pd_recommend .area_slider .swiper-pagination {bottom:-55px;}
- .pd_recommend .area_slider .page {position:relative; min-height:670px; border:1px solid #ddd; box-sizing: border-box;}
- .pd_recommend .area_slider .page::after {content:''; clear:both; display:block;}
- .pd_recommend .area_slider .page .pic {float:left; position:relative; width:50%;}
- .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;}
- .pd_recommend .area_slider .page .item_wrap {display:table; position:absolute; width:50%; height:100%; right:0; top:0; bottom:0; table-layout:fixed;}
- .pd_recommend .area_slider .page .item_wrap .item_area {display:table-cell; width:100%; padding: 0px 10%; box-sizing:border-box; vertical-align:middle;}
- .pd_recommend .area_slider .page .item_wrap .item_area h5 {margin:0; color:#222; font-size:20px; font-weight:500;}
- .pd_recommend .area_slider .page .item_wrap .item_area h5 span {color:#666; font-weight:200;}
- .pd_recommend .area_slider .page .item_wrap .item_area .li_item {height:540px; margin-top:30px; overflow-y:auto;}
- .pd_recommend .area_slider .page .item_wrap .item_area .li_item::-webkit-scrollbar {width: 2px;}
- .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;}
- .pd_recommend .area_slider .page .item_wrap .item_area .li_item::-webkit-scrollbar-track {background-color: #dddddd;border-radius: 0px;}
- .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li {position:relative; height:150px; margin-top:20px}
- .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li:first-child {margin-top:0;}
- .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod {display:block; width:100%;}
- .pd_recommend .area_slider .page .item_wrap .item_area .li_item ul li .item_prod .item_state {display:table; width:100%;}
- .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;}
- .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}
- .pd_recommend .item_area .itemBrand {}
- .pd_recommend .item_area .itemName {}
- .pd_recommend .item_area .itemPrice {}
- .pd_recommend .item_area .itemPrice .itemPrice_original {}
- .pd_recommend .item_area .itemPrice .itemPercent {position:relative;}
- .pd_recommend .area_slider .page .item_wrap .item_area .btn {margin-top:30px; border-color:#fd4802; color:#fd4802;}
- .pd_relate {}
- .pd_relate .area_slider {margin-bottom:230px;}
- .pd_relate .area_slider .itemName {height:32px}
- .pd_dealitem {}
- .pd_dealitem .itemsGrp {position:relative; display:block; width:100%; margin-bottom:0;}
- .pd_dealitem .itemsGrp .item_prod {width:calc((100% - 60px)/4); margin-left:20px;}
- .pd_dealitem .itemsGrp .item_prod:nth-child(4n-3) {margin-left:0px;}
- .pd_dealitem .itemsGrp {margin-top:-60px}
- .pd_dealitem .itemsGrp .item_prod {margin-top:60px}
- .pd_dealitem .itemsGrp .item_prod .item_state {padding:0;}
- .pd_dealitem .itemLink {}
- .pd_dealitem .itemLink .itemPic::after {content:''; background:none; background:rgba(34,34,34,0.8) url('/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;}
- .pd_dealitem .itemLink:hover .itemPic::after,
- .pd_dealitem .itemLink:active .itemPic::after {content:''; opacity:1;}
- .pd_dealitem .rank {max-height:none; padding:12px 0 10px; z-index:3;}
- .pd_dealitem .rank.detail::after {background:#fd4802}
- .pd_dealitem .rank.detail span {display:block; font-size:14px; font-weight:300;}
- .pd_dealitem .rank.detail span em {display:block; margin-top:6px;}
- /* pd deal */
- .pd.deal {}
- .pd.deal div::after,
- .pd.deal dl::after,
- .pd.deal ul::after {content:''; clear:both; display:block;}
- .pd.deal .pd_detail .area_desc .desc_wrap .descript_box .desc_info {margin-top:20px}
- .pd.deal .pd_desc_wrap {position:relative; width:calc(100% - 560px); max-width:1200px; margin:100px 0px 0px; box-sizing:border-box;}
- .pd.deal .tab_detail_nav {height:60px; padding-bottom:60px; box-sizing:initial;}
- .pd.deal .tab_detail_nav ul {position:absolute; left:0; top:0; width:100%; height:60px; z-index:2;}
- .pd.deal .tab_detail_nav.fix ul {position:fixed; left:70px; top:80px; width:1200px; z-index:5;}
- .pd.deal .tab_detail_nav ul li {float:left; width:25%}
- .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;}
- .pd.deal .tab_detail_nav ul li.active a {border:1px solid #222; border-bottom-color:#fff; color:#222; font-weight:300; background:#fff;}
- .pd.deal .tab_detail_cont {display:none; min-height:1000px;}
- .container .wrap .content.wide.pd_clickother {margin-top:120px;}
-
- /* pd_popup */
- .modal.pd_pop dl div,
- .modal.pd_pop dl dt,
- .modal.pd_pop dl dd {float:left;}
- .modal.pd_pop div::after,
- .modal.pd_pop dl::after,
- .modal.pd_pop ul::after {content:''; clear:both; display:block;}
- .modal.pd_pop .pic .thumb {display:block; padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
- .modal.pd_pop .swiper-button-prev,
- .modal.pd_pop .swiper-button-next {top:50%; transform:translateY(-50%); margin:0; display:inline-block; }
- .modal.pd_pop .swiper-button-prev {left:-70px;}
- .modal.pd_pop .swiper-button-next {right:-70px;}
- .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);}
- .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);}
- .modal.pd_pop .modal-body .pop_cont {max-height:none;}
- .modal.pd_pop .modal-header h5.modal-title {display:inline-block; margin:0; font-size:24px; font-weight:300;}
- .modal.pd_pop .modal-header .txt {margin-top:20px; color:#666; font-size:16px; font-weight:300;}
- .modal.pd_pop .modal-body .pop_cont {line-height:1;}
- .modal.pd_pop .modal-footer {margin-top:40px}
- .modal.pd_pop .info_txt ul li {position:relative; font-size:14px; color:#888; padding-left:15px; margin-bottom:10px; line-height:1;}
- .modal.pd_pop .info_txt ul li:last-child {margin-bottom:0;}
- .modal.pd_pop .info_txt ul li:after {content:''; position: absolute; top:5px; left:0; background:#858585; width:3px; height:3px;}
- .modal.pd_pop .opt_select .form_field {margin-top:10px;}
- .modal.pd_pop .opt_select .select_custom {height:52px;}
- .modal.pd_pop .opt_select .select_custom .select {height:52px; padding:18px;}
- .modal.pd_pop .opt_select .select_custom .select:after {top:22px; right:20px}
- .modal.pd_pop .opt_select .select_custom[aria-disabled="true"] .select {color:#bbb; background:#f5f5f5;}
- .modal.pd_pop .opt_select .select_custom .combo .list {top:50px; padding:0}
- .modal.pd_pop .opt_select .select_custom .combo .list > li {padding:18px 18px; line-height:1;}
- .modal.pd_pop .opt_select .select_custom .combo .list > li > div {margin-top:5px}
- .modal.pd_pop .opt_select .select_custom .combo .list > li > div:first-child {margin-top:0;}
- .modal.pd_pop .opt_select .select_custom .combo .list > li[data-soldout="true"]::after {right:18px; top:50%; bottom:auto; transform:translateY(-50%);}
- /* pd_popup > EP채널쿠폰 */
- .modal.pd_pop.epcoupon_pop {max-width:none; width:620px; padding:60px 60px;}
- .pd_pop.epcoupon_pop .ep_coupon {position:relative; width:300px; margin:auto; border:1px solid #ddd; background:#f5f5f5; padding:44px 0; text-align:center; line-height:1;}
- .pd_pop.epcoupon_pop .ep_coupon > div {position:relative;}
- .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;}
- .pd_pop.epcoupon_pop .ep_coupon > div .cp_title {color:#222; font-size:16px; font-weight:600; letter-spacing:4px;}
- .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont {margin-top:20px;}
- .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont span {display:block; color:#222;}
- .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont span em.number {font-size:62px; font-weight:600;}
- .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont span em.unit {font-size:32px; font-weight:500;}
- .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont span.unit_won {}
- .pd_pop.epcoupon_pop .ep_coupon > div .cp_cont span.unit_percent {font-size:16px; font-weight:500;}
- .pd_pop.epcoupon_pop .info_txt {margin-top:30px;}
- .pd_pop.epcoupon_pop .modal-footer button {width:220px}
- /* pd_popup > 할인쿠폰 */
- .modal.pd_pop.salecoupon_pop {max-width:none; width:480px; padding:40px 60px;}
- .pd_pop.salecoupon_pop .coupon_list {line-height:1;}
- .pd_pop.salecoupon_pop .coupon_list li {margin-top:30px}
- .pd_pop.salecoupon_pop .coupon_list li:first-child {margin-top:0}
- .pd_pop.salecoupon_pop .coupon_list li .coupon {position:relative; border:1px solid #ddd; box-sizing:border-box; background:#fff;}
- .pd_pop.salecoupon_pop .coupon_list li .coupon > div {position:relative;}
- .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;}
- .pd_pop.salecoupon_pop .coupon_list li .coupon p {padding:0 20px;}
- .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_name {padding-top:30px; color:#222; font-size:14px; font-weight:300;}
- .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_cont {margin-top:10px;}
- .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_cont span {color:#fd4802; font-size:22px; font-weight:500;}
- .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_cont span em {font-size:28px; font-weight:600;}
- .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_condition {margin-top:16px; padding-bottom:30px; color:#888; font-size:12px; font-weight:300;}
- .pd_pop.salecoupon_pop .coupon_list li .coupon .cp_condition span {display:block; margin-top:5px}
- .pd_pop.salecoupon_pop .coupon_list li .coupon .btn_coupon_down {}
- .pd_pop.salecoupon_pop .coupon_list li .coupon .btn_coupon_down span {position:relative; display:inline-block; padding-right:24px;}
- .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('/images/pc/ico_cp_down.png') no-repeat 0 0;}
- .pd_pop.salecoupon_pop .coupon_list li .coupon .btn_coupon_done:disabled{background:#aaa; border-color:#aaa; opacity:1;}
- /* pd_popup > 쇼핑혜택, 카드혜택 */
- .modal.pd_pop[class*="bnf_"] {max-width:none; width:650px; padding:60px 60px;}
- .modal.pd_pop[class*="bnf_"] h6 {margin-bottom:20px}
- .modal.pd_pop[class*="bnf_"] .benefit_blk {margin-top:40px}
- .modal.pd_pop[class*="bnf_"] .benefit_blk:first-child {margin-top:0}
- .modal.pd_pop[class*="bnf_"] .tbl.type1 {padding:20px 0; font-size:14px;}
- .modal.pd_pop[class*="bnf_"] .tbl.type1 table tr th,
- .modal.pd_pop[class*="bnf_"] .tbl.type1 table tr td {font-size:14px; line-height:1; vertical-align:top;}
- .modal.pd_pop[class*="bnf_"] .tbl.type1 table tr th {padding:10px 0px 10px 20px; color:#222; text-align:left;}
- .modal.pd_pop[class*="bnf_"] .tbl.type1 table tr td {padding:10px 0px; color:#222;}
- .modal.pd_pop[class*="bnf_"] .tbl.type1 table tr td:last-child {padding:10px 20px 10px 0px; text-align:right;}
- .modal.pd_pop.bnf_shopping_pop .tbl.type1 table tr td {color:#fd4802;}
- .modal.pd_pop.bnf_card_pop table .info_card {text-align:left;}
- .modal.pd_pop.bnf_card_pop table .info_card p {margin-top:10px}
- .modal.pd_pop.bnf_card_pop table .info_card p:first-child {margin-top:0}
- .modal.pd_pop.bnf_card_pop table a.btn_more {display:inline-block; position:relative; padding-right:15px; color:#888; font-size:14px;}
- .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);}
- .modal.pd_pop.bnf_card_pop .info_txt {margin-top:20px;}
- /* pd_popup > 사이즈정보 */
- .modal.pd_pop.info_size_pop {max-width:none; width:840px; padding:60px;}
- .pd_pop.info_size_pop .pop_cont {max-height:none;}
- .pd_pop.info_size_pop .size_head {text-align:center; margin-bottom:20px}
- .pd_pop.info_size_pop .size_head .tit_sub {display:block; margin-bottom:20px; font-size:14px; font-weight:200;}
- .pd_pop.info_size_pop .size_head .tit_header {display:block; color:#222; font-size:18px; font-weight:300;}
- .pd_pop.info_size_pop .size_cont {}
- .pd_pop.info_size_pop .size_cont .size_tbl_box {margin-top:40px; position:relative;}
- .pd_pop.info_size_pop .size_cont .size_tbl_box:first-of-type {margin-top:0;}
- .pd_pop.info_size_pop .size_cont .size_tbl_box h6 {margin-bottom:20px;}
- .pd_pop.info_size_pop .size_cont .size_tbl_box .size_unit {position:absolute; right:0; top:2px; color:#888; font-size:14px;}
- .pd_pop.info_size_pop .size_footer {margin-top:20px}
- .pd_pop.info_size_pop .tab_nav {}
- .pd_pop.info_size_pop .tab_nav ul::after {content:''; clear:both; display:block;}
- .pd_pop.info_size_pop .tab_nav ul li {float:left; width:calc((100%-2px)*1/3); text-align:center; background:#f5f5f5; border-bottom:1px solid #222; border-top:1px solid #f5f5f5;}
- .pd_pop.info_size_pop .tab_nav ul li.active {background:#fff; border:1px solid #222; border-bottom:1px solid #fff}
- .pd_pop.info_size_pop .tab_nav ul li a {display:block; color:#888; font-size:18px; font-weight:200; padding:20px 0;}
- .pd_pop.info_size_pop .tab_nav ul li.active a {color:#222; font-weight:300;}
- .pd_pop.info_size_pop .tab_cont_wrap {display:block; margin-top:40px}
- .pd_pop.info_size_pop .tab_cont_wrap .tab_cont {display:none;}
- .pd_pop.info_size_pop .tab_cont_wrap .tab_cont:first-of-type {display:block}
- .pd_pop.info_size_pop .tab_cont_wrap .tab_cont .size_head {}
- .pd_pop.info_size_pop .tab_cont_wrap .tab_cont .size_cont {}
- .pd_pop.info_size_pop .tab_cont_wrap .tab_cont .size_footer {}
- .pd_pop.info_size_pop .sub_tab_nav {display:inline-block;}
- .pd_pop.info_size_pop .sub_tab_nav ul {}
- .pd_pop.info_size_pop .sub_tab_nav ul::after {content:''; clear:both; display:block;}
- .pd_pop.info_size_pop .sub_tab_nav ul li {float:left; margin-left:30px; text-align:center;}
- .pd_pop.info_size_pop .sub_tab_nav ul li:first-child {margin-left:0}
- .pd_pop.info_size_pop .sub_tab_nav ul li a {display:inline-block; color:#888; font-size:16px; font-weight:200;}
- .pd_pop.info_size_pop .sub_tab_nav ul li.active a {color:#222; font-weight:300; border-bottom:1px solid #222}
- .pd_pop.info_size_pop .sub_tab_cont_wrap {display:block; margin-top:40px}
- .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont {display:none; position:relative;}
- .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont::after {content:''; clear:both; display:block;}
- .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont:first-of-type {display:block}
- .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont .img_sizeinfo {float:left;}
- .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:1.4; word-break:keep-all;}
- .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont dl div {padding:0 0 30px;}
- .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont dl div dt {margin-bottom:10px; color:#222; font-weight:300;}
- .pd_pop.info_size_pop .sub_tab_cont_wrap .sub_tab_cont dl div dd {color:#666;}
- /* pd_popup > 재입고 알림 신청 */
- .modal.pd_pop.push_restock_pop {max-width:none; width:630px; padding:60px;}
- .pd_pop.push_restock_pop .pop_cont {overflow:initial;}
- .pd_pop.push_restock_pop .item_blk {}
- .pd_pop.push_restock_pop .item_blk .item_prod {width:100%; display:block;}
- .pd_pop.push_restock_pop .item_blk .item_prod .item_state {padding:0;}
- .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;}
- .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;}
- .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink .itemBrand {display:block; margin:0;}
- .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink .itemName {display:block; margin:0;}
- .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink .itemPrice {margin:0;}
- .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink .itemPrice .itemPrice_original {}
- .pd_pop.push_restock_pop .item_blk .item_prod .item_state .itemLink .itemPrice .itemPercent {position:relative;}
- .pd_pop.push_restock_pop .select_blk {margin-top:40px;}
- .pd_pop.push_restock_pop .select_blk h6 {margin-bottom:20px}
- .pd_pop.push_restock_pop .select_blk .opt_size .form_field {display:block; margin-top:-8px;}
- .pd_pop.push_restock_pop .select_blk .opt_size .form_field > div {margin-left:8px; margin-top:8px;}
- .pd_pop.push_restock_pop .select_blk .opt_size .form_field > div:nth-child(7n-6) {margin-left:0px;}
- .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;}
- .pd_pop.push_restock_pop .select_blk .opt_size .form_field input[type="radio"] + label::before,
- .pd_pop.push_restock_pop .select_blk .opt_size .form_field input[type="radio"] + label::after {display:none;}
- .pd_pop.push_restock_pop .select_blk .opt_size .form_field input[type="radio"]:checked + label {border:1px solid #222;}
- .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;}
- .pd_pop.push_restock_pop .select_blk .opt_size .form_field > div {float:left; width:auto;}
- .pd_pop.push_restock_pop .select_blk .opt_select .select_blk {display:block; max-height:300px; overflow-y:scroll;}
- .pd_pop.push_restock_pop .modal-footer {margin-top:40px; padding-top:40px; border-top:1px solid #ddd;}
- .pd_pop.push_restock_pop .modal-footer button {width:220px;}
- /* pd_popup > 베스트 리뷰 & 포토영상 리뷰 자세히보기 공통 */
- .modal.pd_pop[class*="reviewdetail_pop"] {max-width:none; width:1080px; padding:60px;}
- .pd_pop[class*="reviewdetail_pop"] .pic .thumb {display:block; padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review {display:table; width:100%; background:#fff;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .pic {display:table-cell; position:relative; width:545px; height:545px; background:#222; vertical-align:top;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .pic::after {display:none;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .pic .thumb {display:block;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .pic .thumb img,
- .pd_pop[class*="reviewdetail_pop"] .detail .review .pic .thumb video {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;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont {display:table-cell; padding-left:50px; vertical-align:top;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .box_wrap {display:block; height:455px; overflow-y:auto;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .box_wrap [class*="_box"] {margin-top:25px;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .star_box {margin-top:0}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .star_box .star_score {height:17px;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .star_box .star {display:inline-block; position:relative; width:102px; height:17px; background:#ddd;}
- .pd_pop[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('/images/pc/star_empty_big.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .star_box .star .progbar {display:inline-block; height:100%; background:#222}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .response_box {}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div dl div {margin-top:13px; font-size:14px;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div:first-child dl div {margin-top:0}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div dl div {float:left; width:50%;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div.full dl div {width:100%}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div dl div dt {float:left; width:60px; color:#fd4802}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .response_box > div dl div dd {float:left; margin-left:20px; color:#666}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .txt_review_box {color:#666; font-size:14px; line-height:24px;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .writer_box {}
- .pd_pop[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;}
- .pd_pop[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;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .writer_box span:first-child {margin-left:0; padding-left:0}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .writer_box span:first-child::after {display:none;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box {}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box {margin-top:30px; padding-top:15px}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply {position:relative; padding:30px; background:#f5f5f5; font-size:14px;}
- .pd_pop[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;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply .reply_writer {}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply .reply_writer span {display:inline-block; position:relative;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply .reply_writer .wr_name {padding-left:24px; color:#222; font-weight:300;}
- .pd_pop[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('/images/pc/ico_admin.png') no-repeat 0 0;}
- .pd_pop[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;}
- .pd_pop[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;}
- .pd_pop[class*="reviewdetail_pop"] .detail .review .review_cont .reply_box .reply .reply_txt {margin-top:20px; color:#666; line-height:24px;}
- .pd_pop[class*="reviewdetail_pop"] .thumblist {position:absolute; right:60px; bottom:60px; max-width:365px; padding-bottom:10px;}
- .pd_pop[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('/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
- .pd_pop[class*="reviewdetail_pop"] .thumblist .swiper-slide {width:auto;}
- .pd_pop[class*="reviewdetail_pop"] .thumblist .swiper-slide .pic {position:relative; width:50px; height:50px; cursor:pointer; z-index:2;}
- .pd_pop[class*="reviewdetail_pop"] .thumblist .swiper-slide.swiper-slide-thumb-active .pic {border:2px solid #222;}
- .pd_pop[class*="reviewdetail_pop"] .thumblist .swiper-scrollbar {left:0; width:100%; height:2px; background:#ddd; border-radius:0; opacity:1;}
- .pd_pop[class*="reviewdetail_pop"] .thumblist .swiper-scrollbar-drag {background:#222; opacity:1;}
- /* pd_popup > 베스트 리뷰 자세히 보기 */
- .modal.pd_pop.pd_bestreviewdetail_pop {}
- /* pd_popup > 포토영상 리뷰 자세히 보기 */
- .modal.pd_pop.pd_photoreviewdetail_pop {}
- .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('/images/pc/ico_thumblist.png') no-repeat 9px 9px; box-sizing:border-box;}
- /* pd_popup > 포토영상 리뷰 리스트 */
- .modal.pd_pop.pd_photoreviewlist_pop {max-width:none; width:1080px; padding:60px;}
- .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;}
- .pd_photoreviewlist_pop .pic .thumb {padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
- .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('/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
- .pd_photoreviewlist_pop .photo_list {min-height:200px;}
- .pd_photoreviewlist_pop .photo_list ul {margin-top:-12px}
- .pd_photoreviewlist_pop .photo_list ul li {float:left; width:150px; margin-left:12px; margin-top:12px}
- .pd_photoreviewlist_pop .photo_list ul li:nth-child(6n-5) {margin-left:0}
- .pd_photoreviewlist_pop .ui_row {margin-top:50px; margin-bottom:0}
- /* pd_popup > 상품문의 이미지 팝업 슬라이드 */
- .modal.pd_pop.qna_img_pop {width:800px; height:800px; max-width:none; max-height:none; padding:60px; box-sizing:border-box;}
- .qna_img_pop .modal-body .pop_cont {max-height:none;}
- .qna_img_pop .swiper-slide {}
- .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;}
- .qna_img_pop .swiper-pagination {position:absolute; left:0; right:0; bottom:15px; width:100%; text-align:center;}
- .qna_img_pop .swiper-pagination .swiper-pagination-bullet {width:10px; height:10px; margin-left:10px; background:#ddd; opacity:1;}
- .qna_img_pop .swiper-pagination .swiper-pagination-bullet-active {background:#fd4802}
- .qna_img_pop .swiper-pagination .swiper-pagination-bullet:first-child {margin-left:0;}
- .qna_img_pop .swiper-button-prev::after,
- .qna_img_pop .swiper-button-next::after {content: '';}
- .qna_img_pop .swiper-button-prev,
- .qna_img_pop .swiper-button-next {top:50%; transform:translateY(-50%); margin:0; display:inline-block; }
- .qna_img_pop .swiper-button-prev {left:-70px;}
- .qna_img_pop .swiper-button-next {right:-70px;}
- .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);}
- .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);}
- /* pd_pop > 상품문의 작성 */
- .modal.pd_pop.pd_qnawrite_pop {width:650px; height:auto; max-width:none; max-height:none; padding:60px; box-sizing:border-box;}
- .modal.pd_pop.pd_qnawrite_pop .info_txt ul li {line-height:24px;}
- .modal.pd_pop.pd_qnawrite_pop .info_txt ul li:after {top:10px;}
- .pd_qnawrite_pop .modal-body .pop_cont {max-height:none;}
- .pd_qnawrite_pop .modal-footer {margin-top:40px; padding-top:40px; border-top:1px solid #ddd;}
- .pd_qnawrite_pop .form_field {display:block;}
- .pd_qnawrite_pop .input_box {margin-top:40px}
- .pd_qnawrite_pop .input_box textarea {display:block; width:100%; height:220px; padding:20px 20px; box-sizing:border-box; color:#222; font-size:16px;}
- .pd_qnawrite_pop .input_box .txt_cnt {display:block; width:100%; margin-top:10px; z-index:1;}
- .pd_qnawrite_pop .secret_box {position:absolute; left:0; bottom:0; z-index:2;}
- .pd_qnawrite_pop .push_box {margin-top:40px}
- .pd_qnawrite_pop .push_box dl {color:#222; font-size:16px;}
- .pd_qnawrite_pop .push_box dl dt {height:24px; margin-right:40px; line-height:24px; font-weight:300;}
- .pd_qnawrite_pop .push_box dl dd .form_field > div {margin-right:30px;}
- .pd_qnawrite_pop .push_box dl dd .form_field > div input[type="radio"] + label {font-weight:200;}
- /* pd_full_popup */
- body.lock {overflow:hidden;}
- .pd_pop.full_pop {display:none; position:fixed; top:0; bottom:0; left:0; right:0; width:100%; height:100%; overflow-y:auto; z-index:110; background:#fff; line-height:1;}
- .pd_pop.full_pop .info_txt ul li {position:relative; font-size:14px; color:#888; padding-left:15px; margin-bottom:10px; line-height:1;}
- .pd_pop.full_pop .info_txt ul li:last-child {margin-bottom:0;}
- .pd_pop.full_pop .info_txt ul li:after {content:''; position: absolute; top:5px; left:0; background:#858585; width:3px; height:3px;}
- .pd_pop .full_popup_wrap {}
- .pd_pop .full_popup_wrap .btn_close {position:fixed; right:30px; top:30px; z-index:12; }
- .pd_pop .full_popup_wrap .btn_close a {display:block; width:25px; height:25px; text-indent:-9999px; background:url('/images/pc/ico_pop_cls.png') no-repeat 50% 50%; background-size:100% auto;}
- .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;}
- .pd_pop .full_popup_wrap .full_pop_header .item_prod {position:relative; width:100%; height:120px;}
- .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state {display:table; width:50%; padding:0;}
- .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;}
- .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}
- .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state .itemBrand {margin:0}
- .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state .itemName {margin:15px 0 0}
- .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state .itemPrice {margin:20px 0 0}
- .pd_pop .full_popup_wrap .full_pop_header .item_prod .item_state .itemPercent {position:relative; top:auto; right:auto;}
- .pd_pop .full_popup_wrap .full_pop_header .select_custom {width:50%; height:auto;}
- .pd_pop .full_popup_wrap .full_pop_header .select_custom .combo .select {height:auto; border:0; padding:0 200px 0 0}
- .pd_pop .full_popup_wrap .full_pop_header .select_custom .combo .list {top:120px}
- .pd_pop .full_popup_wrap .full_pop_container {position:relative; width:1200px; margin:auto; padding-top:160px; padding-bottom:160px}
- /* pd_pop > 개별상품상세 설명 페이지 */
- .pd_pop.full_pop.pd_descrp_pop {padding:0; margin:0; background:none;}
- .pd_pop.full_pop.pd_descrp_pop .full_popup_wrap {padding:0 70px}
- .pd_pop.full_pop.pd_descrp_pop .full_popup_wrap .full_pop_container {float:left; width:calc(100% - 560px); min-width:1200px; background:#fff;}
- .pd_pop.full_pop.pd_descrp_pop .full_pop_fix_r {position:fixed; z-index:2; right:0; top:0; bottom:0; width:580px; padding:160px 70px 0; border-left:1px solid #ddd; box-sizing:border-box; background:#fff;}
- .pd_descrp_pop .full_pop_container .cont_body {padding-top:80px; background:#fff;}
- /* pd_pop > 상품문의 페이지 */
- .pd_qnalist_pop {}
- .pd_qnalist_pop .pd_qnalist {}
- .pd_qnalist .info_txt {margin-top:80px}
- .pd_qnalist .info_txt::after {content:''; clear:both; display:block;}
- .pd_qnalist .info_txt ul {float:left;}
- .pd_qnalist .info_txt ul li {position:relative; font-size:14px; color:#888; padding-left:15px; margin-bottom:10px; line-height:1;}
- .pd_qnalist .info_txt ul li:last-child {margin-bottom:0;}
- .pd_qnalist .info_txt ul li:after {content:''; position: absolute; top:5px; left:0; background:#858585; width:3px; height:3px;}
- .pd_qnalist .info_txt .btn_box {float:right;}
- .qna_list {margin-top:80px}
- .qna_list .ui_row {margin-top:20px}
- .qna_list .nodata {padding-top:120px; border-top:1px solid #222; text-align:center;}
- .qna_list .nodata .txt_box {color:#666; font-size:16px; font-weight:300; line-height:26px;}
- .qna_list .nodata .txt_box::before {content:''; display:block; width:36px; height:46px; margin:0 auto 24px; background:url('/images/pc/ico_content_none.png') no-repeat;}
- .qna_list .form_field input[type="checkbox"] + label {line-height:1;}
- .qna_list .form_field input[type="checkbox"] + label:before,
- .qna_list .form_field input[type="checkbox"] + label:after {top:50%; transform:translateY(-50%);}
- .qna_list .case1 .fold_head .fold_tit span {float:left; display:inline-block; position:relative; width:auto; max-width:600px;}
- .qna_list .case1 .fold_head .data [class^="wr_"] {display:inline-block; width:100px; text-align:center;}
- .qna_list .fold_cont .img_group .thumb_pic {background:#fff;}
- .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;}
- .qna_list .case1 .my_qna .fold_head,
- .qna_list .case1 .my_qna .fold_head.on,
- .qna_list .case1 .my_qna .fold_detail {background:#fff6f2;}
- .qna_list .fold_head .fold_tit .ico {float:left; display:inline-block; width:auto; height:auto; margin-left:12px;}
- .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}
- .qna_list .fold_head .fold_tit .ico_secret::after {content:''; display:inline-block; width:15px; height:16px; background:url('/images/pc/ico_secret.png') no-repeat 50% 50%;}
- /* pd_pop > 상품리뷰 페이지 */
- .pd_review_pop {}
- .pd_review_pop .pd_review {}
- .pd_review .swiper-pagination {position:relative; bottom:auto !important; width:100%; margin-top:40px; text-align:center;}
- .pd_review .swiper-pagination .swiper-pagination-bullet {width:10px; height:10px; margin-left:10px; background:#ddd; opacity:1;}
- .pd_review .swiper-pagination .swiper-pagination-bullet-active {background:#fd4802}
- .pd_review .swiper-pagination .swiper-pagination-bullet:first-child {margin-left:0;}
- .pd_review .thumb {display:block; position:relative; width:100%; height:0px; line-height:0; font-size:0; padding-top:150%; background:#f5f5f5; overflow:hidden;}
- .pd_review .pic .thumb {padding-top:100%; background-repeat:no-repeat; background-position:50% 50%; background-size:cover;}
- .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('/images/pc/ico_play.png') no-repeat 50% 50%; z-index:2;}
- .pd_review dl div,
- .pd_review dl dt,
- .pd_review dl dd {float:left;}
- .pd_review div::after,
- .pd_review dl::after,
- .pd_review ul::after {content:''; clear:both; display:block;}
- .pd_review h6 {margin-bottom:30px; color:#222; font-size:24px;}
- .pd_review [class^="area_"] {display:block; position:relative; margin-top:80px}
- .pd_review .area_rv_empty {margin-top:120px; text-align:center;}
- .pd_review .area_rv_empty .txt_box p {color:#222; font-size:24px; font-weight:300; line-height:34px;}
- .pd_review .area_rv_empty .txt_box p::before {content:''; display:block; width:60px; height:60px; margin:0 auto 30px; background:url('/images/pc/ico_point4.png') no-repeat 0 0;}
- .pd_review .area_rv_empty .txt_box p span.c_primary {font-weight:500;}
- .pd_review .area_rv_empty .txt_box dl {display:block; margin-top:30px; padding:40px 0; border:1px solid #ddd;}
- .pd_review .area_rv_empty .txt_box dl div {float:none; display:inline-block; margin-left:60px; font-size:16px}
- .pd_review .area_rv_empty .txt_box dl div:first-child {margin-left:0}
- .pd_review .area_rv_empty .txt_box dl div dt {color:#666; font-weight:200;}
- .pd_review .area_rv_empty .txt_box dl div dd {margin-left:20px; color:#fd4802; font-weight:300;}
- .pd_review .area_rv_empty .btn_box .btn {width:237px; height:60px; margin-top:60px; font-size:18px;}
- .pd_review .area_rv_average {}
- .pd_review .area_rv_average .star_score {margin-bottom:30px}
- .pd_review .area_rv_average .star_score span {display:inline-block; position:relative; color:#fd4802; vertical-align:middle;}
- .pd_review .area_rv_average .star_score .tit {margin-right:30px; font-size:18px; font-weight:300;}
- .pd_review .area_rv_average .star_score .score {margin-right:15px; font-size:32px; font-weight:500;}
- .pd_review .area_rv_average .star_score .star {width:152px; height:24px; background:#ddd;}
- .pd_review .area_rv_average .star_score .star .progbar {display:inline-block; height:100%; background-color:#fd4802;}
- .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('/images/pc/star_empty_big.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
- .pd_review .area_rv_average .average {margin-bottom:50px;}
- .pd_review .area_rv_average .average .part_average {float:left; width:255px; width:calc((100% - 180px)/4); margin-left:60px; color:#666; font-size:14px;}
- .pd_review .area_rv_average .average .part_average:first-of-type {margin-left:0px}
- .pd_review .area_rv_average .average .part_average:first-of-type {margin-left:0px}
- .pd_review .area_rv_average .average .part_average .tit {display:block; margin-bottom:25px; color:#222; font-weight:300;}
- .pd_review .area_rv_average .average .part_average dl > div {margin-top:15px;}
- .pd_review .area_rv_average .average .part_average dl > div:first-child {margin-top:0;}
- .pd_review .area_rv_average .average .part_average dl dt {float:left; width:60px;}
- .pd_review .area_rv_average .average .part_average dl dd {float:left; width:calc(100% - 60px);}
- .pd_review .area_rv_average .average .part_average dl dd::after {content:''; clear:both; display:block;}
- .pd_review .area_rv_average .average .part_average dl dd span {float:left; display:inline-block;}
- .pd_review .area_rv_average .average .part_average dl dd .ratio {width:145px; height:8px; margin-top:3px; background:#f5f5f5; overflow:hidden;}
- .pd_review .area_rv_average .average .part_average dl dd .ratio .progbar {display:inline-block; position:relative; height:8px; background:#888; vertical-align:top; margin-left:0}
- .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 #888; border-bottom-color:transparent;border-right-color:transparent;}
- .pd_review .area_rv_average .average .part_average dl dd .percent {margin-left:15px}
- .pd_review .area_rv_average .average .part_average dl div.on dt,
- .pd_review .area_rv_average .average .part_average dl div.on dd {color:#222; font-weight:300;}
- .pd_review .area_rv_average .average .part_average dl div.on dd .ratio .progbar {background:#222;}
- .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;}
- .pd_review .area_rv_average .info_review {color:#222; font-size:16px; background:#f5f5f5; padding:30px 60px; vertical-align:middle;}
- .pd_review .area_rv_average .info_review p {float:left; position:relative; padding-left:60px;}
- .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('/images/pc/ico_point3.png') no-repeat 50% 50%; background-size:100% 100%;}
- .pd_review .area_rv_average .info_review p span {font-weight:300;}
- .pd_review .area_rv_average .info_review dl {float:right; display:inline-block;}
- .pd_review .area_rv_average .info_review dl::after {content:''; clear:both; display:block;}
- .pd_review .area_rv_average .info_review dl div {margin-left:60px}
- .pd_review .area_rv_average .info_review dl div:first-child {margin-left:0}
- .pd_review .area_rv_average .info_review dl div dt {color:#666;}
- .pd_review .area_rv_average .info_review dl div dd {margin-left:20px; color:#222; font-weight:300;}
- .pd_review .area_rv_best .btn_arrow {position:absolute; right:0; top:0px; width:50px; height:24px; z-index:2;}
- .pd_review .area_rv_best .btn_arrow::after {clear:both; display:block;}
- .pd_review .area_rv_best .btn_arrow .swiper-button-prev,
- .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}
- .pd_review .area_rv_best .btn_arrow .swiper-button-prev {left:3px}
- .pd_review .area_rv_best .btn_arrow .swiper-button-next {right:3px}
- .pd_review .area_rv_best .btn_arrow .swiper-button-prev:after {content:''; display:block; position:absolute; top:0px; left:0; width:14px; height:14px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(-135deg); -webkit-transform:rotate(-135deg);}
- .pd_review .area_rv_best .btn_arrow .swiper-button-next:after {content:''; display:block; position:absolute; top:0px; right:0; width:14px; height:14px; border:2px solid #a7a7a7; border-width:2px 2px 0 0; transform:rotate(45deg); -webkit-transform:rotate(45deg);}
- .pd_review .area_rv_best .best_review {width:100%;}
- .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;}
- .pd_review .area_rv_best .best_review a .pic {position: relative;float: left;width:162px;height: 162px;margin-right: 23px;}
- .pd_review .area_rv_best .best_review a .star_score {margin-top:7px; height:14px;}
- .pd_review .area_rv_best .best_review a .star_score .star {display:inline-block; position:relative; width:102px; height:17px; background:#ddd;}
- .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('/images/pc/star_empty_big.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
- .pd_review .area_rv_best .best_review a .star_score .star .progbar {display:inline-block; height:100%; background:#222}
- .pd_review .area_rv_best .best_review a .star_score .ico {margin-left:10px}
- .pd_review .area_rv_best .best_review a .star_score .ico::before {vertical-align:inherit;}
- .pd_review .area_rv_best .best_review a .txt_best_review {margin-top:20px}
- .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;}
- .pd_review .area_rv_photo {}
- .pd_review .area_rv_photo .photo_list {position:relative;}
- .pd_review .area_rv_photo .photo_list ul li {float:left; position:relative; width:162px; height:162px; margin-left:11px}
- .pd_review .area_rv_photo .photo_list ul li:first-child {margin-left:0;}
- .pd_review .area_rv_photo .photo_list button {position:absolute; right:0; top:0; width:162px; height:162px; padding-top:60px; 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;}
- .pd_review .area_rv_photo .photo_list button::after {content:''; position:absolute; top:45px; left:50%; transform:translateX(-50%); width:40px; height:40px; background:url('/images/pc/ico_plus_white.png') no-repeat 50% 50%; z-index:1;}
- .pd_review .area_rv_all {margin-top:100px}
- .pd_review .area_rv_all h6 span {display:inline-block; margin-left:5px; color:#666; font-weight:200;}
- .pd_review .area_rv_all .selection {position:absolute; right:0; top:-16px; width:800px; z-index:2;}
- .pd_review .area_rv_all .selection .select_dress {padding:0px 15px; color:#666; font-size:14px; line-height:40px;}
- .pd_review .area_rv_all .selection .select_options {max-height:250px; overflow-y:auto;}
- .pd_review .area_rv_all .selection .select_options::-webkit-scrollbar {width:2px;}
- .pd_review .area_rv_all .selection .select_options::-webkit-scrollbar-thumb {background-color:#222; border-radius:0px; background-clip:padding-box; border:none;}
- .pd_review .area_rv_all .selection .select_options::-webkit-scrollbar-track {background-color:#ddd; border-radius:0px; box-shadow:none;}
- .pd_review .area_rv_all .selection .select_options li {padding:0; color:#666; font-size:14px; line-height:40px;}
- .pd_review .area_rv_all .review_list {border-top:1px solid #ddd;}
- .pd_review .area_rv_all .review_list > ul > li {padding:30px 0; border-bottom:1px solid #ddd; }
- .pd_review .area_rv_all .review_list > ul > li .review {}
- .pd_review .area_rv_all .review_list .review .info_box {}
- .pd_review .area_rv_all .review_list .review .info_box .star_score {float:left}
- .pd_review .area_rv_all .review_list .review .info_box .star_score .star {display:inline-block; position:relative; width:101px; height:16px; background:#ddd;}
- .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('/images/pc/star_empty_big.png') no-repeat 0 0; background-size:100% 100%; image-rendering:pixelated;}
- .pd_review .area_rv_all .review_list .review .info_box .star_score .star .progbar {display:inline-block; height:100%; background:#222}
- .pd_review .area_rv_all .review_list .review .info_box .writer {float:right;}
- .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;}
- .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;}
- .pd_review .area_rv_all .review_list .review .info_box .writer span:first-child {margin-left:0; padding-left:0}
- .pd_review .area_rv_all .review_list .review .info_box .writer span:first-child::after {display:none;}
- .pd_review .area_rv_all .review_list .review .response_box {margin-top:25px}
- .pd_review .area_rv_all .review_list .review .response_box > div {margin-top:15px;}
- .pd_review .area_rv_all .review_list .review .response_box > div:first-child {margin-top:0}
- .pd_review .area_rv_all .review_list .review .response_box > div dl div {margin-right:30px}
- .pd_review .area_rv_all .review_list .review .response_box > div dl div dt {color:#fd4802}
- .pd_review .area_rv_all .review_list .review .response_box > div dl div dd {margin-left:12px; color:#666}
- .pd_review .area_rv_all .review_list .review .photo_box {margin-top:20px}
- .pd_review .area_rv_all .review_list .review .photo_box .photo_list {}
- .pd_review .area_rv_all .review_list .review .photo_box .photo_list > ul li {float:left; width:calc((100% - 90px)/10); margin-left:10px}
- .pd_review .area_rv_all .review_list .review .photo_box .photo_list > ul li:nth-child(10n-9) {margin-left:0;}
- .pd_review .area_rv_all .review_list .review .txt_review_box {margin-top:25px; line-height:24px;}
- .pd_review .area_rv_all .review_list .review .reply_box {margin-top:30px; padding-top:15px}
- .pd_review .area_rv_all .review_list .review .reply_box .reply {position:relative; padding:30px; background:#f5f5f5;}
- .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;}
- .pd_review .area_rv_all .review_list .review .reply_box .reply .reply_writer {}
- .pd_review .area_rv_all .review_list .review .reply_box .reply .reply_writer span {display:inline-block; position:relative;}
- .pd_review .area_rv_all .review_list .review .reply_box .reply .reply_writer .wr_name {padding-left:24px; font-weight:300;}
- .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('/images/pc/ico_admin.png') no-repeat 0 0;}
- .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;}
- .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;}
- .pd_review .area_rv_all .review_list .review .reply_box .reply .reply_txt {margin-top:20px; color:#666; font-size:14px; line-height:24px;}
- .pd_review .area_rv_all .nodata {padding-top:120px; border-top:1px solid #ddd; text-align:center;}
- .pd_review .area_rv_all .nodata .txt_box {color:#666; font-size:16px; font-weight:300; line-height:26px;}
- .pd_review .area_rv_all .nodata .txt_box::before {content:''; display:block; width:36px; height:46px; margin:0 auto 24px; background:url('/images/pc/ico_content_none.png') no-repeat;}
- .pd_review .area_rv_all .nodata .btn_box {margin-top:40px;}
- .pd_review .area_rv_all .nodata .btn_box .btn span {color:#222; font-size:14px; font-weight:300;}
- .pd_review .area_rv_all .ui_row .pageNav {margin-top:50px}
- /* pd_popup > 배송교환반품 안내 */
- .pd_pop.full_pop.pd_delivery_pop {}
- .pd_delivery_pop .pd_delivery {}
- .pd_delivery h6 {margin-bottom:20px; font-size:18px;}
- .pd_delivery .table_box {margin-top:80px}
- .pd_delivery .tbl.type1 {padding:20px 0; font-size:14px;}
- .pd_delivery .tbl.type1 table tr th,
- .pd_delivery .tbl.type1 table tr td {font-size:16px; line-height:26px; vertical-align:top;}
- .pd_delivery .tbl.type1 table tr th {padding:10px 0px 10px 40px; color:#222; text-align:left;}
- .pd_delivery .tbl.type1 table tr td {padding:10px 0px; color:#222;}
- /* sch */
- .sch {}
- .sch div::after,
- .sch dl::after,
- .sch ul::after {content:''; clear:both; display:block;}
- .sch .sch_result {padding-bottom:150px}
- .sch_result .cont_head {}
- .sch_result .area_info {}
- .sch_result .area_info .info_result {color:#222; font-size:26px; font-weight:200;}
- .sch_result .area_info .info_result .keyword {font-weight:300;}
- .sch_result .area_info .info_result .number {color:#fd4802; font-size:28px; font-weight:300;}
- .sch_result .area_info .inner_search {position:absolute; right:0; top:-8px; border-bottom:2px solid #222; z-index:2;}
- .sch_result .area_info .inner_search input[type='text'] {width:305px; border:none; padding:2px 0px 5px; color:#222; font-size:18px;}
- .sch_result .area_info .inner_search input[type='text']::placeholder {color:#888}
- .sch_result .area_info .inner_search button {display:inline-block; width:24px; height:24px; background:url('/images/pc/ico_search_faq.png') no-repeat 50% 50%; background-size:100% auto; overflow:hidden; font-size:1px; text-indent:-999px;}
- .sch_result .area_info .related_keyword {clear:both; display:block; position:relative; margin-top:40px; padding:15px 30px 15px 150px; border:1px solid #eee; box-sizing:border-box;}
- .sch_result .area_info .related_keyword .title {display:inline-block; position:absolute; left:30px; top:20px; padding-right:20px; color:#222; font-size:18px; font-weight:300;}
- .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;}
- .sch_result .area_info .related_keyword ul li {float:left; padding:5px 10px}
- .sch_result .area_info .related_keyword ul li:first-of-type {margin-left:0}
- .sch_result .area_info .related_keyword ul li a {display:inline-block; color:#666; font-size:14px; font-weight:300;}
- .sch_result .area_info .related_keyword ul li a:hover {text-decoration:underline;}
- .sch_result .area_taps {position:relative; margin-top:100px; margin-bottom:80px}
- .sch_result .area_taps div::after {content:''; position:absolute; left:0; right:0; bottom:0px; border-bottom:1px solid #222; z-index:-1;}
- .sch_result .area_taps div ul li {float:left;}
- .sch_result .area_taps div ul li a {display:block; width:300px; height:60px; padding:20px 0; color:#888; font-size:18px; font-weight:200; background:#f5f5f5; text-align:center; border:1px solid #f5f5f5; border-bottom-color:#222;}
- .sch_result .area_taps div ul li.active a {color:#222; font-weight:300; background:#fff; border:1px solid #222; border-bottom-color:#fff;}
- .sch_result .cont_body {}
- .sch_result .cont_body .sch_result_cont {display:none;}
- /* my */
- .container.my .wrap .content .cont_body {margin-bottom: 150px;}
- .my .lnb_list::after {display: none;}
- .my .subH2 {margin-bottom: 25px; font-size: 26px;}
- .my .cont .sec_head h3,
- .my .my_cont .sec_head h3 {display: inline-block; font-size:32px; font-weight:500;}
- .my .btn.btn_sm {font-size: 14px;}
- .my .select {font-size: 14px;}
- .my .select_dress {padding:12px 20px;}
- .my .select_dress:after {right: 20px;}
- .my .select_options li {padding:12px 20px; text-indent: 0;}
- .my .alert_t {font-size: 14px; color:#888; margin-top: 25px;}
- .my .alert_t02 {font-size: 14px; color:#999; margin-top: 15px;}
- .my .radio_field input[type="radio"] + label:before {background-position: 0 0;}
- .my .radio_field input[type="radio"]:checked + label:after {background-position: -20px 0;}
- .my .sec_head {position: relative; font-size: 0;}
- .my .sec_head h3 {display: inline-block; font-size:30px; font-weight:500; margin-bottom: 0; vertical-align: middle;}
- .my .sec_head .mem_name {margin-bottom: 30px; font-weight: 200; color: #898989;}
- .my .sec_head .mem_name strong {color: #000; font-weight: 500;}
- .my .sec_head .od_detail {display: inline-block; margin:0 10px; font-size: 24px; font-weight: 200; color:#888; vertical-align: middle;}
- .my .sec_head .od_del_btn {padding:6px 14px; background:#f5f5f5; border:none; color:#222; font-size:14px; vertical-align: middle;}
-
- .my .mem_rank {position: relative; padding-left: 73px; float:left;}
- .my .mem_rank .rank_icon {width: 60px; height: 60px; line-height: 64px; position: absolute; left: 0; top: 0; font-size: 22px; border-radius: 50%; background: #000; color: #fff; text-align: center; font-weight: 900;}
- .my .mem_rank .rank_txt01 {font-size: 34px; height: 25px; line-height: 27px; color: #fd4802; margin-bottom: 14px; font-weight: 500;}
- .my .mem_rank .rank_txt02 button {display: inline-block; font-size: 14px; padding-right: 13px; margin-right: 20px; background: url(/images/pc/ico_mysm_arrow.png) no-repeat right top 6px;}
- .my .mem_info {background: #f5f5f5; padding: 50px;}
- .my .mem_info .mem_box {float:right;}
- .my .mem_info .mem_box > div {float:left; position: relative; margin-right: 70px; font-size: 16px;}
- .my .mem_info .mem_box > .mem_coupon .coupon_txt02 {font-size: 16px; font-weight: 500;}
- .my .mem_info .mem_box > .mem_coupon .coupon_txt02 span {font-size: 18px;}
- .my .mem_info .mem_box > div:last-child {margin-right: 55px;}
- .my .mem_info .mem_box > div:after {content:''; position: absolute; top: 7px; right: -30px; width: 1px; height: 50px; background: #dcdcdc;}
- .my .mem_info .mem_box > div:last-child:after {display: none;}
- .my .mem_info .mem_box > div a, .my .mem_info .mem_box > div .coupon_txt01 {font-size: 16px; color: #000; font-weight: 500;}
- .my .mem_info .mem_box > div .tit {font-size: 16px; font-weight: 300; color: #888; margin-bottom: 20px;}
- .my .mem_info .mem_box > div .big_txt {display: inline-block; font-size: 22px; padding-right: 3px; font-weight: 500;}
- .my .order_info {background: #fff; padding: 50px; padding-right: 60px; margin-bottom: 60px; border-top: 1px solid #222; border-bottom: 1px solid #222;}
- .my .order_info > ul {float:left; position: relative;}
- .my .order_info > ul:after {content:''; position: absolute; top: 5px; right: -70px; width: 1px; height: 46px; background: #aaa;}
- .my .order_info > ul > li {float:left; text-align: center; margin-right: 100px; position: relative;}
- .my .order_info > ul > li:after {content:''; position: absolute; top: 50%; right: -60px; width: 17px; height: 31px; background: url(/images/pc/ico_myinfo_arrow.png) no-repeat center; transform:translateY(-50%);}
-
- .my .order_info > ul > li:last-child {margin-right: 0;}
- .my .order_info > ul > li:last-child:after {display: none;}
- .my .order_info .or_p {font-size: 15px; color: #666; margin-bottom: 13px; font-weight: 300;}
- .my .order_info .count span {display: inline-block; font-size: 24px; font-weight: 500;}
- .my .order_info .count.zero span {color: #888;}
- .my .order_info .order_right {float:right; text-align: center;}
- .my .order_info .order_right .count span {color: #fd4802; }
- .my .order_sch_filter {position: relative; padding: 20px 30px; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;}
- .my .order_sch_filter .sch_radio_tab {float:left;}
- .my .order_sch_filter .sch_radio_tab input {width: 0px; height: 0px; opacity: 0; overflow: hidden;}
- .my .order_sch_filter .sch_radio_tab input + label {display: inline-block; background: #f5f5f5; width: 107px; padding:14px 0; text-align: center; cursor:pointer; float:left; border:1px solid transparent; font-weight: 200; margin-right: 8px;}
- .my .order_sch_filter .sch_radio_tab input:checked + label {background: #fff; border:1px solid #000;}
- .my .order_sch_filter .sch_right {float:right;}
- .my .order_sch_filter .sch_right * {float:left;}
- .my .order_sch_filter .sch_right .sch_datepicker {position: relative;}
- .my .order_sch_filter .sch_right .sch_datepicker.sb {margin-right: 27px;}
- .my .order_sch_filter .sch_right .sch_datepicker.sb:after {content:'~'; position: absolute; top: 14px; right: -18px;}
- .my .order_sch_filter .sch_right .sch_datepicker input[type='text'] {width: 160px; height: 42px; padding:0 20px; border:1px solid #ddd; background: url(/images/pc/ico_calender02.png) no-repeat right 17px center; font-size: 14px; color: #222; font-weight: 200;}
- .my .order_sch_filter .sch_right .sch_datepicker input[type='text']::placeholder {font-size: 14px; color: #222; font-weight: 200;}
- .my .order_sch_filter .btn {padding:10px 20px; margin-left: 10px; font-size: 14px;}
- .my .order_sch_filter .form_wrap {position: absolute; top: -60px; right: 0; width: 180px;}
- .my .order_row {margin-top: 60px;}
- .my .tbl.type2 {border-top: 1px solid #ddd; margin-top: -1px;}
- .my .tbl .cnt_sel .cnt_t {display: block; margin-bottom: 10px; font-size: 16px; font-weight: 300;}
- .my .tbl .cnt_sel .select {display: block; width: 100px; margin:0 auto; text-align: left;}
- .my .tbl .cnt_sel .select + button {width: 100px; margin-top: 4px;}
- .my .tbl_tit {position: relative; padding-bottom: 15px; border-bottom: 1px solid #000; font-size: 0;}
- .my .tbl_tit h3 {margin-bottom: 0;}
- .my .tbl_tit span {display: inline-block; vertical-align: middle;}
- .my .tbl_tit .start_t, .my .tbl_tit .gift_t, .my .tbl_tit .order_date {font-size: 18px; font-weight: 500;}
- .my .tbl_tit .order_date {margin:0 10px 0 9px;}
- .my .tbl_tit .detail_btn {position: absolute; top: 6px; right: 0; font-size: 14px; color: #8d8d8d; padding-right: 14px; background: url(/images/pc/ico_mysm_arrow.png) no-repeat right top 1px;}
- .my .order_label01 {font-size: 11px; color: #888; font-weight: 300; border:1px solid #ddd; padding:5px 8px; margin-right: 8px;}
- .my .order_label02 {font-size: 11px; color: #fd4802; font-weight: 300; border:1px solid #fd4802; padding:5px 8px; margin-right: 8px;}
- .my .order_row .order_table {border-top: 1px solid #010101; }
- .my .order_row .order_table td {text-align: center; border-right:1px solid #ddd; height: 210px; border-bottom: 1px solid #ddd;}
- .my .order_row .order_table td.product {text-align: left;}
- .my .order_row .order_table td.order_img, .order_row .order_table td.state {border-right:0;}
- .my .order_row .order_table td.order_img img {width: 100px; height: auto;}
- .my .order_row .order_table td.state li {margin-bottom: 4px;}
- .my .order_row .order_table td.state li:last-child {margin-bottom: 0;}
- .my .order_table td.state li a, .order_confirm .btn {width: 100px; line-height: 34px !important; padding: 0; font-size: 12px;}
- .my .order_confirm {padding: 20px 40px; text-align: right; background: #f5f5f5; }
- .my .order_confirm .cf_txt {display: inline-block; font-weight: 300;}
- .my .order_confirm span {display: inline-block; vertical-align: middle;}
- .my .order_confirm span.cf_desc {color:#fd4802; font-weight: 300;}
- .my .order_confirm button {margin-left: 20px;}
- .my .part_deliver {position:relative; margin-top: 60px;}
- .my .part_deliver h3.subH2 span {color:#888; font-size:16px; font-weight:200;}
- .my .part_deliver .btn_area {position:absolute; right:0; top:-8px; z-index:2;}
- .my .part_deliver .btn_area button {padding:8px 14px; background:#f5f5f5; border:none; color:#222; font-size:14px; font-weight:200;}
- .my .part_deliver button.btn.btn_sm {width: 100px; padding:6px 14px;}
- .my .part_deliver .tbl_btn_wrap button {display: block; width: 100px; margin:0 auto 4px; text-align: center;}
- .my .part_deliver table th,
- .my .part_deliver table td {padding-top:0px; padding-bottom:0px;}
- .my .part_deliver table td:first-child {padding-left: 30px;}
- .my .part_deliver table .info_item {/*width:810px;*/ width:100%}
- .my .part_deliver table .info_item.w1000 {width: 1000px;}
- .my .part_deliver table .info_item .info_box .od_freebies {margin-top:15px; color:#666; font-size:14px;}
- .my .part_deliver table .info_item > div {padding-top:40px; padding-bottom:40px;}
- .my .part_deliver table .info_item .cart_btn {margin-top: 12px; padding:6px 13px; font-size: 14px;}
- .my .part_deliver table .info_item .info_calc {width: 180px;}
- .my .part_deliver table .info_item .info_calc .point {margin-bottom:0; text-transform: uppercase;}
- .my .part_deliver table .delivery {margin-bottom:15px;}
- .my .part_deliver table .delivery .dlvr_staus {font-size: 18px; line-height: 1.4; font-weight: 300; margin-bottom: 5px;}
- .my .part_deliver table .delivery .dlvr_desc {font-size: 14px; line-height: 1.4; color: #888; font-weight: 300;}
- .my .part_deliver table .tbl_btn_wrap li {margin-bottom: 4px;}
- .my .part_deliver table .tbl_btn_wrap li:last-child {margin-bottom: 0;}
- .my .part_deliver table .tbl_btn_wrap li button {width: 100px;}
- .my .part_deliver .oder_gift {padding:40px 30px; border-bottom: 1px solid #ddd;}
- .my .part_deliver .oder_gift > div {display:table-cell; vertical-align:middle;}
- .my .part_deliver .oder_gift .title {width:100px; text-align:center; font-size: 16px; font-weight: 300;}
- .my .part_deliver .oder_gift .li_gift {padding-left:30px;}
- .my .part_deliver .oder_gift .li_gift li {padding-left: 15px; background: url(/images/pc/ico_bracket.png) no-repeat left top; font-size: 16px; margin-bottom: 13px;}
- .my .part_deliver .oder_gift .li_gift li:last-child {margin-bottom: 0;}
- .my .part_deliver .oder_gift .li_gift .deduct_p {color: #fd4802;}
- .my .part_deliver .tbl_group .tbl.type2:first-of-type {border-top: 0;}
- .my .btn_popup {display:inline-block; position:absolute; left:auto; top:50%; -ms-transform:translateY(-50%); transform:translateY(-50%); margin-left:15px; padding:0px 13px; height:34px; color:#222; font-size:14px; font-weight:200; border:1px solid #a7a7a7; box-sizing:border-box;}
- .my .btn_popup02 {display:inline-block; margin-left:15px; padding:0px 13px; height:34px; color:#222; font-size:14px; font-weight:200; border:1px solid #a7a7a7; box-sizing:border-box;}
- .my .btn_popup span {vertical-align:top;}
- @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
- .my .btn_popup, .my .btn_popup02 {margin-left: 0;}
- }
- .my .order_amount dl div {color:#666; font-weight: 300;}
- .my .order_amount dl dd.price {font-size: 20px;}
- .my .order_amount dl dd.price .oder_total_price {font-size: 24px;}
- .my .order_amount dl div:first-child {margin-top: 0;}
- .my .order_amount dl div {margin-top: 20px;}
- .my .order_amount dl div .btn {font-size: 14px; padding:6px 10px;}
- .my .tbl.row_tbl {padding:25px 0;}
- .my .tbl.row_tbl div {float:left; border-right:1px solid #ddd; margin-right: 20px; padding-right: 20px;}
- .my .tbl.row_tbl div:last-child {border-right:0;}
- .my .tbl.row_tbl .tit {margin-right: 5px;}
- .my .tbl.row_tbl .tit.c_primary {font-size: 14px;}
- .my .tbl.row_tbl .td_pt td {padding: 20px 40px;}
- .my .ex_option {margin-top: 14px;}
- .my .ex_option .option {margin-bottom: 15px;}
- .my .ex_option .option:last-child {margin-bottom: 0;}
- .my .ex_option dl:after {content:''; clear: both; display: block;}
- .my .ex_option dt {margin-right: 10px;}
- .my .ex_option dt, .ex_option dd {float:left; font-size: 14px;}
- .my .ex_option em {position:relative; padding-left:10px; margin-left:10px;}
- .my .ex_option em::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); height:10px; border-left:1px solid #ddd}
- .my .ex_option em:first-child {padding-left:0; margin-left:0;}
- .my .ex_option em:first-child::before {border-left:0;}
- .my .radio_field div {margin-right: 40px;}
- .my .radio_field input[type="radio"] + label {line-height: 1.8; font-weight: 200;}
- .my .radio_field label b {display: inline-block; vertical-align: middle; font-size: 14px; font-weight: 200; margin-left: 5px;}
- .my .order_tit .subH3 + .del_t {display: inline-block; margin-left: 10px; font-size: 14px; color:#888;}
- .my .ship_fee {background: #fff6f2; padding: 50px; text-align: center;}
- .my .ship_fee p {font-size: 18px; font-weight: 300;}
- .my .com_info_txt .chk_box {margin-top: 30px; padding-top: 30px; border-top: 1px solid #dcdcdc;}
- .my .com_info_txt .chk_box span {color:#858585; font-weight: 200;}
- .my .part_deliver .tbl.stock_tbl {border-top: 1px solid #000;}
- .my .part_deliver .tbl.stock_tbl table .alarm {line-height: 1.4; font-weight: 300;}
- .my .part_deliver .tbl.stock_tbl table .type1 p {color: #fd4802;}
- .my .part_deliver .tbl.stock_tbl table .type2 p {color: #222;}
- .my .part_deliver .tbl.stock_tbl table .type3 p {color: #888; font-weight: 200;}
- .my .part_deliver .tbl.stock_tbl table td {border-top: 1px solid #ddd;}
- .my .my_tab {position: relative; text-align: center; margin-top: 60px;}
- .my .my_tab .form_field {position: absolute; width: 200px; top: -10px; right: 0; text-align: left;}
- .my .my_tab > ul {display: inline-block;}
- .my .my_tab > ul:after {content:''; clear:both; display: block;}
- .my .my_tab > ul li {float:left; margin:0 20px}
- .my .my_tab > ul li a {display: inline-block; font-size: 20px; padding-bottom: 5px; font-weight: 200;}
- .my .my_tab > ul li a.on {color: #000; border-bottom: 2px solid #000; font-weight: 500;}
- .my .save_area {background: #fff6f1; text-align: center; padding: 60px 0;}
- .my .save_area p {font-size: 30px; font-weight: 500; margin-bottom: 30px;}
- .my .save_area p strong {color: #fd4802 !important; margin-left: 8px; font-size: 36px;}
- .my .save_area ul {display: inline-block;}
- .my .save_area ul:after {content:''; clear:both; display: block;}
- .my .save_area ul li {float:left; position: relative; color: #666;}
- .my .save_area ul li:first-child {margin-right: 40px;}
- .my .save_area ul li:first-child:after {content:''; position: absolute; top: -2px; right: -20px; width: 1px; height: 15px; background: #dcdcdc;}
- .my .save_area ul li span {margin-left: 5px; font-weight: 500; color: #000;}
- .my .order_tit {position: relative; margin-bottom: 20px;}
- .my .order_tit .subH3 {display: inline-block; margin-bottom: 0;}
- .my .order_tit .ship_btn {display: inline-block; font-size: 12px; color: #888; border-bottom: 1px solid #888; line-height: 1 !important; font-weight: 200; vertical-align: top;padding-bottom: 2px; margin-left: 10px;}
- .my .order_tit .btn_popup {right: 0;}
- .my .order_tit .desc {display: inline-block; font-size: 14px; color: #888; line-height: 1 !important; font-weight: 200; vertical-align: top; margin-left: 10px;}
-
- .my .tbl.type1 {margin-top: -1px;}
- .my .tbl.type1 th.ver_top {vertical-align: top; padding-top: 25px;}
- .my .tbl.type1 th.ver_top02 {vertical-align: top;}
- .my .tbl.type1 td textarea {width: 100%; resize:none; height: 82px; padding: 15px; font-size: 14px; color: #868686;}
- .my .tbl.review_tbl td {padding-left: 0;}
- .my .tbl.review_tbl td textarea {height: 200px;}
- .my .tbl.type1 td .select {width: 400px;}
- .my .tbl.type1 td .txt_cnt {text-align: right; margin-top: 10px;}
- .my .tbl.type1 td .rev_height, .my .tbl.type1 td .rev_weight {width: 250px; border:1px solid #ddd; position: relative;}
- .my .tbl.type1 td .rev_height input, .my .tbl.type1 td .rev_weight input {border:none; padding:0 20px; width: 100%; height: 42px; font-size: 14px; font-weight: 200;}
- .my .tbl.type1 td .rev_height span, .my .tbl.type1 td .rev_weight span {position: absolute; top: 15px; right: 20px; font-size: 14px; font-weight: 300;}
- .my .btn_wrap {margin:60px auto 0}
- .my .btn_wrap:after {content:''; clear:both; display: block;}
- .my .btn_wrap button {width: 49.3%; float:left; padding:18px 41px; font-weight: 300;}
- .my .btn_wrap button:first-child {margin-right: 15px;}
- .my .btn_wrap.half {font-size: 0; text-align: center;}
- .my .btn_wrap:after {content:''; clear:both; display: block;}
- .my .btn_wrap.half button:first-child {margin-right: 15px;}
- .my .btn_wrap.half button {width: 220px; display: inline-block; float:none;}
- .my .re_info_tbl {padding: 40px;}
- .my .re_info_tbl:after {content:''; clear:both; display: block;}
- .my .re_info_tbl > div {float:left; width: 50%;}
- .my .re_info_tbl .r_left {border-right:1px dashed #ddd; padding-right: 40px;}
- .my .re_info_tbl .r_left span.big_t {font-size: 24px; font-weight: bold;}
- .my .re_info_tbl .r_left span.big_t strong {color: #fd4802;}
- .my .re_info_tbl .r_right {float:right; padding-left: 40px;}
- .my .re_info_tbl dl {margin-bottom: 20px; height: 18px;}
- .my .re_info_tbl dl:after {content:''; clear: both; display: block;}
- .my .re_info_tbl dl:last-child {margin-bottom: 0;}
- .my .re_info_tbl dt, .my .re_info_tbl dd {float:left; width: 50%; font-size: 16px;}
- .my .re_info_tbl dt {font-weight: 300;}
- .my .re_info_tbl dd {text-align: right;}
- .my .review_radio .radio_li {width: 110px;}
- .my .review_radio .radio_li input[type="radio"] + label {line-height: 1.7;}
- .my .review_radio .radio_li input[type="radio"]:checked + label:after {background-position:-20px 0;}
- .my .review_radio .radio_li span {display: inline-block; font-weight: 200;}
- .my .review_tbl .pics, .my .review_tbl .fileAdd {width: 105px; height: 105px;}
- .my .review_tbl .picsThumbs {max-width:105px; max-height:105px;}
- .my .review_desc {margin-top: 20px; font-size: 14px; font-weight: 200; color: #666;}
- .my .tbl.review_tbl {padding: 20px 0;}
- .my .gift_sea_wrap {display: inline-block;}
- .my .gift_sea_wrap * {float:left;}
- .my .gift_search {margin:60px 0; text-align: center;}
- .my .gift_search label[for='gift_input'] {font-size: 18px; margin-right: 40px; font-weight: 500; margin-top: 13px;}
- .my .gift_search #gift_input {width: 400px; height: 42px;}
- .my .gift_search .btn {padding:10px 20px; margin-left: 10px; font-size: 14px;}
- .my .gift_list {border-top: 1px solid #000; margin-top: 40px; padding-top: 30px;}
- .my .gift_list li {position: relative; width: 387px; box-sizing: border-box; overflow: hidden; z-index: 8; float:left; margin: 0 20px 20px 0;}
- .my .gift_list li:last-child {margin:0 0 20px 0;}
- .my .gift_list li .gift_shape {background: #fff; border:1px solid #ddd; border-bottom: 0; padding: 30px; padding-bottom: 24px; overflow: hidden; text-align: right;}
- .my .gift_list li .gift_shape strong {display: block; color: #222; font-weight: 300; font-size: 14px; text-align: left; margin-bottom: 7px;}
- .my .gift_list li .gift_shape .gift_price01 {display: inline-block; padding:5px 8px; font-size: 11px; background: #fff6f2; border:1px solid #fd4802; color: #fd4802; font-weight: 300;}
- .my .gift_list li .gift_shape .gift_price02 {margin:10px 0 12px; color: #fd4802; font-weight: 600; font-size: 20px;}
- .my .gift_list li .gift_shape .gift_price02 .pr_t {font-size: 20px;}
- .my .gift_list li .gift_shape .gift_price02 .pr_num {font-size: 32px; font-weight: 600; padding-left: 5px;}
- .my .gift_list li .gift_shape .gift_price03 {font-weight: 300; font-size: 12px; color:#888;}
- .my .gift_list li .gift_date {padding:20px; border:1px solid #ddd; border-top:1px dashed #ddd; text-align: center;}
- .my .gift_list li .gift_date span {font-size: 14px; color: #222;}
- .my .gift_list li.off .gift_shape {background: #f5f5f5; border:none;}
- .my .gift_list li.off .gift_shape strong {color: #888;}
- .my .gift_list li.off .gift_shape .gift_price01 {border:1px solid #888; background: transparent;}
- .my .gift_list li.off .gift_shape .gift_price01 {color: #888; font-weight: 500;}
- .my .gift_list li.off .gift_shape .gift_price02 {color: #888;}
- .my .gift_list li.off .gift_date {background: #f5f5f5; border:none; border-top:1px dashed #ddd;}
- .my .gift_con {margin-top: 15px;}
- .my .gift_con dl {margin-bottom: 5px;}
- .my .gift_con dt, .my .gift_con dd {float:left;}
- .my .gift_con dt {width: 85px; color:#888;}
- /* my_delivery */
- .my .tbl.deli_tbl {padding:0; border-bottom:0;}
- .my .tbl.deli_tbl table {font-size: 30px; }
- .my .tbl.deli_tbl table th, .my .tbl.deli_tbl table td {padding:20px 30px;}
- .my .tbl.deli_tbl table th, .my .tbl.deli_tbl table td {border-bottom: 1px solid #ddd;}
- .my .tbl.deli_tbl table td.edit {text-align: center;}
- .my .tbl.deli_tbl table td.edit button {display: block; width: 100px; padding:6px 14px; margin:0 auto 4px;}
- .my .tbl.deli_tbl table dl {padding:10px 0;}
- .my .tbl.deli_tbl table dt, .my .tbl.deli_tbl table dd {float:left; position: relative; font-size: 16px; letter-spacing:-0.025em;}
- .my .tbl.deli_tbl table dt {font-weight: 300;}
- .my .tbl.deli_tbl table dt {width: 200px;}
- .my .tbl.deli_tbl .basic_deli {margin-top: 20px;}
- .my .tbl.deli_tbl .basic_deli .form_field {}
- .my .tbl.deli_tbl .basic_deli .form_field input[type="checkbox"] + label {font-weight: 200;}
- .my .tbl.deli_tbl .basic_deli .form_field input[type="checkbox"] + label:before, .basic_deli .form_field input[type="checkbox"]:checked + label:after {top: 0;}
- .my .tbl.deli_tbl .sr-only {text-indent: -999em;}
- .my .tbl.deli_tbl .deli_name {margin-right: 10px;}
- .my .tbl.deli_type {border-bottom: 1px solid #ddd; padding:20px 0;}
- .my .tbl.deli_type table th, .my .tbl.deli_type table td {padding: 10px 40px; border:none; text-align: left;}
- .my .tbl.deli_type input[type="text"], .my .tbl.deli_type input[type="password"] {padding:6px 0 6px 20px; width: 400px; height: 42px; font-size: 14px; color:#888;}
- .my .tbl.deli_type .search button {width: 122px; height: 42px; padding:10px; font-size: 14px; margin-left: 6px;}
- .my .tbl.deli_tbl .tit {margin-right: 35px;}
- .my .tbl.deli_req_type {padding:40px 40px;}
- .my .tbl.deli_req_type li {margin-bottom: 30px;}
- .my .tbl.deli_req_type li:last-child {margin-bottom: 0;}
- .my .tbl.deli_req_type li .form_text {margin-top: 17px;}
- .my .tbl.deli_req_type li .form_text input {width: 100%; height: 42px; padding:7px 0 7px 20px;}
- .my .tbl.deli_req_type li .form_text p {margin-top: 14px; padding-left: 5px; font-size: 14px; color: #999;}
- /* my_coupon */
- .my .coupon .order_row {margin-top: 30px;}
- .my .coupon_list {margin-top: 60px; padding-top: 40px; border-top: 1px solid #000;}
- .my .coupon_list li {float:left; width: 285px; margin:0 20px 20px 0; position: relative; position: relative; overflow: hidden;}
- .my .coupon_list li:nth-child(4n) {margin-right: 0;}
- .my .coupon_list li .cp_top {position: relative; overflow: hidden;}
- .my .coupon_list li .cp_detail { z-index: 99; border:1px solid #ddd; border-bottom: 0; padding:30px 20px 18px; padding-right: 5px;}
- .my .coupon_list li.off .cp_detail {background: #f5f5f5; border:1px solid #f5f5f5;}
- .my .coupon_list li .cp_detail .tit {margin-bottom: 13px; font-size: 14px;}
- .my .coupon_list li.off .cp_detail .tit {color:#888;}
- .my .coupon_list li .cp_detail .sale_t {display: block; color: #fd4802; font-size: 30px; margin-bottom: 15px;}
- .my .coupon_list li.off .cp_detail .sale_t {color:#888;}
- .my .coupon_list li .cp_detail .sale_t span {font-weight: 600;}
- .my .coupon_list li .cp_detail .sale_t.won_t {font-size: 22px;}
- .my .coupon_list li .cp_detail .sale_t.won_t span {font-size: 30px;}
- .my .coupon_list li .cp_detail .cp_cont {font-size: 12px; margin-bottom: 10px; font-weight: 300; color: #888;}
- .my .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;}
- .my .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;}
- .my .coupon_list li .cp_shape {position: absolute; top: 50%; right: -13px; z-index: 101; width: 26px; height: 26px; margin-top: -13px; border:1px solid #ddd; background: #fff; border-radius: 50%; z-index: 96;}
- .my .coupon_list li.off .cp_shape {border:1px solid #f5f5f5;}
- .my .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;}
- .my .coupon_list li .cp_date .cp_off {display: none; color: #888;}
- .my .coupon_list li.off .cp_date span {display: none;}
- .my .coupon_list li.off .cp_date .cp_off {display: block; font-weight: 200;}
- .my .coupon_list li.off .cp_date {background: #f5f5f5; border:1px solid #f5f5f5; border-top:1px dashed #ddd;}
- .my .coupon_list li .cp_info {text-align: center; margin-top: 20px;}
- .my .coupon_list li .cp_info button span {display: inline-block; border-bottom: 1px solid #888; color: #888;}
- /* my_review */
- .my .review_list .tbl.type2 {border-top: 1px solid #000;}
- .my .review_list .part_deliver .tbl.type2 table td {border-top: 1px solid #ddd;}
- .my .review_list .part_deliver .tbl.type2 table .alarm {font-size: 16px; line-height: 1.4; font-weight: 300;}
- .my .review_list .my_write {margin-bottom: 30px; margin-right: 30px; text-align: left; font-size: 14px; line-height: 1.7; color: #666;}
- .my .review_list .admin_write {position: relative; background: #f5f5f5; margin-top: 45px; margin-bottom: 40px; margin-right: 30px; padding: 30px; text-align: left;}
- .my .review_list .admin_write:before {content:''; position: absolute; top: -15px; left: 0; display: block; width: 15px; height: 15px; border-left:15px solid #f5f5f5; border-top:15px solid transparent;}
- .my .review_list .admin_write p {font-size: 14px; line-height: 1.7; color: #666;}
- .my .review_list .admin_write .admin_info {margin-bottom: 20px; font-size: 14px; font-weight: 300;}
- .my .review_list .admin_write .admin_info img {display: inline-block; vertical-align: bottom; margin-right: 5px;}
- .my .review_list .my_write_multi {margin-bottom: 40px; text-align: left; font-size: 0;}
- .my .review_list .my_write_multi button {display: inline-block; position: relative; margin-right: 10px; width: 87px; height: 87px;}
- .my .review_list .my_write_multi button.video:after {content:''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,.3);}
- .my .review_list .my_write_multi button.video:before {content:''; position: absolute; top: 50%; left: 55%; transform:translate(-50%, -50%); border-left:15px solid #fff; border-top:8px solid transparent; border-bottom:8px solid transparent; border-right:8px solid transparent; z-index: 8;}
- .my .review_list .my_write_multi button img {width: 100%; height:100%;}
- /* my_review_3 */
- .my .review_score {margin-top: 14px;}
- .my .review_list #star_grade button {display: inline-block; width: 25px; height: 25px; text-decoration: none; background: url(/images/pc/ico_star01.png) no-repeat center;}
- .my .review_list #star_grade button.on {background: url(/images/pc/ico_star02.png) no-repeat center;}
- .my .review_list #star_grade span {display: inline-block; width: 15px; height: 15px; text-decoration: none; background: url(/images/pc/ico_star01.png) no-repeat center/cover;}
- .my .review_list #star_grade span.on {background: url(/images/pc/ico_star02.png) no-repeat center/cover;}
- .my .tbl.review_tbl .form_field input[type="radio"] + label:before {background-position: 0 0;}
- /* my_mypage */
- .my .tbl.info_tbl .certi_btn02 {margin-left: 14px; font-size: 12px; color: #888; border-bottom: 1px solid #888;}
- .my .tbl.info_tbl .password_btn button {width: 100px; height: 42px; padding: 0; font-size: 16px; font-weight: 200;}
- .my .tbl.info_tbl input[type="text"], .my .tbl.info_tbl input[type="password"] {padding:6px 0 6px 20px; width: 400px; height: 42px; font-size: 14px; color:#222;}
- .my .tbl.info_tbl input[type="text"]:read-only {background: #f5f5f5;}
- .my .tbl.info_tbl .form_field input[type="radio"] + label:before {background-position: 0 0;}
- /* my_leave */
- .com_info_txt .form_field input[type="checkbox"] + label {line-height: 2;}
- .my .leave_tit {margin-bottom: 35px; text-align: center; font-size: 24px; font-weight: 500;}
- .my .leave_no {background: #fff6f2; margin-top: 60px; padding: 60px; text-align: center;}
- .my .leave_no h4 {font-size: 18px; font-weight: 500; color:#fd4802; margin-bottom: 20px;}
- .my .leave_no p {font-size: 16px; color:#666; font-weight: 200;}
- .my .tbl.track_tbl {border-top: 1px solid #000;}
- .my .tbl.track_tbl {border-top: 0;}
- .my .tbl.track_tbl th {border-top: 1px solid #000; border-bottom: 1px solid #000;}
- .my .tbl.track_tbl .pl40 {padding-left: 40px;}
- /* my_wishlist */
- .my .wish {}
- .my .wish .month_tit {position: relative; margin-bottom: 30px;}
- .my .wish .month_tit:after {content:''; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: #ddd;}
- .my .wish .month_tit .shape {position: relative; width: 80px; max-width: 80px;}
- .my .wish .month_tit .shape span {width: 80px; font-size: 18px; font-weight: 300;}
- .my .wish .item_prod {width: 23.3333%; margin:0 26px 50px 0;}
- .my .wish .item_prod:nth-child(4n) {margin:0 0 50px 0;}
- .my .wish .item_prod .itemcolorchip, .my .wish .item_prod .itemComment {margin:15px 6px 0px;}
- .my .wish .itemBadge {margin:0 4px; margin-top: 14px;}
- .my .wish .itemBadge [class*="badge"] {margin:0 2px;}
- .my .wish .item_state {padding:0;}
- /* my_return_1_exchangePOP, my_return_1_returnPOP */
- .modal.info_popup {max-width:840px; padding:60px;}
- .modal.info_popup .modal-header {margin-bottom: 30px;}
- .modal.info_popup .modal-title {font-size: 22px; font-weight: 500; margin-top: 0;}
- .modal.info_popup .tbl.type2 table th, .modal.info_popup .tbl.type2 table td {padding:20px 10px;}
- /* my_return_2_returnPOP */
- .modal.account_popup {max-width:670px; padding:60px;}
- .modal.account_popup .modal-header {margin-bottom: 30px;}
- .modal.account_popup .modal-title {font-size: 22px; font-weight: 500; margin-top: 0;}
- .modal.account_popup .modal-body section {margin-bottom: 40px;}
- .modal.account_popup .tbl.type2 table th, .modal.info_popup .tbl.type2 table td {padding:20px 10px;}
- .modal.account_popup .tbl.type1 table th, .modal.account_popup .tbl.type1 table td {padding: 10px 30px;}
- .modal.account_popup .tbl.type1 th.ver_top {vertical-align: top; padding-top: 25px;}
- /* my_exchange_1_optionPOP */
- .modal.option_popup {max-width:640px; padding:60px;}
- .modal.option_popup .modal-title {font-size: 22px; font-weight: 500; margin-top: 0;}
- .modal.option_popup .sch_radio_tab {text-align: center;}
- .modal.option_popup .sch_radio_tab input {width: 0px; height: 0px; opacity: 0; overflow: hidden; position: absolute;}
- .modal.option_popup .sch_radio_tab input + label {display: inline-block; background: #f5f5f5; width: 68px; padding:10px 0; text-align: center; cursor:pointer; border:1px solid transparent; font-weight: 300; margin-right: 8px;}
- .modal.option_popup .sch_radio_tab input + label:last-of-type {margin-right: 0;}
- .modal.option_popup .sch_radio_tab input:checked + label {background: #fff; border:1px solid #000;}
- .modal.option_popup .sch_radio_tab input:disabled + label {color: #999; text-decoration: line-through;}
- /* my_coupon_1_couponPOP */
- .modal.coupon_popup {max-width:640px;}
- .modal.coupon_popup .modal-footer button.half {width: 220px;}
- .modal.coupon_popup .modal-title {font-size: 22px; font-weight: 500; margin-top: 0;}
- .modal.coupon_popup dl {margin-bottom: 15px;}
- .modal.coupon_popup dl:last-child {margin-bottom: 0;}
- .modal.coupon_popup dl dt, .modal.coupon_popup dl dd {float:left;}
- .modal.coupon_popup dl dt {width: 80px; padding-left: 12px; position: relative; font-weight: 300;}
- .modal.coupon_popup dl dt:after {content:''; position: absolute; left: 0; top: 7px; width: 3px; height: 3px; background: #888;}
- .modal.coupon_popup dl dd {color:#666;}
- .modal.coupon_popup .modal-footer {margin-top: 40px;}
-
- /* ev_공통 */
- .container.ev .wrap .content .cont_body {margin-bottom: 150px;}
- .container.ev .cont_head > div {position: relative;}
- .container.ev .cont_head > div .share_btn {position: absolute; top: 0; right: 70px; }
- .container.ev .cont_head > div h3 {text-align: center; margin-bottom: 0; padding-bottom: 60px; font-size: 40px; line-height: 1;}
- .inner {width: 1200px; margin:0 auto;}
- /* ev_list */
- .ev .ev_mem_rank {position: relative; background: #f5f5f5; padding: 60px 100px; margin-bottom: 100px;}
- .ev .ev_mem_rank .txt {display: inline-block;}
- .ev .ev_mem_rank .txt strong {display: block; font-size: 20px; font-weight: 600;}
- .ev .ev_mem_rank .txt p {font-size: 32px; line-height: 1.3; color: #666; margin: 20px 0 30px; letter-spacing: -0.025em;}
- .ev .ev_mem_rank .txt .btn {display: inline-block; padding: 14px 24px; letter-spacing: -0.025em;}
- .ev .ev_mem_rank .mem_rank_list {position: absolute; top: 50%; right: 160px; transform:translateY(-50%);}
- .ev .ev_mem_rank .mem_rank_list ul li {float:left; text-align: center; margin-right: 40px;}
- .ev .ev_mem_rank .mem_rank_list ul li:last-child {margin-right: 0;}
- .ev .icon {position: relative; width: 80px; height: 80px; border-radius: 50%; margin-bottom: 15px; color: #fff; border:2px solid transparent;}
- .ev .icon > span {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); font-size: 32px; font-weight: 600; color: #fff;}
- .ev .icon + span {font-size: 16px; color: #666; font-weight: 500;}
- .ev .icon.vip {background: #fd4802;}
- .ev .icon.gold {background: #222;}
- .ev .icon.silver {background: #666;}
- .ev .icon.bronze {background: #aaa;}
- .ev .icon.welcome {background: #fff; border:2px solid #222;}
- .ev .icon.welcome span {color: #222;}
- .ev .event_list {}
- .ev .event_list .event_top {position: relative; margin-bottom: 30px; height: 40px;}
- .ev .event_list .event_top .count {font-size: 16px; font-weight: 200; color: #888; display: inline-block; margin-top: 20px;}
- .ev .event_list .event_top .count span {color: #fd4802; font-weight: 300;}
- .ev .event_list .event_top .event_btn {position: absolute; top: 0; right: 0;}
- .ev .event_list .event_top .event_btn a {display: inline-block; background: url(/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;}
- .ev .event_list .list li {float:left; position: relative; width: 24.15%; margin: 0 1.12% 80px 0;}
- .ev .event_list .list li:nth-child(4n) {margin: 0 0 80px 0;}
- .ev .event_list .list li .rank {min-width:52px;}
- .ev .event_list .list li .ev_img {margin-bottom: 27px; position: relative;}
- .ev .event_list .list li .ev_img img {width: 100%; height: auto;}
- .ev .event_list .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;}
- .ev .event_list .list .no_con {display: none;}
- .ev .event_list.no_data .list .event_con {display: none;}
- .ev .event_list.no_data .list .no_con {display: block; padding:100px 0;}
- .ev .event_list.no_data .list .no_con li {width: 100%; text-align: center; margin-right: 0;}
- .ev .event_list.no_data .list .no_con li span {display: block; margin: 25px 0 40px; font-size: 16px; color: #666; font-weight: 300;}
- .ev .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;}
- /* ev_rank */
- .container.ev .wrap {max-width:100%; min-width:1200px; padding-right: 0; padding-left: 0;}
- .container.ev .wrap .ev_list {padding:0 70px;}
- .ev_rank .inner {position: relative;}
- .ev_rank .my_rank_info {background: #fff6f2; padding:53px 0; min-height:260px; box-sizing: border-box; margin-bottom: 100px; }
- .ev_rank .my_rank_info .desc p {font-size: 24px; line-height: 1.4; font-weight: 200; color: #666;}
- .ev_rank .my_rank_info .desc p span {color: #222; font-weight: 600;}
- .ev_rank .my_rank_info .desc p span.my_name {font-weight: 500;}
- .ev_rank .my_rank_info .desc button {margin-top: 20px; font-weight: 300; padding: 10px 23px;}
-
- .ev_rank .my_rank_info.no_member {min-height:auto; text-align: center;}
- .ev_rank .my_rank_info.no_member p {font-size: 24px; font-weight: 200; color: #222; margin-bottom: 28px;}
- .ev_rank .my_rank_info.no_member .login_btn {font-size: 14px; padding:10px 24px; letter-spacing: -0.025em;}
- .ev_rank .my_rank_progress {position: absolute; bottom: 0; right: 0; width: 760px;}
- .ev_rank .pro_wrap {margin-bottom: 20px;}
- .ev_rank .pro_wrap .rank_txt {margin-bottom: 5px;}
- .ev_rank .pro_wrap .rank_txt ul {font-size: 0;}
- .ev_rank .pro_wrap .rank_txt li {display: inline-block; font-size: 14px; color: #444; font-weight: 500; line-height: 1;}
- .ev_rank .pro_wrap .rank_txt li:first-child {width: 16.66667%;}
- .ev_rank .pro_wrap .rank_txt li:nth-child(2) {width: 22.2222%;}
- .ev_rank .pro_wrap .rank_txt li:nth-child(3) {width: 22.2222%;}
- .ev_rank .pro_wrap .rank_txt li:nth-child(4n) {width: 22.2222%;}
- .ev_rank .pro_wrap .rank_txt li:last-child {width: 16.66667%;}
- .ev_rank .pro_wrap .rank_txt li:after {content:''; display: block; clear:both;}
- .ev_rank .pro_wrap .rank_txt li .icon {text-align: center; width: 60px; height: 60px; margin:0 auto; opacity: 0;}
- .ev_rank .pro_wrap .rank_txt li .welcome {float:left; margin-left: -30px;}
- .ev_rank .pro_wrap .rank_txt li .vip {float:right; margin-right: -30px;}
- .ev_rank .pro_wrap .rank_txt li .icon > span {font-size: 22px;}
- .ev_rank .pro_wrap.welcome .rank_txt li .icon.welcome {opacity: 1;}
- .ev_rank .pro_wrap.bronze .rank_txt li .icon.bronze {opacity: 1;}
- .ev_rank .pro_wrap.silver .rank_txt li .icon.silver {opacity: 1;}
- .ev_rank .pro_wrap.gold .rank_txt li .icon.gold {opacity: 1;}
- .ev_rank .pro_wrap.vip .rank_txt li .icon.vip {opacity: 1;}
- .ev_rank .pro_wrap .rank_txt li .txt {clear:both;}
- .ev_rank .pro_wrap .rank_txt li .txt span {display: block; text-align: center;}
- .ev_rank .pro_wrap.welcome .rank_txt .welcome + .txt {display: none;}
- .ev_rank .pro_wrap.bronze .rank_txt .bronze + .txt {display: none;}
- .ev_rank .pro_wrap.silver .rank_txt .silver + .txt {display: none;}
- .ev_rank .pro_wrap.gold .rank_txt .gold + .txt {display: none;}
- .ev_rank .pro_wrap.vip .rank_txt .vip + .txt {display: none;}
- .ev_rank .pro_wrap .rank_txt li:first-child .txt span {text-align: left;}
- .ev_rank .pro_wrap .rank_txt li:last-child .txt span {text-align: right;}
- .ev_rank .pro_wrap .progress_bar {width: 100%; height: 4px; background: #ddd; position: relative;}
- .ev_rank .pro_wrap .progress_bar .current_bar {background: #fd4802; position: absolute; top: 0; left: 0; width: 0%; height: 4px;}
- .ev_rank .pro_wrap.bronze .progress_bar .current_bar {width: 28%;}
- .ev_rank .pro_wrap.silver .progress_bar .current_bar {width: 50%;}
- .ev_rank .pro_wrap.gold .progress_bar .current_bar {width: 72.5%;}
- .ev_rank .pro_wrap.vip .progress_bar .current_bar {width: 100%;}
- .ev_rank .my_rank_progress .benefit_txt {background: #fff; padding:26px 0; text-align: center; font-size: 18px; color: #444; font-weight: 300;}
- /* .er .my_rank_progress .benefit_txt span {color: #fd4802; font-weight: 600;} */
- .ev_rank .my_rank_progress .benefit_txt strong {color: #222; font-weight: 600;}
- /* ev_rank 등급 혜택 테이블 */
- .ev_rank .rank_tbl_wrap {margin-bottom: 60px;}
- .ev_rank .rank_tbl_wrap h3 {margin-bottom: 50px; font-size: 34px; font-weight: 500; text-align: center;}
- .ev_rank .rank_tbl_wrap .icon {margin:0 auto 20px;}
- .ev_rank .rank_tbl_wrap .icon + span {display: block; text-align: center; font-size: 18px; color: #222; font-weight: 500;}
- .ev_rank .rank_tbl_wrap .tbl_wrap table {border:1px solid #ddd;}
- .ev_rank .rank_tbl_wrap .tbl_wrap table th {width: 100px; background: #f5f5f5; font-size: 16px; color: #000; font-weight: 300; border:1px solid #ddd;}
- .ev_rank .rank_tbl_wrap .tbl_wrap table .td_30 td {padding:30px 0;}
- .ev_rank .rank_tbl_wrap .tbl_wrap table .td_30 td p {margin-top: 0;}
- .ev_rank .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;}
- .ev_rank .rank_tbl_wrap .tbl_wrap table td.vt {vertical-align: top;}
- .ev_rank .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;}
- .ev_rank .rank_tbl_wrap .tbl_wrap table td.bbn {padding-bottom: 0; border-bottom: 0;}
- /* ev 안내사항_공통 */
- .announce_txt {position: relative; padding-left: 125px; box-sizing: border-box; letter-spacing: -0.025em;}
- .announce_txt .note_txt {position: absolute; left: 0; top: 0; text-align: center;}
- .announce_txt .note_txt p {font-size: 18px; font-weight: 300; color: #888; margin-top: 20px;}
- .announce_txt .announce_list .tit {font-size: 16px; font-weight: 300; color: #888; margin-bottom: 20px;}
- .announce_txt .announce_list ul {margin-bottom: 40px;}
- .announce_txt .announce_list ul:last-of-type {margin-bottom: 0;}
- .announce_txt .announce_list ul li {position: relative; padding-left: 12px; font-size: 16px; font-weight: 200; color: #888; margin-bottom: 15px;}
- .announce_txt .announce_list ul li:before {content:''; position: absolute; top: 50%; left: 0; width: 2px; height: 2px; background: #888; margin-top: -2px;}
- .announce_txt .announce_list ul li:last-child {margin-bottom: 0;}
-
- /* ev_check, ev_renew 출석 체크 이벤트 */
- .container.ev .cont_head > .renew_check_tit {position: relative;}
- .container.ev .cont_head > .renew_check_tit h3 {padding-bottom: 80px;}
- .container .wrap .content.renew * {line-height: 1; letter-spacing: -0.025em; box-sizing:border-box;}
- .ev .renew_check_tit .period {position: absolute; bottom: 40px; left: 50%; transform:translateX(-50%); color: #888;}
- .ev .attend_banner {width: 100%; height: 779px; background: url(/images/pc/thumb/attend_banner.jpg) no-repeat center; margin-bottom: 120px;}
- .ev .event_calander {position: relative;}
- .ev .event_calander:after {content:''; position: absolute; bottom: 60px; left: 50%; width: 1580px; height: 1px; background: #ddd; transform: translateX(-50%);}
- .ev .event_calander .my_attend_day {margin-bottom: 30px;}
- .ev .event_calander .my_attend_day p {font-size: 40px; font-weight: 300; text-align: center; color: #000; }
- .ev .event_calander .my_attend_day p span {font-size: 62px; color: #fd4802; font-weight: 600;}
- .ev .event_calander .month_txt {padding-left: 15px; margin-bottom: 35px;}
- .ev .event_calander .month_txt .kor_t {font-size: 42px; color: #000; font-weight: 600; margin-right: 16px;}
- .ev .event_calander .month_txt .eng_t {font-size: 20px; color: #888; font-weight: 500; text-transform: uppercase;}
- .ev .event_calander table {box-sizing: border-box;}
- .ev .event_calander table th {background: #222; padding:15px 0; font-size: 18px; color: #fff; font-weight: 300; border:1px solid #222; box-sizing: border-box;}
- .ev .event_calander table th.sun {color: #fd4802;}
- .ev .event_calander table th.sat {color: #3158ea;}
- .ev .event_calander table td {padding: 20px; border:1px solid #ddd; height: 100px; vertical-align: top; box-sizing: border-box;}
- .ev .event_calander table td .date {font-size: 20px; font-weight: 300;}
- .ev .event_calander table td.today {background: url(/images/pc/ico_cal_today.png) no-repeat top 20px right 26px;}
- .ev .event_calander table td.complete {background: url(/images/pc/ico_cal_check.png) no-repeat top 20px right 26px;}
- .ev .event_calander .btn_wrap {margin:60px 0 0; padding-bottom: 140px; text-align: center;}
- .ev .event_calander .btn_wrap button {padding:20px 75px; font-size: 18px; font-weight: 300;}
- /* ev_renew 이벤트 */
- .container .wrap .content.survey * {line-height: 1; letter-spacing: -0.025em; box-sizing:border-box;}
- .ev .renew_banner {position: relative; width: 100%; height: 597px; background: url(/images/pc/thumb/renewal_banner.jpg) no-repeat center;}
- .ev .renew_banner:after {content:''; position: absolute; bottom: -185px; left: 50%; width: 1580px; height: 1px; background: #ddd; transform: translateX(-50%);}
- .ev .renew .btn_wrap {margin:60px 0 140px; text-align: center;}
- .ev .renew .btn_wrap a.btn {padding:22px 65px 22px 50px; font-size: 18px; color: #222; font-weight: 300; border:1px solid #a7a7a7; background: url(/images/pc/ico_more_lg.png) no-repeat right 41px top 23px;}
- .container.ev .wrap .content.survey .cont_body {margin-bottom: 0;}
- .ev .survey_wrap {background: #f5f5f5; padding:60px 0 160px}
- .ev .survey_wrap .survey_con {width: 740px; margin:0 auto; background: #fff; border-top: 3px solid #fe7f4d; box-shadow: 0px 4px 21px 0px rgba(0, 0, 0, 0.1);}
- .ev .survey_wrap .survey_con .survey_row {padding: 60px 55px; border-bottom: 1px solid #ddd;}
- .ev .survey_wrap .survey_con .survey_row:last-child {border-bottom: 0;}
- .ev .survey_wrap .survey_con .survey_row h4 {margin-bottom: 0; font-size: 17px; line-height: 1.5; font-weight: 300; position: relative; padding-left: 42px;}
- .ev .survey_wrap .survey_con .survey_row h4:before {position: absolute; top: 0; left: 0;}
- .ev .survey_wrap .survey_con .survey_row.q1 h4:before {content:'Q1.'}
- .ev .survey_wrap .survey_con .survey_row.q2 h4:before {content:'Q2.'}
- .ev .survey_wrap .survey_con .survey_row.q3 h4:before {content:'Q3.'}
- .ev .survey_wrap .survey_con .survey_row.q4 h4:before {content:'Q4.'}
-
- .ev .survey_wrap .survey_con .survey_row ul li {float:left; margin-top: 30px; margin-right: 50px; position: relative;}
- .ev .survey_wrap .survey_con .survey_row ul li:last-child textarea {display: none; padding: 10px; width: 300px; height: 52px; font-size: 16px; line-height: 1.5; color: #222; resize:none; position: absolute; top: 50%; left: 80px; transform:translateY(-50%);}
- .ev .survey_wrap .survey_con .survey_row .form_field input + label {font-weight: 200; font-size: 16px; line-height: 1.7;}
- .ev .survey_wrap .survey_con .survey_row .form_field input:checked + label {line-height: 1.7;}
- .ev .survey_wrap .survey_con .survey_row .form_field input.etc:checked + label + textarea {display: inline-block;}
- .ev .survey_wrap .survey_con .survey_row.q1 ul li:nth-child(5n) {margin-right: 0;}
- .ev .survey_wrap .survey_con .survey_row.q1 ul li:last-child {width: 100%;}
- .ev .survey_wrap .survey_con .survey_row.q2 ul li:nth-child(4n) {margin-right: 0;}
- .ev .survey_wrap .survey_con .survey_row.q3 .doc_ans {width: 100%; height: 220px; padding: 20px; font-size: 14px; line-height: 1.9; color: #888; font-weight: 200; resize:none; margin-top: 30px;}
- .ev .survey_wrap .survey_con .survey_row.q4 {border-bottom: 0;}
- .ev .survey_wrap .survey_con .survey_row.q4 .q4_ans {height: 220px; resize:none; margin-top: 30px; padding: 20px; font-size: 14px; line-height: 1.9; color: #888; font-weight: 200;}
- .ev .survey_wrap .survey_con .btn_wrap {padding: 20px 0 60px; text-align: center;}
- .ev .survey_wrap .survey_con .btn_wrap button.btn {padding:15px 80px; font-size: 18px; font-weight: 300;}
- /* ev_comment 사이트 리뉴얼 댓글 이벤트 */
- .ev .comment_banner {position: relative; width: 100%; height: 1046px; background: url(/images/pc/thumb/comment_banner.jpg) no-repeat center;}
- .ev .wrap .content.cmt * {letter-spacing: -0.025em;}
- .ev .wrap .content.cmt .cont_body {margin-bottom: 0;}
- .ev .cmt .announce_txt {margin:60px auto;}
- .ev .cmt_wrap {background: #f5f5f5; padding:60px 0 125px;}
- .ev .cmt_wrap .cmt_write .cmt_tarea {margin-bottom: 20px;}
- .ev .cmt_wrap .cmt_write .cmt_tarea textarea {box-sizing: border-box; background: #fff; padding: 20px; resize: none; width: 100%; height: 140px; font-size: 14px; line-height: 1.3; color: #888;}
- .ev .cmt_wrap .pics {width: 110px; height: 110px;}
- .ev .cmt_wrap .pics .picsThumbs {max-width: 100%; max-height: 100%;}
- .ev .cmt_wrap .imgUpload .pics:last-of-type {display: none !important; margin-right: 0;}
- .ev .cmt_wrap .cmt_write .btn_wrap {margin:60px 0 100px; text-align: center;}
- .ev .cmt_wrap .cmt_write .btn_wrap > div {display: inline-block;}
- .ev .cmt_wrap .cmt_write .btn_wrap button, .ev .cmt_wrap .cmt_write .btn_wrap label {float:left; padding:0 !important; width: 220px; height: 60px; line-height: 60px; font-size: 18px; text-align: center; font-weight: 300;}
- .ev .cmt_wrap .cmt_write .btn_wrap label {background: #fff;}
- .ev .cmt_wrap .cmt_write .btn_wrap .file_btn {margin-right: 10px; border:1px solid #a1a1a1;}
- /* .ev .cmt_wrap .cmt_write .btn_wrap .file_btn:hover {background:transparent;} */
- .ev .cmt_wrap .cmt_write .btn_wrap .file_btn label {cursor:pointer; display: block; height: 60px; line-height: 60px;}
- .ev .cmt_wrap .cmt_group .cmt_list_tit {padding-bottom: 32px; border-bottom: 1px solid #ddd;}
- .ev .cmt_wrap .cmt_group .cmt_list_tit strong {margin-right: 10px; font-size: 26px; font-weight: 500;}
- .ev .cmt_wrap .cmt_group .cmt_list_tit span {font-size: 24px; color: #666; font-weight: 200;}
- .ev .cmt_wrap .cmt_group .cmt_list li {padding: 30px 0; border-bottom: 1px solid #ddd;}
- .ev .cmt_wrap .cmt_group .cmt_list li .cmt_top {margin-bottom: 25px;}
- .ev .cmt_wrap .cmt_group .cmt_list li .cmt_top .writer {float:left; color: #666; margin-right: 20px; padding-right: 20px; border-right:1px solid #ddd;}
- .ev .cmt_wrap .cmt_group .cmt_list li .cmt_top .date {color: #888;}
- .ev .cmt_wrap .cmt_group .cmt_list li .cmt_cont .img_wrap {margin-bottom: 20px;}
- .ev .cmt_wrap .cmt_group .cmt_list li .cmt_cont p {color: #666; line-height: 1.7;}
- .ev .cmt_wrap .cmt_group .cmt_list li .cmt_cont .btn_del {display: block; background:transparent url(/images/pc/ico_trash.png) no-repeat left 14px center; padding:7px 14px; padding-left: 33px; margin-top: 20px; font-size: 14px; color: #222; font-weight: 200;}
- .ev .cmt_wrap .cmt_group .cmt_list li .cmt_cont .btn_del:hover {background:transparent url(/images/pc/ico_trash.png) no-repeat left 14px center;}
- .ev .cmt_wrap .pageNav > li {display: inline-block; vertical-align: top;}
- .ev .cmt_wrap .pageNav > li > a, .ev .cmt_wrap .pageNav > li > span, .pageNav > .disabled > a {background: transparent; height: 34px;}
- .ev .cmt_wrap .pageNav .prev a, .ev .cmt_wrap .pageNav > li:first-child a {background:url('/images/pc/ico_paging.png') no-repeat 0 11px; width: 8px; text-indent: -999em;}
- .ev .cmt_wrap .pageNav .prev a {background-position: -23px 11px;}
- .ev .cmt_wrap .pageNav .next a, .ev .cmt_wrap .pageNav > li:last-child a {background: url('/images/pc/ico_paging.png') no-repeat -64px 11px; width: 8px;}
- .ev .cmt_wrap .pageNav > li:last-child a, .ev .cmt_wrap .pageNav > li:first-child a {width: 15px;}
- .ev .cmt_wrap .pageNav .next a {background-position: -47px 11px;}
- .ev .cmt_wrap .paging_wrap {margin-top: 50px; margin-bottom: 0; box-sizing:content-box;}
- .ev .cmt_wrap.no_data .cmt_list, .ev .cmt_wrap.no_data .paging_wrap {display: none;}
- .ev .cmt_wrap.no_data .no_con {display: block;}
- .ev .cmt_wrap.no_data .no_con li {text-align: center; border-bottom: 0; padding:120px 0 35px;}
- .ev .cmt_wrap.no_data .no_con li span {display: block; margin-top: 25px; font-size: 16px; color:#666; font-weight: 300;}
- /* ev_comment 댓글 이미지 팝업 */
- .modal.cmt_popup {display: none; position: fixed; top: 50%; left: 50%; z-index: 9999; width: 100%; height: 100%; transform:translate(-50%, -50%); background: transparent; box-shadow: none;}
- .modal.cmt_popup a.close-modal {display: none;}
- .modal.cmt_popup .inner {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); width: 700px; height: 700px;}
- .modal.cmt_popup .pop_close_btn {position: absolute; top: -60px; right: 0; width: 24px; height: 24px; background: url(/images/pc/ico_pop_cls02.png) no-repeat center; cursor:pointer; text-indent:-999em;}
- .modal.cmt_popup .swiper-container {height: 700px; background: #fff;}
- .modal.cmt_popup .swiper-container .swiper-slide {display: table; height: 700px; text-align: center;}
- .modal.cmt_popup .swiper-container .swiper-slide .pop_img {display: table-cell; width: 100%; height:700px; vertical-align: middle; }
- .modal.cmt_popup .swiper-container .swiper-slide img {width: auto; height:auto; max-width:100%; max-height:100%; overflow: hidden;}
- .modal.cmt_popup .swiper-button-prev:after, .modal.cmt_popup .swiper-button-next:after {content:'';}
- .modal.cmt_popup .swiper-button-prev {left: -100px; width: 100px; height: 80px; background: url(/images/pc/slide_prev.png) no-repeat center; margin-top: -40px;}
- .modal.cmt_popup .swiper-button-next {right: -100px; width: 100px; height: 80px; background: url(/images/pc/slide_next.png) no-repeat center; margin-top: -40px;}
- .modal.cmt_popup .swiper-button-next.swiper-button-disabled, .modal.cmt_popup .swiper-button-prev.swiper-button-disabled {pointer-events:auto;}
- .modal.cmt_popup .swiper-pagination-bullet {width: 10px; height: 10px; opacity: 1; background: #ddd;}
- .modal.cmt_popup .swiper-pagination-bullet-active {background: #fd4802;}
- .modal.cmt_popup .swiper-container-horizontal>.swiper-pagination-bullets {bottom: 40px;}
- /* ev 다른 이벤트 보기 슬라이드 */
- .ev .other_ev_slide {position: relative; margin:150px 0 120px; padding:0 140px;}
- .ev .other_ev_slide .tit {position: relative; margin-bottom: 60px; text-align: center;}
- .ev .other_ev_slide .tit h4 {font-size: 30px; font-weight: 500;}
- .ev .other_ev_slide .tit a {position: absolute; top: 50%; right: 0; transform:translateY(-50%); padding-right: 20px; background: url(/images/pc/ico_more_lg.png) no-repeat right top 1px; font-size: 18px; color:#888;}
- .ev .other_ev_slide .swiper-slide img {width: 100%; height:auto;}
- .ev .other_ev_slide .swiper-slide .txt {}
- .ev .other_ev_slide .swiper-slide .txt .subject {margin:20px 0 0; padding:0 7px; font-size: 18px; line-height: 1.5; font-weight: 300; color:#222; min-height:55px; max-height:55px; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -webkit-box; word-break: keep-all;}
- .ev .other_ev_slide .swiper-button-next:after, .ev .other_ev_slide .swiper-button-prev:after {content:'';}
- .ev .other_ev_slide .swiper-button-next {background: url(/images/pc/slide_next.png) no-repeat center; right: 70px; opacity: 0.6; margin-top: -10px;}
- .ev .other_ev_slide .swiper-button-prev {background: url(/images/pc/slide_prev.png) no-repeat center; left: 70px; opacity: 0.6; margin-top: -10px;}
- /* 헤더 */
- .black_screen {position: fixed; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 88; display: none;}
- /* GNB_depth */
- .depth_menu {position: absolute; top:58px; left:0; width:100%; background: #fff; color: #222; z-index:150; display: none;}
- .depth_menu::after {content:''; display: block; clear:both;}
- .depth_menu .head_category {position: relative; float:left; width: 68.75%; padding:50px 70px;}
- .depth_menu .head_category .tit, .bundle li .depth_menu .head_category .menu {float:left;}
- .depth_menu .head_category .tit {width: 170px;}
- .depth_menu .head_category .tit p {font-size: 24px; font-weight: 500; margin-bottom: 20px;}
- .depth_menu .head_category .tit a {font-size: 16px; color: #888; padding-right: 14px; background: url(/images/pc/ico_mysm_arrow.png) no-repeat right top 2px;}
- .depth_menu .head_category .tit a:after {display: none;}
- .depth_menu .head_banner {float:left; width: 31.25%; background: #f5f5f5; padding:50px 70px;}
- .depth_menu .head_banner .tit p {font-size: 24px; font-weight: 500; margin-bottom: 20px; }
- .depth_menu .head_banner li {float:left; width: 222px;}
- .depth_menu .head_banner li:first-child {margin-right: 10px;}
- .depth_menu .head_banner li .ev_img {position: relative; padding-top: 100%;}
- .depth_menu .head_banner li img {width: 100%; height:auto; position: absolute; left: 0; top: 0;}
- .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;}
- #header.minify .depth_menu {top:80px;}
- ul.maintabs{width: 250px; padding: ; border-left: 1px solid #ddd; min-height: 320px;}
- ul.maintabs li {padding:9px 40px;}
- ul.maintabs li a {display: inline-block; font-size: 16px; color: #666; position: relative;}
- ul.maintabs a:after {content:''; position: absolute; width: 100%; left: 0; bottom: 0; height: 1px; background: #fd4801; display: none;}
- ul.maintabs 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;}
- ul.maintabs > li:hover > a,
- ul.maintabs > li:focus > a,
- ul.maintabs .box_depth2 > li:hover > a,
- ul.maintabs .box_depth3 > li:hover > a,
- ul.maintabs .box_depth4 > li:hover > a {color: #fd4801; font-weight: 300;}
- ul.maintabs > li:hover > a:after,
- ul.maintabs .box_depth2 > li:hover > a:after,
- ul.maintabs .box_depth3 > li:hover > a:after,
- ul.maintabs .box_depth4 > li:hover > a:after {display: block;}
- ul.maintabs > li:hover > a:before,
- ul.maintabs .box_depth2 > li:hover > a:before,
- ul.maintabs .box_depth3 > li:hover > a:before,
- ul.maintabs .box_depth4 > li:hover > a:before {display: block;}
- ul.maintabs .box_depth2 {position: absolute; left: 490px; top:50px; width: 250px; display:none; border-left: 1px solid #ddd; min-height: 320px;}
- ul.maintabs .box_depth3 {position: absolute; left: 245px; top:0; border-left: 1px solid #ddd; width: 250px; min-height: 320px; display:none;}
- ul.maintabs .box_depth4 {position: absolute; left: 245px; top:0; border-left: 1px solid #ddd; width: 250px; min-height: 320px; display:none;}
- /* brand_depth */
- .depth_menu.brand {}
- .depth_menu.brand .head_category {width: 100%;}
- .depth_menu.brand .head_category .menu {width: 90%; border-left: 1px solid #ddd; padding-left: 40px;}
- .depth_menu.brand .head_category .menu .row {width: 100%; border-bottom: 1px solid #ddd; padding:30px 0;}
- .depth_menu.brand .head_category .menu .row:first-child {padding-top: 0;}
- .depth_menu.brand .head_category .menu .row p {font-size: 18px; font-weight: 500; margin-bottom: 25px;}
- .depth_menu.brand .head_category .menu .row ul {}
- .depth_menu.brand .head_category .menu .row ul:after {content:''; display: block; clear:both;}
- .depth_menu.brand .head_category .menu .row ul li {float:left; width: 182px; height: 80px;}
- .depth_menu.brand .head_category .menu .row ul li a {display: block; width: 100%; height: 100%; position: relative;}
- .depth_menu.brand .head_category .menu .row ul li a img {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%);}
- .depth_menu.brand .head_category .brand_list .swiper-slide {width: 180px;}
- #footer {position: relative;}
- /* 퀵메뉴 */
- #quick_menu {position:fixed; bottom:0; right:-363px;z-index:120; padding-left: 60px; transition:all 0.3s;}
- #quick_menu.active {right: 0;}
- #quick_menu:before {content:''; position: fixed; bottom: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.5); display: none;}
- #quick_menu.active:before {display: block;}
- #quick_menu .quick_btn {background: #222; position: absolute; left: 0; bottom: 0;}
- #quick_menu .quick_btn li {width: 60px; height: 60px; text-align: center;}
- #quick_menu .quick_btn li button {display: block; width: 60px; height: 60px;}
- #quick_menu .quick_btn .count {display: block; margin-top: 6px; font-size: 12px; color: #fd4802;}
- #quick_menu .tabs_con {position: relative;}
- #quick_menu .quick_close_btn {position: absolute; right:30px; top: 30px; width: 22px; height: 22px; background: url('/images/pc/ico_quick_close.png') no-repeat center/100%; z-index: 8;}
- #quick_menu .quick_con {position:relative;width:363px;height:100%;background:#fff;height:800px;}
- #quick_menu .quick_con .quick_head {position: relative; padding: 30px; padding-bottom: 40px;}
- #quick_menu .quick_con .quick_head h3 {font-size: 24px; font-weight: 500; margin-bottom: 0;}
- #quick_menu .quick_con .quick_head h3 a {color: #222; position: relative; display: inline-block; padding-right: 22px;}
- #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('/images/pc/ico_dp_arrow.png') no-repeat center/100%;}
- #quick_menu .quick_con .quick_body {padding: 30px; padding-top: 0; overflow-y:auto; height: 705px; overflow-x: hidden;}
- #quick_menu .quick_con .product_count {margin-bottom: 20px; font-size: 16px; color: #888;}
- #quick_menu .quick_con .product_count span {font-weight: 500;}
- #quick_menu.on {position: absolute; bottom: 539px; width: 60px; height: 539px;}
- /* 퀵메뉴_최근 본 상품 */
- #quick_menu .history .itemsGrp {margin:0 -7px;}
- #quick_menu .history .item_prod {width: 50%;}
- #quick_menu .history .item_state {padding:0 7px 14px;}
- #quick_menu .history .itemPic {margin-bottom: 0;}
- #quick_menu .history .no_item {display: none;}
- #quick_menu .history .quick_body.nodata .item_prod, #quick_menu .quick_con .quick_body.nodata .product_count {display: none;}
- #quick_menu .history .quick_body.nodata .item_prod {display: none;}
- #quick_menu .history .quick_body.nodata .no_item {display: block; line-height: 700px; text-align: center; font-size: 16px; color: #888;}
- /* 퀵메뉴_쇼핑백 */
- .itemsGrp {margin-bottom:0;}
- #quick_menu .shopingbag .quick_body {height: 655px;}
- #quick_menu .shopingbag .quick_body.nodata {height: 708px;}
- #quick_menu .shopingbag .quick_body .itemsGrp.empty {display: none;}
- #quick_menu .shopingbag .quick_body.nodata .itemsGrp.existence {display: none;}
- #quick_menu .shopingbag .quick_body.nodata .itemsGrp.empty {display: block;}
- #quick_menu .shopingbag .quick_body.nodata .itemsGrp.empty .desc {font-size: 16px; line-height: 1.6; color: #888; text-align: center;}
- #quick_menu .shopingbag .quick_body.nodata .itemsGrp.empty .item_prod:last-child {border-bottom: 0; padding-bottom: 0;}
- #quick_menu .shopingbag .quick_body.nodata .purchase_btn {display: none;}
- #quick_menu .shopingbag .itemsGrp .item_prod {width: 100%; overflow: hidden; padding:30px 0; border-bottom: 1px solid #ddd;}
- #quick_menu .shopingbag .itemsGrp .item_prod .delete_btn {position: absolute; top: 30px; right: 0; width: 14px; height: 14px; background: url('/images/pc/ico_close1.png') no-repeat center;}
- #quick_menu .shopingbag .itemsGrp .item_prod:first-child .delete_btn {top: 0;}
- #quick_menu .shopingbag .itemsGrp .item_prod:first-child {padding-top: 0;}
- #quick_menu .shopingbag .itemsGrp .item_prod:last-child {border-bottom: 0;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemBadge, #quick_menu .shopingbag .itemsGrp .item_prod .itemcolorchip {display: none;}
- #quick_menu .shopingbag .itemsGrp .item_prod .item_state {display: table; padding-left: 150px; padding-right: 0; padding-bottom: 0; width: 100%; min-height:210px;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemLink {display: table-cell; position: static; vertical-align: middle;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemLike {z-index: 99;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemPic {position: absolute; top: 0; left: 0; margin-bottom: 0; width: 120px; padding-top: 70%;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemPic .shape {z-index: 89;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemPic::after {background: #f5f5f5; opacity:1; z-index: 87;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemPic .pd_img {z-index: 88;}
- #quick_menu .shopingbag .itemsGrp .item_prod.sold_out .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: 99; text-align: center;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemBrand {margin:0px 0 15px; font-size: 14px; font-weight: 300;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemComment {}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemName {margin:0px 0 13px; font-size: 14px; font-weight: 300; lin e-height: 1.5; max-height:44px; overflow:hidden;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemSize {font-size: 12px; margin-bottom: 20px; color: #888;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemPrice {font-size: 16px; line-height: 1; font-weight: 500; margin:0 0 10px}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemPrice_original {display: inline-block; font-size: 14px; font-weight: 200;}
- #quick_menu .shopingbag .itemsGrp .item_prod .itemLink .purchase_btn {width: 100%; border:1px solid #a7a7a7; font-weight:300;}
- #quick_menu .shopingbag .itemsGrp .item_prod .cart_btn {width: 91px; border:1px solid #ddd; font-size: 13px; padding: 6px 0; margin-top: 10px;}
- #quick_menu .shopingbag .itemsGrp .item_prod .cart_btn.on {background: #222; color: #fff; border:1px solid #222;}
- #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;}
- #quick_menu .shopingbag .shape {z-index: 90; width: 78px; max-width:78px; min-height:28px; background: #fd4802;}
- #quick_menu .shopingbag .shape:after {height: 18px; border-left:10px solid #fd4802;}
- #quick_menu .shopingbag .shape span {width: 100%; font-size: 13px; font-weight: 300;}
- /* 퀵메뉴_위시리스트 */
- #quick_menu .wishlist .itemsGrp {margin:0 -7px;}
- #quick_menu .wishlist .item_prod {width: 50%;}
- #quick_menu .wishlist .item_state {margin:0 7px 14px; padding: 0;}
- #quick_menu .wishlist .itemPic {margin-bottom: 0;}
- #quick_menu .wishlist .no_item {display: none;}
- #quick_menu .wishlist .quick_body.nodata .item_prod, #quick_menu .quick_con .quick_body.nodata .product_count {display: none;}
- #quick_menu .wishlist .quick_body.nodata .item_prod {display: none;}
- #quick_menu .wishlist .quick_body.nodata .no_item {display: block; line-height: 675px; text-align: center; font-size: 16px; color: #888;}
- #quick_menu .wishlist .quick_body.need_login .product_count {display: none;}
- #quick_menu .wishlist .quick_body.need_login .itemsGrp {display: none;}
- #quick_menu .wishlist .quick_body.need_login .login_con {display: block;}
- #quick_menu .login_con {position: relative; height: 675px; display: none;}
- #quick_menu .login_con > div {width: 100%; text-align: center; position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%);}
- #quick_menu .login_con p {font-size: 16px; color: #888; margin-bottom: 30px;}
- #quick_menu .login_con .btn {width: 85px; padding: 10px 14px; font-size: 14px; border:1px solid #a7a7a7; font-weight: 300;}
- #quick_menu .wishlist .shape {z-index: 90; width: 78px; max-width:78px; min-height:28px; background: #fd4802;}
- #quick_menu .wishlist .shape:after {height: 18px; border-left:10px solid #fd4802;}
- #quick_menu .wishlist .shape span {width: 100%; font-size: 13px; font-weight: 300;}
- #quick_menu .wishlist .itemLike {top: 10px;}
- #quick_menu .wishlist .hover_con {position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,.4); display: none;}
- #quick_menu .wishlist .hover_con .cart_btn {position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%);}
- #quick_menu .wishlist .item_prod:hover .hover_con {display: block;}
- #quick_menu .wishlist .itemsGrp .item_prod .cart_btn {width: 91px; border:1px solid #ddd; font-size: 13px; padding: 6px 0;}
- #quick_menu .wishlist .itemsGrp .item_prod .cart_btn.on {background: #222; color: #fff; border:1px solid #222;}
- /* 퀵메뉴_나의 쿠폰_발급 가능 쿠폰 */
- #quick_menu .coupon .quick_body {height: 634px;}
- #quick_menu .coupon .quick_body.need_login {height: 100%;}
- #quick_menu .coupon .quick_body .login_con {display: none;}
- #quick_menu .coupon .quick_body.need_login .login_con {display: block;}
- #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;}
- #quick_menu .coupon .coupon_tab {margin-bottom: 30px;}
- #quick_menu .coupon .coupon_tab a {position: relative; font-size: 16px; color: #888;}
- #quick_menu .coupon .coupon_tab a:first-child {margin-right: 25px;}
- #quick_menu .coupon .coupon_tab a:first-child:after {content:''; position: absolute; top: 0; right: -15px; width: 1px; height: 16px; background: #ddd;}
- #quick_menu .coupon .coupon_tab a.active {font-weight: 300; color:#222;}
- #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('/images/pc/ico_more_sm.png') no-repeat left 177px center;}
- #quick_menu .coupon #coupon_type01 .coupon_list {line-height:1;}
- #quick_menu .coupon #coupon_type01 .coupon_list li {margin-top:30px}
- #quick_menu .coupon #coupon_type01 .coupon_list li:first-child {margin-top:0}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon {position:relative; border:1px solid #ddd; box-sizing:border-box; background:#fff;}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon > div {position:relative;}
- #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;}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon p {padding:0 20px;}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_name {padding-top:30px; color:#222; font-size:14px; font-weight:300;}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_cont {margin-top:10px;}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_cont span {color:#fd4802; font-size:22px; font-weight:500;}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_cont span em {font-size:28px; font-weight:600;}
- #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;}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .cp_condition span {display:block; margin-top:5px}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .btn_coupon_down {}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .btn_coupon_down span {position:relative; display:inline-block; padding-right:24px;}
- #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('/images/pc/ico_cp_down.png') no-repeat 0 0;}
- #quick_menu .coupon #coupon_type01 .coupon_list li .coupon .btn_coupon_done:disabled{background:#aaa; border-color:#aaa; opacity:1;}
- /* 퀵메뉴_나의 쿠폰_보유 쿠폰 */
- #quick_menu .coupon #coupon_type02 .coupon_list li {float:left; width: 100%; margin:0 0 30px 0; position: relative; position: relative; overflow: hidden;}
- #quick_menu .coupon #coupon_type02 .coupon_list li:nth-child(4n) {margin-right: 0;}
- #quick_menu .coupon #coupon_type02 .coupon_list li .cp_top {position: relative; overflow: hidden;}
- #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;}
- #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_detail {background: #f5f5f5; border:1px solid #f5f5f5;}
- #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .tit {margin-bottom: 10px; font-size: 14px;}
- #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_detail .tit {color:#888;}
- #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .sale_t {display: block; color: #fd4802; font-size: 30px; margin-bottom: 15px;}
- #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_detail .sale_t {color:#888;}
- #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .sale_t span {font-weight: 600;}
- #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .sale_t.won_t {font-size: 22px;}
- #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .sale_t.won_t span {font-size: 28px;}
- #quick_menu .coupon #coupon_type02 .coupon_list li .cp_detail .cp_cont {font-size: 12px; margin-bottom: 10px; font-weight: 300; color: #888;}
- #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;}
- #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;}
- #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;}
- #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_shape {border:1px solid #f5f5f5;}
- #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;}
- #quick_menu .coupon #coupon_type02 .coupon_list li .cp_date .cp_off {display: none; color: #888;}
- #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_date span {display: none;}
- #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_date .cp_off {display: block; font-weight: 200;}
- #quick_menu .coupon #coupon_type02 .coupon_list li.off .cp_date {background: #f5f5f5; border:1px solid #f5f5f5; border-top:1px dashed #ddd;}
- #quick_menu .coupon #coupon_type02 .coupon_list li .cp_info {text-align: center; margin-top: 20px;}
- #quick_menu .coupon #coupon_type02 .coupon_list li .cp_info button span {display: inline-block; border-bottom: 1px solid #888; color: #888;}
- /* 퀵메뉴_카테고리 */
- #quick_menu .category .quick_body {padding: 0;}
- #quick_menu .category .quick_cate_wrap > li > ul {display: none; background: #f5f5f5;}
- #quick_menu .category .quick_cate_wrap > li:first-child > a {padding-top: 0;}
- #quick_menu .category .quick_cate_wrap > li > a {display: block; padding:20px 30px; font-size: 18px; font-weight: 300;}
- #quick_menu .category .quick_cate_wrap > li > a:hover span {color: #fd4802; border-bottom: 1px solid #fd4802;}
- #quick_menu .category .quick_cate_wrap > li.has_children > a {background: url('/images/pc/ico_quick_cate.png') no-repeat right 30px center;}
- #quick_menu .category .quick_cate_wrap > li.has_children.active > a {background: url('/images/pc/ico_quick_cate_on.png') no-repeat right 30px center; font-size: 18px; color: #fd4802;}
- #quick_menu .category .quick_cate_wrap > li.has_children.active > a span {border-bottom: 1px solid #fd4802;}
- #quick_menu .category .quick_cate_wrap > li.has_children > ul {padding: 15px 0;}
- #quick_menu .category .quick_cate_wrap > li.has_children > ul > li > a {display: block; font-size: 16px; color: #888; padding:15px 40px;}
- #quick_menu .category .quick_cate_wrap > li.has_children > ul > li > a:hover span {color: #fd4802; border-bottom: 1px solid #fd4802;}
- #quick_menu .category .quick_cate_txt {border-top: 1px solid #ddd; padding:30px;}
- #quick_menu .category .quick_cate_txt a {display: inline-block; position: relative; font-size: 14px; color: #888; margin-right: 20px;}
- #quick_menu .category .quick_cate_txt a:after {content:''; position: absolute; top: 2px; right: -12px; width: 1px; height: 8px; background: #ddd;}
- #quick_menu .category .quick_cate_txt a:last-child:after {display: none;}
|