common.css 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. @charset "utf-8";
  2. /*@import "reset.css";
  3. @import "font.css";
  4. @import "layout.css";*/
  5. /* h1 ~ h6 */
  6. h1,h2,h3,
  7. h4,h5,h6,
  8. .h1,.h2,.h3,
  9. .h4,.h5,.h6 {
  10. color: #222222;
  11. padding: 0px;
  12. margin: 0px;
  13. line-height:1;
  14. }
  15. h1,.h1 { /* logo */
  16. margin-top: 15px;
  17. margin-bottom: 15px;
  18. font-size: 14px;
  19. font-weight: 300;
  20. }
  21. h2,.h2 { /* lnb */
  22. margin-bottom: 15px;
  23. font-size: 36px;
  24. font-weight: 500;
  25. }
  26. h3,.h3 { /* contents header */
  27. margin-bottom: 10px;
  28. font-size: 30px;
  29. font-weight: 500;
  30. }
  31. h3 small,
  32. .h3 small {
  33. line-height: 19px;
  34. }
  35. h4,.h4 { /* contents title */
  36. margin-bottom: 10px;
  37. font-size: 16px;
  38. font-size: 40px;
  39. font-weight: 500;
  40. }
  41. h5,.h5 { /* .modal .modal-header */
  42. margin-bottom: 10px;
  43. margin-top: 5px;
  44. font-size: 16px;
  45. font-weight: 500;
  46. }
  47. h6,.h6 { /* .modal .modal-body > title */
  48. margin-bottom: 5px;
  49. font-size: 16px;
  50. font-weight: 500;
  51. }
  52. .display1{font-size: 60px;font-weight: 500;letter-spacing: -0.025em;}
  53. .display1_eng{font-size: 62px;font-weight: 500;letter-spacing: -0.025em;}
  54. .displayH{font-size: 40px;font-weight: 500;letter-spacing: -0.025em;} /* h4 */
  55. .displayH_eng{font-size: 42px;font-weight: 500;letter-spacing: -0.025em;}
  56. .subH1{font-size: 30px;font-weight: 500;letter-spacing: -0.025em;} /* h3 */
  57. .subH1_eng{font-size: 32px;font-weight: 500;letter-spacing: -0.025em;}
  58. /*.subH2{font-size: 24px;font-weight: 500;letter-spacing: -0.025em;}*/
  59. .subH2{font-size: 26px;font-weight: 500;letter-spacing: -0.025em;}
  60. .subH2_eng{font-size: 26px;font-weight: 500;letter-spacing: -0.025em;}
  61. .subH3{font-size: 18px;font-weight: 500;letter-spacing: -0.025em;}
  62. .subH3_eng{font-size: 20px;font-weight: 500;letter-spacing: -0.025em;}
  63. .tit{font-size: 16px;font-weight: 300;letter-spacing: -0.025em;}
  64. .caption {font-size: 14px;font-weight: 300;letter-spacing: -0.025em;}
  65. body *[data-font~="lato"] {font-family: 'LATO';}
  66. body *[data-weight~="price"] {font-weight: 600;color: #fd4802;}
  67. /* title */
  68. /* h2 {font-size:14px; line-height:1.2;} */
  69. /* h3 {font-size:16px; line-height:1.2;} */
  70. h2.tit01 {margin:0 0 20px; padding-bottom:15px; border-bottom:1px solid #bebebe; font-size:0; line-height:0;}
  71. h3.tit01 {padding:12px 0 12px 20px; background:#f5f5f5; margin:30px 0 15px;}
  72. b, strong {font-weight: 500;}
  73. small, .small {font-size: 85%;}
  74. /* text state */
  75. .t_muted {color: #ccd0d9 !important;}
  76. .t_req {color: #fd4802 !important;}
  77. .t_help {color: #888888 !important;}
  78. .t_info {color: #888888 !important;}
  79. .t_err {color: #fd4802 !important;}
  80. .t_err::before {content: '';display: inline-block; width: 17px; height:17px; background:url('/images/pc/ico_err.png') no-repeat right top;margin: 0px 7px 0 0px;position: relative;top: 4px;left: 0;right: auto;bottom: auto;}
  81. .t_success {color: #333333 !important;}
  82. /* font color */
  83. i {font-family:'LATO', 'Noto Sans kr', sans-serif !important; letter-spacing:0}
  84. .base i {position:relative; top:1px;}
  85. i.big {font-size:18px; position:relative; top:2px;}
  86. /*.bold {font-weight:bold;}*/
  87. /*.normal {font-weight:normal;}*/
  88. .bold {font-weight:500;} /* 중복확인 */
  89. .normal {font-weight:300;} /* 중복확인 */
  90. .light {font-weight:200;} /* 중복확인 */
  91. .ptxt01 {color:#666666;}
  92. .ptxt02 {color:#999999;}
  93. .ptxt03 {color:#333333;}
  94. .c_primary {color:#fd4802 !important;} /* 중복확인 */
  95. .c_blue{color:#2b62c2 !important}
  96. .c_pink {color:#bd484a !important;}
  97. .c_white {color:#ffffff !important;}
  98. .c_yellow {color:#f09614 !important;}
  99. .c_orange{color: #ff634c !important;}
  100. .c_green{color:#6a9913 !important;}
  101. .c_mint{color:#05B9AA !important;}
  102. .c_mint2{color:#37b4be !important;}
  103. .c_red{color:#ff0000 !important;}
  104. .c_red2{color:#f30e0e !important;}
  105. .c_black{color:#000000 !important;}
  106. .c_black2{color:#222222 !important;}
  107. .c_gray{color:#888888 !important;}
  108. .c_gray2{color:#666666 !important;}
  109. .c_ygreen{color:#5fc332 !important;}
  110. .f_size14{font-size:14px;}
  111. .f_size13{font-size:13px;}
  112. .f_size12{font-size:12px; }
  113. .f_size10{font-size:10px;}
  114. .f_normal {font-weight:normal}
  115. /* background color */
  116. /*
  117. bk는 백그라운드, f는 폰트,
  118. fb: 폰트블랙 - 222222,
  119. fw, 기본 : 폰트화이트 - ffffff
  120. */
  121. .bk01_fb,.bk01_fw,.bk01{background-color:#2b62c2 !important}
  122. .bk02_fb,.bk02_fw,.bk02{background-color:#bd484a !important;}
  123. .bk03_fb,.bk03_fw,.bk03{background-color:#ffffff !important;}
  124. .bk04_fb,.bk04_fw,.bk04{background-color:#f09614 !important;}
  125. .bk05_fb,.bk05_fw,.bk05{background-color: #ff634c !important;}
  126. .bk06_fb,.bk06_fw,.bk06{background-color:#436564 !important;}
  127. .bk07_fb,.bk07_fw,.bk07{background-color:#05B9AA !important;}
  128. .bk08_fb,.bk08_fw,.bk08{background-color:#37b4be !important;}
  129. .bk09_fb,.bk09_fw,.bk09{background-color:#ff0000 !important;}
  130. .bk10_fb,.bk10_fw,.bk10{background-color:#000000 !important;}
  131. .bk11_fb,.bk11_fw,.bk11{background-color:#5fc332 !important;}
  132. .bk12_fb,.bk12_fw,.bk12{background-color:#777777 !important;}
  133. [class*="bk"] p,[class*="bk"] a, [class*="bk"] input::placeholder{color:#ffffff !important;}
  134. [class*="bk"] .util_group span::after{background: #ffffff !important;}
  135. [class*="_fb"] p,[class*="_fb"] a, [class*="_fb"] input::placeholder{color:#222222 !important;}
  136. [class*="_fb"] .util_group span::after{background: #222222 !important;}
  137. /* [class*="bk"] .brand_visual::after{} */
  138. .section {position:relative;}
  139. /* column */
  140. .ui_row{width:100%; margin-left: 0px !important; margin-right: 0px !important;margin-bottom: 15px;position: relative; display: -webkit-box;display: -ms-flexbox;display: flex;}
  141. section::after, .ui_row::after, .btn_group_block::after{content: '';display: block;clear: both;}
  142. .ui_row [class^='ui_col_'] {min-height: 1px;margin-left: 10px;margin-right: 10px;}
  143. .ui_row [class^='ui_col_']:first-child {margin-left: 0;}
  144. .ui_row [class^='ui_col_']:last-child {margin-right: 0;}
  145. .ui_col_1, .ui_col_2, .ui_col_3,
  146. .ui_col_4, .ui_col_5, .ui_col_6,
  147. .ui_col_7, .ui_col_8, .ui_col_9,
  148. .ui_col_10, .ui_col_11, .ui_col_12{
  149. position: relative;
  150. min-height: 1px;
  151. }
  152. @media (min-width: 320px){
  153. .ui_col_1, .ui_col_2, .ui_col_3,
  154. .ui_col_4, .ui_col_5, .ui_col_6,
  155. .ui_col_7, .ui_col_8, .ui_col_9,
  156. .ui_col_10, .ui_col_11, .ui_col_12 {
  157. float: left;
  158. }
  159. }
  160. @media (min-width: 320px){
  161. .ui_col_1{width:8.33333333%}
  162. .ui_col_2{width:16.66666667%}
  163. .ui_col_3{width:25%}
  164. .ui_col_4{width:33.33333333%}
  165. .ui_col_5{width:41.66666667%}
  166. .ui_col_6{width:50%}
  167. .ui_col_7{width:58.33333333%}
  168. .ui_col_8{width:66.66666667%}
  169. .ui_col_9{width:75%}
  170. .ui_col_10{width:83.33333333%}
  171. .ui_col_11{width:91.66666667%}
  172. .ui_col_12{width:100%}
  173. }
  174. /* textarea */
  175. textarea {background-color:transparent; border:1px solid #d7d7d7; width:99%; overflow-y:auto}
  176. .textarea_full {width:832px; padding:10px}
  177. .textarea_md {width:656px; width: 30%; height:108px; padding:10px; line-height:18px;}
  178. .textarea_sm {width:360px; width: 18%; padding:10px;}
  179. .txt_cnt {text-align:right; margin-top: 10px;}
  180. .txt_cnt .c_primary {font-weight:500;}
  181. /* margin style */
  182. .mgc {margin:0 auto;}
  183. .mt0 {margin-top:0 !important;}
  184. .ml0 {margin-left:0 !important;}
  185. .ml5 {margin-left:5px !important;}
  186. .ml10{margin-left:10px !important;}
  187. .ml15 {margin-left:15px !important;}
  188. .ml20 {margin-left:20px !important;}
  189. .ml30 {margin-left:30px !important;}
  190. .mr0{margin-right:0px !important;}
  191. .mr20 {margin-right:20px !important;}
  192. .mt5 {margin-top:5px !important;}
  193. .mt10 {margin-top:10px !important;}
  194. .mt15 {margin-top:15px !important;}
  195. .mt20 {margin-top:20px !important;}
  196. .mt30 {margin-top:30px !important;}
  197. .mt35 {margin-top:35px !important;}
  198. .mt40 {margin-top:40px !important;}
  199. .mt45 {margin-top:45px !important;}
  200. .mt50 {margin-top:50px !important;}
  201. .mt60 {margin-top:60px !important;}
  202. .mt100 {margin-top:100px !important;}
  203. .mb0 {margin-bottom:0 !important}
  204. .mb5 {margin-bottom:5px !important}
  205. .mb10 {margin-bottom:10px !important;}
  206. .mb15 {margin-bottom:15px !important;}
  207. .mb20 {margin-bottom:20px !important;}
  208. .mb30 {margin-bottom:30px !important;}
  209. .mb35 {margin-bottom:35px !important;}
  210. .mb40 {margin-bottom:40px !important;}
  211. .mb45 {margin-bottom:45px !important;}
  212. .mb50 {margin-bottom:50px !important;}
  213. .mb60 {margin-bottom:60px !important;}
  214. .mb100 {margin-bottom:100px !important;}
  215. .mr5 {margin-right:5px !important;}
  216. .mr10 {margin-right:10px !important;}
  217. .mr15 {margin-right:15px !important;}
  218. .ml10 {margin-left:10px !important;}
  219. .ml35 {margin-left:35px !important;}
  220. .mtm3 {margin-top:-3px !important;}
  221. .mtm10 {margin-top:-10px !important;}
  222. .mtm20 {margin-top:-20px !important;}
  223. .mbm10 {margin-bottom:-10px !important;}
  224. .mbm30{margin-bottom:-30px !important;}
  225. /*padding style*/
  226. .pt10 {padding-top:10px !important;}
  227. .pt20 {padding-top:20px !important;}
  228. .pt30 {padding-top:20px !important;}
  229. .pt40 {padding-top:40px !important;}
  230. .pt100 {padding-top:100px !important;}
  231. .pl0 {padding-left:0 !important;}
  232. .pl10 {padding-left:10px !important;}
  233. .pr20 {padding-right:20px !important;}
  234. .pb10 {padding-bottom:10px !important;}
  235. .pb20 {padding-bottom:20px !important;}
  236. .pb30 {padding-bottom:30px !important;}
  237. .pb40 {padding-bottom:40px !important;}
  238. .pb50 {padding-bottom:50px !important;}
  239. .pb100 {padding-bottom:100px !important;}
  240. .block {display:block;}
  241. .inblock {display:inline-block;*display:inline;zoom:1;}
  242. .clear {*zoom:1; clear:both;}
  243. .clear:after {content:""; display:block; clear:both;}
  244. .fr::after, .fl::after{content: '';display: block;clear: both;}
  245. .fl {float:left !important;}
  246. .fr {float:right !important;}
  247. .t_c {text-align:center !important;}
  248. .t_l {text-align:left !important;}
  249. .t_r {text-align:right !important;}
  250. .btn_center {text-align:center; margin-top:30px;}
  251. .btn_right {text-align:right; margin-top:10px; margin-bottom:15px;}
  252. .btn_border {border-top:1px solid #e1e1e1; padding-top:30px;text-align:center; margin-top:30px;}
  253. .bkn {background:0 none !important;}
  254. /* button */
  255. .btn {
  256. display: inline-block;
  257. margin-bottom: 0;
  258. padding: 13px 41px;
  259. font-size: 16px;
  260. font-weight: 400;
  261. line-height: 20px;
  262. text-align: center;
  263. white-space: nowrap;
  264. vertical-align: middle;
  265. -webkit-user-select: none;
  266. -moz-user-select: none;
  267. -ms-user-select: none;
  268. user-select: none;
  269. background-image: none;
  270. box-sizing: border-box;
  271. border-width: 1px;
  272. border-style: solid;
  273. border-color: rgba(225, 225, 225, 0.6);
  274. -moz-border-radius: 0px;
  275. -webkit-border-radius: 0px;
  276. border-radius: 0px;
  277. -ms-touch-action: manipulation;
  278. touch-action: manipulation;
  279. -webkit-transition: all 200ms ease;
  280. -moz-transition: all 200ms ease;
  281. -ms-transition: all 200ms ease;
  282. -o-transition: all 200ms ease;
  283. transition: all 200ms ease;
  284. cursor: pointer;
  285. }
  286. .btn {color: #3d3d3d;background-color: rgb(255 255 255 / 0);border-color: rgb(221 221 221 / 0.6);}
  287. .btn_default {color: #333333;background-color: #ffffff;border-color: #dddddd;}
  288. .btn_dark {color: #ffffff;background-color: #222222;border-color: #222222;}
  289. .btn_primary {color: #ffffff;background-color: #fd4802;border-color: #fd4802;}
  290. .btn_primary_line {color: #fd4802;background-color: #ffff;border-color: #fd4802;}
  291. /* .btn_success {color: #ffffff;background-color: #95b75d;border-color: #95b75d;} */
  292. /* .btn_info {color: #ffffff;background-color: #50cff5;border-color: #35c1ea;} */
  293. /* .btn_warning {color: #ffffff;background-color: #fe970a;border-color: #fe970a;} */
  294. /* .btn_danger {color: #ffffff;background-color: #E04B4A;border-color: #E04B4A;} */
  295. .btn_link {color: #428bca;border-radius: 0;font-weight: 400;}
  296. .btn_underline {display:inline-block; border-bottom:1px solid #222; color:#222; font-size:14px; line-height:1 !important;}
  297. .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  298. pointer-events: none;
  299. cursor: not-allowed;
  300. filter: alpha(opacity=65);
  301. -webkit-box-shadow: none;
  302. box-shadow: none;
  303. opacity: .45;
  304. }
  305. /* btn hover, focus */
  306. .btn:hover, .btn:focus, .btn.focus {color: #333333;text-decoration: none;}
  307. .btn:hover, .btn:focus, .btn:active, .btn.active,
  308. .open > .tgl_dropdown.btn {background-color: rgb(255 255 255 / 0.4);border-color: rgb(221 221 221 / 0.6);}
  309. .btn:active, .btn.active {-moz-box-shadow: none;-webkit-box-shadow: none;box-shadow: none;}
  310. /* btn active */
  311. .btn_default:hover, .btn_default:focus,
  312. .btn_default:active, .btn_default.active,
  313. .open > .tgl_dropdown.btn_default {
  314. background-color: #F5F5F5;border-color: #dddddd;color:#333333;
  315. }
  316. .btn_dark:hover, .btn_dark:focus,
  317. .btn_dark:active, .btn_dark.active,
  318. .open > .tgl_dropdown.btn_dark {
  319. background-color: #2f2f2f;border-color: #2f2f2f;color:#ffffff;
  320. }
  321. .btn_primary:hover, .btn_primary:focus,
  322. .btn_primary:active, .btn_primary.active,
  323. .open > .tgl_dropdown.btn_primary {
  324. background-color: #dc4308;border-color: #dc4308;color:#ffffff;
  325. }
  326. .btn_primary_line:hover, .btn_primary_line:focus,
  327. .btn_primary_line:active, .btn_primary_line.active {
  328. background-color:#fff; border-color:#fd4802; color:#fd4802;
  329. }
  330. .btn_success:hover, .btn_success:focus,
  331. .btn_success:active, .btn_success.active,
  332. .open > .tgl_dropdown.btn_success {
  333. background-color: #89ad4d;border-color: #89ad4d;color:#ffffff;
  334. }
  335. .btn_info:hover, .btn_info:focus,
  336. .btn_info:active, .btn_info.active,
  337. .open > .tgl_dropdown.btn_info {
  338. background-color: #47c2e6;border-color: #3cbee4;color:#ffffff;
  339. }
  340. .btn_warning:hover, .btn_warning:focus,
  341. .btn_warning:active, .btn_warning.active,
  342. .open > .tgl_dropdown.btn_warning {
  343. background-color: #fe970a;border-color: #fe970a;color:#ffffff;
  344. }
  345. .btn_danger:hover, .btn_danger:focus,
  346. .btn_danger:active, .btn_danger.active,
  347. .open > .tgl_dropdown.btn_danger {
  348. background-color: #a43f3e;border-color: #a43f3e;color:#ffffff;
  349. }
  350. /* a linktext */
  351. .linktxt1 {text-decoration:underline !important; color:#2b62c2 !important; font-weight:300;}
  352. .linktxt2 {text-decoration:underline !important;color:#0b596b;}
  353. .linktxt3 {text-decoration:underline !important;color:#666666;}
  354. .linktxt4 {
  355. border-bottom:1px solid #0b596b; display:inline-block;
  356. font-size:11px; line-height:14px; text-indent:0; color:#0b596b !important;
  357. padding-right:10px; margin-top:2px; margin-left:10px;
  358. /* 아이콘 이미지 넣을것 */
  359. /* background:url(/images/pc/icon/ico_arrow.gif) no-repeat right 3px; */
  360. }
  361. /* ico */
  362. .ico {position: relative;/*top: 1px;*/display: inline-block; font-style: normal;font-weight: 400;line-height: 1;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}
  363. .ico:before {display: inline-block; background-repeat:no-repeat; background-size:contain; background-position:0% 0%; vertical-align:middle;}
  364. .btn_ico {display: inline-block;position: relative;}
  365. .btn .ico {font-size: 14px;margin-right: 5px;}
  366. [class^="ico_"]:before {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
  367. [class^="ico_content_"]::before {content:''; display:block;}
  368. .ico_logo:before {content: ""; display:block; width:184px; height:28px; background-image: url('/images/pc/logo_STYLE24.png'); }
  369. .ico_logo_ft:before {content: ""; display:block; width:150px; height:23px; background-image: url('/images/pc/logo_STYLE24_footer.png'); }
  370. .ico_search:before {content: ""; display: inline-block; width:22px; height:26px; background-image: url('/images/pc/ico_sch.png'); }
  371. .ico_bag:before {content: ""; display: inline-block; width:22px; height:26px; background-image: url('/images/pc/ico_bag.png');}
  372. .ico_content_order::before {width:40px; height: 46px; background: url('/images/pc/ico_content_order.png') no-repeat 50% 50%;}
  373. .ico_content_find::before {width:36px; height: 46px; background: url('/images/pc/ico_content_find.png') no-repeat 50% 50%;}
  374. .ico_content_none::before {width:36px; height: 46px; background: url('/images/pc/ico_content_none.png') no-repeat 50% 50%;}
  375. .ico_content_security::before {width:38px; height: 43px; background: url('/images/pc/ico_content_security.png') no-repeat 50% 50%;}
  376. .ico_content_mail::before {width:48px; height: 40px; background: url('/images/pc/ico_content_mail.png') no-repeat 50% 50%;}
  377. .ico_content_dormant::before {width:36px; height: 46px; background: url('/images/pc/ico_content_dormant.png') no-repeat 50% 50%;}
  378. .ico_content_dormant2::before {width:36px; height: 46px; background: url('/images/pc/ico_content_dormant2.png') no-repeat 50% 50%;}
  379. .ico_blank::before {content: ""; width:13px; height:13px; background-image: url('/images/pc/ico_blank.png');}
  380. .ico_ft_arrow_r:before {content: ""; width:11px; height:11px; background-image: url('/images/pc/ico_ft_arrow.png');}
  381. .ico_ft_arrow_b:before {content: ""; width:11px; height:11px; background-image: url('/images/pc/ico_ft_arrow.png'); transform: rotate(90deg);}
  382. .ico_ft_arrow_t:before {content: ""; width:11px; height:11px; background-image: url('/images/pc/ico_ft_arrow.png'); transform: rotate(-90deg);background-position: 5px;}
  383. .ico_kcl::before {content: ""; width:32px; height:50px; background-image: url('/images/pc/ico_kcl.png');}
  384. .ico_picker::before {content: ""; width:40px; height:40px; background:url(/images/pc/ico_picker.png) no-repeat 50% 50%;}
  385. .ico_trash::before {content: ""; width:13px; height:16px; background:url(/images/pc/ico_trash.png) no-repeat 50% 50%;}
  386. .ico_trash_wh::before {content: ""; width:13px; height:16px; background:url(/images/pc/ico_trash_white.png) no-repeat 50% 50%;}
  387. .ico_like::before {content: ""; width: 19px; height:16px;background: url(/images/pc/ico_like.png) no-repeat 0% 50%; background-size:cover;}
  388. .ico_like2::before {content: ""; width: 16px; height:14px;background: url(/images/pc/ico_like2.png) no-repeat 0% 50%; background-size:cover;}
  389. .active .ico_like::before,
  390. .active .ico_like2::before {background-position:100% 50%;}
  391. .ico_star::before {content: ""; width: 17px; height:17px;background: url(/images/pc/ico_star.png) no-repeat 0% 50%; background-size:cover;}
  392. .active .ico_star::before {background-position:100% 50%;}
  393. .ico_saletag::before {content: ""; width:34px;height:17px;background: url(/images/pc/ico_saletag.png) no-repeat 50% 50%; background-size:cover;}
  394. .ico_besttag::before {content: ""; width:31px;height:15px;background: url(/images/pc/ico_besttag.png) no-repeat 50% 50%; background-size:cover;}
  395. .ico_calender::before {content: ""; width:15px;height:16px;background: url(/images/pc/ico_calender.png) no-repeat 50% 50%; background-size:cover;}
  396. .ico_snslogin::before {content: ""; background-image: url(/images/pc/ico_snslogin.png); background-size:auto 100%;}
  397. .ico_snslogin.kakao::before {width:20px; height:22px; background-position:0 0;}
  398. .ico_snslogin.naver::before {width:16px; height:22px; background-position:-20px 0;}
  399. .ico_snslogin.yes24::before {width:34px; height:22px; background-position:-36px 0;}
  400. .ico_check::before {content: ""; width:10px; height:8px; background-image: url(/images/pc/ico_check.png); background-size:100% auto;}
  401. .ico_check.black::before {content: ""; background-position:0 0;}
  402. .ico_check.red::before {content: ""; background-position:0px -8px;}
  403. .ico_check.gray::before {content: ""; background-position:0px -16px;}
  404. .ico_phone::before {content: ""; width:22px; height:30px; background:url(/images/pc/ico_join_bg.png) no-repeat 0 0; background-size:auto 100%;}
  405. .ico_ipin::before {content: ""; width:30px; height:30px; background:url(/images/pc/ico_join_bg.png) no-repeat -30px 0; background-size:auto auto;}
  406. .ico_close1::before {content: ""; width:12px;height:12px;background: url(/images/pc/ico_close1.png) no-repeat 50% 50%; background-size:cover;}
  407. /* btn linktext */
  408. a[class*="link"]::after, .btn_link span::after {
  409. content: "〉";font-size: 12px;padding-left: 8px;
  410. /* background:url(/images/pc/icon/ico_arrow.gif) no-repeat right 3px; */
  411. }
  412. .npay_button a[class*="link"]::after, .npay_button .btn_link span::after {content: "";}
  413. .btn_link, .btn_link:hover, .btn_link:focus, .btn_link:active {border-color: transparent;}
  414. .btn_link:hover, .btn_link:focus {color: #2a6496;text-decoration:none;background-color: transparent;}
  415. .btn_link:hover, .btn_link:focus, .btn_link:active, .btn_link.active {color: #222222;background-color: transparent;border-color: transparent;}
  416. /* btn size */
  417. .btn.btn_xs, .btn_group_xs .btn {font-size: 10px;padding: 0px 5px;}
  418. .btn.btn_sm, .btn_group_sm .btn {font-size: 12px;padding: 8px 14px;}
  419. .btn.btn_md, .btn_group_md .btn {font-size: 18px;padding: 18px 48px;}
  420. .btn.btn_lg, .btn_group_lg .btn {font-size: 18px;padding: 34px 100px;}
  421. .btn.btn_lg.btn_link span::after, .btn.btn_md.btn_link span::after {font-size: 10px;padding-left: 8px;}
  422. .btn.btn_xs.btn_link span::after, .btn.btn_sm.btn_link span::after {font-size: 4px;padding-left: 4px;}
  423. /* button group */
  424. .btn_wrap {width: 100%;margin: 10px 0;}
  425. .btn_group {}
  426. .btn_group, .btn_group_vertical {position: relative;display: inline-block;vertical-align: middle;}
  427. .btn_group>.btn, .btn_group-vertical>.btn {float: left;position: relative;}
  428. .btn_group .btn+.btn, .btn_group .btn+.btn_group,
  429. .btn_group .btn_group+.btn, .btn_group .btn_group+.btn_group {
  430. margin-left: -1px;
  431. }
  432. .btn_group_block {float: left;width: 100%;}
  433. .btn_group_block::after {content:''; clear:both; display:block;}
  434. .btn_group_block > * {}
  435. .btn_group_block [class^='ui_col_']{}
  436. .btn_block {display: block;width: 100%;}
  437. .btn_group>.btn:hover, .btn_group-vertical>.btn:hover,
  438. .btn_group>.btn:focus, .btn_group-vertical>.btn:focus,
  439. .btn_group>.btn:active, .btn_group-vertical>.btn:active,
  440. .btn_group>.btn.active, .btn_group-vertical>.btn.active{
  441. z-index: 2;
  442. }
  443. /* toggle - Share */
  444. .shareSet {position: absolute; width:28px; height: 30px; top:0; right:70px; background: url(/images/pc/ico_sns_share.png)no-repeat;}
  445. .shareSet a {display: inline-block; width:100%; height: 100%; text-indent: -9999px;}
  446. .shareWrap {display: block;opacity: 0;background-color: #ffffff;border: 1px solid #000000;position: absolute;top: -50%;left: -267px;right: 0;padding: 22px 30px;border-radius: 0;z-index: -1;font-size: inherit;width: 240px;height: 70px;}
  447. .shareWrap p { text-align:left; color:#000000; font-size:12px; word-break:break-all; word-wrap:break-word;}
  448. .on.shareWrap {opacity:1; border: 1px solid #000000; z-index:100;}
  449. .on.shareWrap::before {display: block;clear: both;content: '';opacity: 1;position: absolute;bottom: 50%;right: -12px;width: 0px;height: 0px;margin-left: 0;border-top: 5px solid transparent;border-bottom: 5px solid transparent;border-left: 7px solid #ffffff;border-right: 5px solid transparent;}
  450. /* open_share toggle */
  451. .btn_share[data-name=openShare]{display: inline-block;width: 100%;height: 100%;text-indent: -9999px;}
  452. .btn_share[data-name=openShare]::before {display: block;clear: both;content: '';opacity: 0;position: absolute;bottom: 23%;left: -30px;width: 0px;height: 0px;margin-left: 0;border-top: 8px solid transparent;border-bottom: 8px solid transparent;border-left: 10px solid #000000;border-right: 8px solid transparent;}
  453. .btn_share.on[data-name=openShare]::before {opacity:0.8;}
  454. .setShare span {display: block;text-align: center;}
  455. .setShare button {width: 20px;height: 20px;background: url(/images/pc/ico_share.png) no-repeat;background-position-x: 0%;background-position-y: 0%;background-size: 173px 20px;position: relative;}
  456. .setShare button.kk {background-position: 0 0;}
  457. .setShare button.fb {background-position: -50px 0;}
  458. .setShare button.tw {background-position: -99px 0;}
  459. .setShare button.url {width: 30px;background-position: -145px 0;}
  460. .setShare button ~ button {margin-left: 20px;}
  461. .setShare button span {display: none;font-size: 0;}
  462. /* toggle - dropdown */
  463. .btn_group.open .tgl_dropdown{
  464. -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  465. box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  466. }
  467. .btn_group>.btn:not(:first-child):not(:last-child):not(.tgl_dropdown) {
  468. border-radius: 0;
  469. }
  470. .btn_group>.btn:first-child{margin-left: 0;}
  471. .btn_group>.btn:first-child:not(:last-child):not(.tgl_dropdown) {border-top-right-radius: 0;border-bottom-right-radius: 0;}
  472. .btn_group>.btn:last-child:not(:first-child),
  473. .btn_group>.tgl_dropdown:not(:first-child) {border-top-left-radius: 0;border-bottom-left-radius: 0;}
  474. /*
  475. .open>.dropdown_menu {display: block;}
  476. */
  477. .dropdown_menu {
  478. position: absolute;
  479. top: 100%;
  480. left: 0;
  481. z-index: 1000;
  482. display: none;
  483. float: left;
  484. min-width: 160px;
  485. width:100%;
  486. padding: 5px 0;
  487. box-sizing: border-box;
  488. margin: 2px 0 0;
  489. font-size: 12px;
  490. text-align: left;
  491. list-style: none;
  492. background-color: #fff;
  493. -webkit-background-clip: padding-box;
  494. background-clip: padding-box;
  495. border: 1px solid #ccc;
  496. border: 1px solid rgba(0,0,0,.15);
  497. border: 1px solid #E5E5E5;
  498. padding: 0px;
  499. margin: 8px 0px 0px;
  500. /* border-radius: 4px; */
  501. -moz-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.1);
  502. -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.1);
  503. box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.1);
  504. }
  505. /* 삼각말풍선 */
  506. /*
  507. .dropdown_menu:after, .dropdown_menu:before {
  508. bottom: 100%;
  509. left: 50%;
  510. border: solid transparent;
  511. content: " ";
  512. height: 0;
  513. width: 0;
  514. position: absolute;
  515. pointer-events: none;
  516. }
  517. .dropdown_menu:before {
  518. border-color: rgba(229, 229, 229, 0);
  519. border-bottom-color: #E5E5E5;
  520. border-width: 6px;
  521. margin-left: -6px;
  522. }
  523. */
  524. .dropdown_header {
  525. display: block;
  526. font-size: 12px;
  527. line-height: 20px;
  528. white-space: nowrap;
  529. padding: 10px 15px;
  530. border-bottom: 1px solid #E5E5E5;
  531. color: #777;
  532. }
  533. .dropdown_menu > li > a {
  534. display: block;
  535. padding: 8px 15px;
  536. clear: both;
  537. font-weight: 400;
  538. line-height: 20px;
  539. color: #333;
  540. white-space: nowrap;
  541. border-bottom: 1px solid #E9E9E9;
  542. }
  543. .dropdown_menu > li:last-child > a {
  544. border-bottom: 0px;
  545. }
  546. .dropdown_menu > li > a:hover, .dropdown_menu > li > a:focus {
  547. color: #262626;
  548. text-decoration: none;
  549. background-color: #f5f5f5;
  550. }
  551. /* btn_icon */
  552. .caret {
  553. display: inline-block !important;
  554. width: 0;
  555. height: 0;
  556. margin-left: 2px;
  557. vertical-align: middle;
  558. border-top: 4px solid;
  559. border-right: 4px solid transparent;
  560. border-left: 4px solid transparent;
  561. position: relative;
  562. top: 50%;
  563. right: -8px;
  564. bottom: auto;
  565. left: auto;
  566. }
  567. .btn .caret {
  568. margin-left: 0;
  569. }
  570. /* page loading */
  571. #load {width: 100%;height: 100%;top: 0;left: 0;position: fixed;display: block;text-align: center;opacity: 0.6;background: #ffffff;background-image: url('/images/pc/movloading.gif');background-repeat: no-repeat;background-position: 50% 50%;background-size: 37px 36px;z-index: 99999;}
  572. /* popup_notice */
  573. .popup_main_notice {position:fixed; left:50%; top:50%; transform:translate(-50%,-50%); z-index:200;}
  574. .popup_main_notice .swiper-button-prev,
  575. .popup_main_notice .swiper-button-next {position:absolute; top:50%; transform:translateY(-50%); display:inline-block; width:60px; height:60px; background-image:url('/images/pc/btn_main_pop_arrow.png'); background-repeat:no-repeat; background-size:auto 100%; z-index:2;}
  576. .popup_main_notice .swiper-button-prev {left:0; background-position:0 50%;}
  577. .popup_main_notice .swiper-button-next {right:0; background-position:100% 50%;}
  578. .popup_main_notice .swiper-button-prev::after,
  579. .popup_main_notice .swiper-button-next::after {display:none; color:transparent;}
  580. .popup_main_notice .popup_content {position:relative; line-height:1; vertical-align:top; width:auto; min-width:400px; max-width:1200px;}
  581. .popup_main_notice .popup_content .popup_body {position:relative; background:#fff;}
  582. .popup_main_notice .popup_content .popup_body .swiper-slide {width:400px;}
  583. .popup_main_notice .popup_content .popup_footer {background:#222; height:60px; padding:23px 30px 0; box-sizing:border-box;}
  584. .popup_main_notice .popup_content .popup_footer::after {content:''; clear:both; display:block;}
  585. .popup_main_notice .popup_content .popup_footer a.btn_underline {display:inline; float:left; color:#888; font-size:14px; font-weight:200; border-color:#888}
  586. .popup_main_notice .popup_content .popup_footer a.btn_popup_close {display:inline; float:right; color:#fff; font-size:14px; font-weight:300;}
  587. .popup_main_notice .popup_body.onlyNotice .swiper-button-prev,
  588. .popup_main_notice .popup_body.onlyNotice .swiper-button-next {display:none;}
  589. /* pageNav */
  590. .pageNav {display: table; margin-left: auto; margin-right: auto;}
  591. .pageNav:after {display: table;clear: both;content: " ";}
  592. .pageNav > li {display: inline;}
  593. .pageNav > li > a, .pageNav > li > span {position: relative; float: left; font-size: 16px; font-weight: 400; padding: 6px 2px; margin-left: 40px; line-height: 1.42857143; color: #666666; text-decoration: none; background-color: #ffffff;}
  594. .pageNav > li:first-child > a,
  595. .pageNav > li:first-child > span { margin-left: 0;}
  596. .pageNav .next a,
  597. .pageNav .prev a {vertical-align: top; background-repeat: no-repeat; background-position: 50% 50%;}
  598. .pageNav .disabled a {width:15px; height: 34px; background: url('/images/pc/ico_paging.png')no-repeat 0 11px; text-indent: -9999px;}
  599. .pageNav .disabled.prev a {width:8px; height: 34px; background-position: -23px 11px; margin-left: 29px;}
  600. .pageNav .prev a,
  601. .pageNav > li:first-child a { width:15px; height: 34px; background: url('/images/pc/ico_paging.png')no-repeat 0 11px; text-indent: -9999px;}
  602. .pageNav .next a,
  603. .pageNav > li:last-child a { width:15px; height: 34px; background: url('/images/pc/ico_paging.png')no-repeat -64px 11px; text-indent: -9999px;}
  604. .pageNav > li:last-child a {margin-left: 29px;}
  605. .pageNav .prev a {width: 8px; height: 34px; background-position: -23px 11px;}
  606. .pageNav .next a {width: 8px; height: 34px; background-position: -47px 11px;}
  607. .pageNav > li.active > a {color: #fd4802;}
  608. .pageNav > li.active > a::after {content: ''; display: block; width: 100%; height: 2px; background: #fd4802; position: absolute; left: 0px; bottom: 5px; top: auto; right: auto;}
  609. .pageNav a:hover, .pageNav span:hover {/* 디자인 없음 *//* color: #ffffff; background-color: #fd4802; border-color: #fd4802; */}
  610. .pageNav > .active > a:hover, .pageNav > .active > span:hover,
  611. .pageNav > .active > a:focus, .pageNav > .active > span:focus {cursor: default; /* 디자인없음 */ /*z-index: 2; color: #ffffff; background-color: #fd4802; border-color: #fd4802;*/}
  612. .pageNav > .disabled > span, .pageNav > .disabled > span:hover, .pageNav > .disabled > span:focus,
  613. .pageNav > .disabled > a,
  614. .pageNav > .disabled > a:hover,
  615. .pageNav > .disabled > a:focus {color: #dddddd; cursor: not-allowed; background-color: #ffffff; border-color: #dddddd;}
  616. /* folding Group */
  617. .fold_head a::after ,
  618. .fold_head a div::after,
  619. .fold_head .fold_tit::after {content: ''; display: block; clear: both;}
  620. .foldGroup {float: left; width: 100%; margin-bottom: 20px;}
  621. .foldGroup > ul > li {float: left; position: relative; width: 100%; margin: 0px; border: 0px; border-top: 1px solid #E5E5E5; border-bottom: 1px solid #E5E5E5; box-sizing: border-box;}
  622. .foldGroup > ul > li:first-child {border-top: 1px solid #222;}
  623. .foldGroup > ul > li+li {margin:0; border-top:0px solid; box-sizing:border-box;}
  624. .foldGroup .fold_head,
  625. .foldGroup .fold_foot,
  626. .foldGroup .fold_cont {float:left; width:100%;}
  627. .foldGroup .fold_head {position: relative; width:100%; border-bottom: 0;}
  628. .fold_head {padding: 0px; border-bottom: 1px solid transparent;}
  629. .fold_head::after {content: ''; position: absolute; display: inline-block; top: 50%; left: auto; right:40px; transform: translateY(-50%); width: 20px; height: 11px; background: url('/images/pc/ico_fold_arrow1.png'); background-repeat: no-repeat; background-position: 0 100%; }
  630. .fold_head.on::after {background-repeat: no-repeat; background-position: 0 0%;}
  631. .fold_head .data {position:absolute; top:50%; transform: translateY(-50%); left:auto; right:80px; font-size:16px; font-weight:300; z-index:2;}
  632. .foldGroup .fold_head a {display:block; width:inherit; height:100%; padding: 35px 0;}
  633. .foldGroup .fold_head a > div {display:table; width:100%;}
  634. .foldGroup .fold_head a > div > * {display:table-cell; vertical-align: middle;}
  635. .fold_head .fold_tit {position:relative; padding-left:30px;}
  636. .fold_head .fold_tit span {display: block; position: relative; width: 100%; height: auto; font-size:20px; font-weight:300; color: #222; line-height: 1.2; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; text-align: justify; letter-spacing:-0.025em;}
  637. .fold_head .fold_state {width:170px; box-sizing: border-box; text-align: center; font-weight: 300; color:#888; line-height:1;}
  638. .fold_head .fold_state .important {display:inline-block; position:relative; background-color: #fd4802; color:#fff; font-size:11px; font-weight:300;line-height:22px; width: 55px; height: 22px;}
  639. .fold_head .fold_state.fix {color:#222;}
  640. .fold_head .fold_state.done {color:#222}
  641. .fold_head .fold_state.doing {color:#888}
  642. .fold_head .fold_category {width:100px; font-weight:200; text-align:center; color:#888;}
  643. .foldGroup .fold_cont {padding: 0; position: relative; color:#666; font-weight:200; font-size:16px; line-height:1.625;}
  644. .fold_cont > div:first-of-type {padding-top:0; border-top:none;}
  645. .fold_cont .img_group .thumb_pic {position:relative; display:inline-block; width:120px; height:120px; border:1px solid #ddd; margin-right: 5px; box-sizing:border-box; overflow:hidden;}
  646. .fold_cont .img_group .thumb_pic img {position:absolute; top:50%; transform: translateY(-50%); width:100%; height: auto;}
  647. .fold_cont .fold_detail,
  648. .fold_cont .fold_answer {position:relative; padding:35px 30px;}
  649. .fold_cont .fold_answer {border-top:1px solid #ddd }
  650. .fold_cont .fold_detail .btn {margin-top:25px; padding:6px 13px; color:#222; border-color:#a1a1a1; font-size:14px; font-weight:200; background:none;}
  651. .fold_cont .fold_detail .img_group {margin-top: 24px; overflow: hidden;}
  652. .fold_cont .fold_detail img,
  653. .fold_cont .fold_answer img{width: auto; max-width: 100%;}
  654. .fold_cont .fold_answer > div {position:relative;}
  655. .fold_cont .fold_answer div:first-of-type::before{content: 'A'; display: inline-block; position: absolute; top:0px; bottom: auto; left:-35px; right: auto; width: 26px; height: 26px; border-radius: 100%; background: #fd4800; color: #ffffff; font-size: 14px; text-align: center; line-height:26px; font-weight:400;}
  656. .foldGroup.case1,
  657. .foldGroup.case2{}
  658. .case1 .fold_head.on,
  659. .case2 .fold_head.on{background:#f5f5f5;}
  660. .case1 .fold_head .data,
  661. .case2 .fold_head .data {right:100px; font-size: 14px; font-weight: 200; color:#888;}
  662. .case1 .fold_head .fold_tit,
  663. .case2 .fold_head .fold_tit {padding-left:35px;}
  664. .case1 .fold_head .fold_tit::before {content: 'Q'; display: inline-block; position: absolute; top:auto; bottom:-2px; left: 0; right: auto; width: 26px; height: 26px; border-radius: 100%; background: #222; color: #fff; font-size: 14px; text-align: center; line-height: 26px;}
  665. .case1 .fold_head .fold_tit span,
  666. .case2 .fold_head .fold_tit span{font-size:16px; width:790px;}
  667. .case1 .fold_head .fold_tit span.prod,
  668. .case2 .fold_head .fold_tit span.prod{margin-bottom:15px; margin-left:-35px; font-size:14px; font-weight:200; color: #888; line-height:1; }
  669. .case2 .fold_head .fold_tit span.prod {margin-left:0;}
  670. .case2 .fold_head .fold_state {width:150px}
  671. .case1 .fold_cont .data,
  672. .case2 .fold_cont .data{position:absolute; top:35px; left:auto; right:100px; font-size:16px; font-weight:200; z-index:2;}
  673. .case1 .fold_detail,
  674. .case1 .fold_answer,
  675. .case2 .fold_detail,
  676. .case2 .fold_answer{background:#f5f5f5; padding-right:200px;}
  677. .case1 .fold_detail,
  678. .case1 .fold_answer {padding-left:205px;}
  679. .case2 .fold_detail,
  680. .case2 .fold_answer {padding-left:285px;}
  681. .case1 .fold_answer .data,
  682. .case2 .fold_answer .data{right:100px; font-size: 14px; font-weight: 200; color:#888;}
  683. .case1 .fold_answer div.answer_head,
  684. .case2 .fold_answer div.answer_head {color:#222; font-weight:300;}
  685. .case1 .fold_answer .answer_body,
  686. .case2 .fold_answer .answer_body {margin-top: 24px; font-weight:200;}
  687. /* item */
  688. .itemsGrp {font-size: 0px;box-sizing: border-box;clear: both;margin-bottom: 20px;}
  689. .itemsGrp::after{content: "";display: table;clear: both;}
  690. /* row type */
  691. .itemsGrp.rowtype .item_prod {width:calc((100% - 20px)/2); margin-top:20px; margin-right:20px; height:420px; border:1px solid #ddd; overflow:hidden;}
  692. .itemsGrp.rowtype .item_prod:nth-child(2n) {margin-right:0;}
  693. .itemsGrp.rowtype .item_prod .itemBadge,
  694. .itemsGrp.rowtype .item_prod .itemcolorchip {display: none;}
  695. .itemsGrp.rowtype .item_prod .item_state {display:table; width:100%; padding:0;}
  696. /* .itemsGrp.rowtype .item_prod .itemLink {display:table-cell; position: relative;vertical-align: middle;width: 100%;height: 420px;padding-left: 330px;padding-right: 50px;} */
  697. .itemsGrp.rowtype .item_prod .itemLink {display:table-cell; position: relative;vertical-align: middle;width: 100%;height: 338px;padding-left: 330px;padding-left: 38%;padding-right: 50px;}
  698. .itemsGrp.rowtype .item_prod .itemLike {left:240px;left: 30%; z-index:99;}
  699. .itemsGrp.rowtype .item_prod .itemPic {position: absolute; top: 0; left: 0; margin-bottom: 0; padding-top: 0; width: 280px;width: 35%; height: 420px;}
  700. .itemsGrp.rowtype .item_prod .itemPic .shape {z-index: 89;}
  701. /* .itemsGrp.rowtype .item_prod .itemPic::after {background: #f9f9f9; opacity:1; z-index: 87;} */
  702. .itemsGrp.rowtype .item_prod .itemPic .pd_img {z-index: 88;}
  703. .itemsGrp.rowtype .item_state.soldout .itemPic:before {content:'SOLD OUT'; position:absolute; top:50%; left:50%; color:#fff; font-size:28px; font-weight:500; background:rgba(0,0,0,.7); width:100%; height:100%; transform:translate(-50%, -50%); line-height: 420px; z-index: 89; text-align:center;opacity: 1;}
  704. .itemsGrp.rowtype .item_prod .itemBrand {margin:0px; font-size: 16px; font-weight: 300;}
  705. .itemsGrp.rowtype .item_prod .itemComment {position:relative; top:-80px; font-size: 16px; font-weight: 300; margin:0;}
  706. .itemsGrp.rowtype .item_prod .itemName {margin:10px 0px 60px; font-size:24px; font-weight: 200; line-height:34px; max-width:100%; max-height:68px; height:auto;}
  707. .itemsGrp.rowtype .item_prod .itemPrice {font-size: 30px; line-height: 1; font-weight:500; margin-left:0; margin-right:0;}
  708. .itemsGrp.rowtype .item_prod .itemPrice_original {font-size: 20px; font-weight: 200;}
  709. .itemsGrp.rowtype .item_prod .itemPercent {font-size: 42px; font-weight:300; line-height: 0.8;}
  710. /* .itemsGrp.rowtype .item_prod .shopBagBtn {margin-top:30px;} */
  711. .itemsGrp.rowtype .item_prod .shopBagBtn {margin-top: 0;position: absolute;bottom: -38px;left: 330px;z-index: 50;}
  712. .itemsGrp.rowtype .item_prod .shopBagBtn .btn {width:178px; height:52px; border-color:#a7a7a7; color:#222; font-weight:300;}
  713. .itemsGrp.rowtype .item_prod .shopBagBtn .btn span {position:relative; padding-left:25px; line-height:1;}
  714. .itemsGrp.rowtype .item_prod .shopBagBtn .btn span::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:15px; height:18px; background: url('/images/pc/ico_shopbag.png') no-repeat 50% 50%;}
  715. .item_prod {width: 20%;display: inline-block;font-size: 0px;vertical-align: top;color: rgb(31, 31, 31);position: relative;letter-spacing: -0.2px;}
  716. .item_state {position: relative; padding: 0px 10px 60px; box-sizing: border-box;}
  717. .item_state.soldout .itemPic:after {content: 'SOLD OUT';position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);width:100%;height: auto;font-size: 18px;font-weight: 500;color: #fff;z-index: 30;text-align: center; opacity: 1; background: transparent;}
  718. .item_state.soldout .itemPic:before {content:''; position: absolute; top: 50%; left: 50%; font-size: 28px; font-weight: 500; color:#fff; background: rgba(0,0,0,.7); width: 100%; height: 100%; transform:translate(-50%, -50%); line-height: 420px; z-index: 20; text-align: center;opacity: 1;}
  719. /* .item_state.AD .itemPic:before {content:'AD'; position: absolute; bottom: 20px; right: 20px; font-size: 14px; font-weight: 300; letter-spacing: -0.025em; color:#888888; width: auto; height: auto; line-height: 14px; z-index: 21; text-align: right;} */
  720. .item_state.AD .itemPic:after {content:'AD'; position: absolute; bottom: 20px; right: 20px; font-size: 14px; font-weight: 300; letter-spacing: -0.025em; color:#888888; width: auto; height: auto; line-height: 14px; z-index: 21; text-align: right;}
  721. @media (max-width: 1919px) and (min-width: 1401px){/* .item_state {padding-left: 6px;padding-right: 6px;} */}
  722. .hgbgCa {width: 100%;height: 100%;}
  723. .fgRDJH {padding: 0px 40px;font-size: 0px;box-sizing: border-box;}
  724. @media (max-width: 1919px) and (min-width: 1401px){.fgRDJH {padding-left: 38px;padding-right: 38px;}}
  725. .itemLike {position: absolute;top: 20px;right: 18px;font-size: 0px;z-index: 99;width: 23px;height: 23px; background: url('/images/pc/ico_like.png');background-size: 46px;background-position:0px 0px;background-repeat: no-repeat;}
  726. .itemLike::before, .itemLike::after {
  727. content: "";position: absolute;top: 0px;right: 0px;width: 100%;height: 100%;
  728. background-repeat: no-repeat;background-position: right top;background-size: contain;opacity: 0;transition: opacity 200ms ease 0s;
  729. }
  730. .itemLike::before {background: url('/images/pc/ico_like.png');background-size: 46px;background-position:-25px 0px;background-repeat: no-repeat;}
  731. .itemLike::after {background: url('/images/pc/ico_like.png');background-size: 46px;background-position: -25px 0px;background-repeat: no-repeat;}
  732. .itemLike:hover::before, .itemLike:active::before {opacity: 1;}
  733. .itemLike.active::before {opacity: 1;}
  734. .itemLike.likeit::before {opacity: 1;}
  735. .itemLink {z-index:20;position: relative;text-decoration: none;color: rgb(102, 102, 102);cursor: pointer;display: block;}
  736. .itemPic {position: relative;width: 100%;margin-bottom:20px;padding-top: 150%;font-size: 0px;overflow: hidden;background-size: cover !important;}
  737. .itemPic {padding-top: 135%;} /* Other Requests */
  738. .itemPic::before {content: "";display: block;position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;opacity: 0.03;background-color: rgb(0, 0, 0);z-index: 98;}
  739. /* .itemPic::after {content: "";display: block;position: absolute;top: 0px;left: 0px;width: 100%;height: 100%;opacity: 0.03;background-color: rgb(0, 0, 0);z-index: 999;} */
  740. .itemPic .pd_img,
  741. .itemPic .pd_mov {position: absolute;width: 100%;height: auto;top: 50%;left: 0px;transform: translateY(-50%);}
  742. .itemPic .pd_mov {z-index: 2;height: 100%;left: -83.45%;width: 267%;}
  743. .itemPic .pd_img {z-index: 1;transition: 0.5s;}
  744. .itemPic .pd_img::after {content: '';display: block; height: 100%;width: 100%;background: #333;}
  745. /* .itemPic .pd_img {position: absolute;width: 100%;width: auto; height: auto;max-height: 500px;top: 50%;left: 50%;transform: translate(-50%,-50%);} */
  746. .itemOpt{z-index:3; pointer-events:none;position: absolute;bottom: -120px; left: 0; right: 0; width: 100%; height:62px;padding: 25px 0; text-align:center; color: #fff; background: rgb(0 0 0 / 0.8); transition-duration:0.45s;}
  747. .itemOpt.on{transition-duration:0.45s;bottom:0;}
  748. .itemOpt p{font-size: 12px;line-height: 1.2;padding-bottom: 15px;}
  749. .itemOpt ul{display: block;margin: 0 auto;width: auto;}
  750. .itemOpt ul li{font-size: 14px;line-height: 1.2;display: inline-block;margin-left: 10px;}
  751. .itemOpt ul .none{opacity: 0.5;text-decoration: line-through;}
  752. .itemOpt ul li:first-child{margin-left: 0px;}
  753. .itemOpt .exc{font-size: 14px;line-height: 1.2;display: inline-block;margin-left: 10px;}
  754. .itemBrand {margin: 0px 5px 12px;line-height: 12px;font-size: 12px;font-weight: 300;color: rgb(137, 137, 137);height:12px;}
  755. .itemComment{margin:0px 5px 12px;line-height: 1; font-size: 14px;font-weight: 300;color: #fd4802;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
  756. .itemName { margin: 0px 5px 15px;line-height:20px;font-size: 14px;font-weight: 200;color:#222; height:40px;}
  757. .itemPrice * {margin-right: 7px;}
  758. .itemPrice {position: relative;line-height: 16px;font-size:16px;font-weight: 300;color: rgb(31, 31, 31);margin: 0px 5px;}
  759. .itemPrice_original {position: relative;margin-left: 5px;line-height: 16px;font-size: 14px;font-weight: 300;color: rgb(204, 204, 204);}
  760. .itemPrice_original::after{content: '';display: inline-block;width: 100%;height: 1px;background: rgb(204, 204, 204);position: absolute;top: 50%;left: 0;bottom:auto;right:auto;transform: translateY(-50%);}
  761. .itemPercent {position: absolute;top: 0px;right: 0px;bottom: auto;left: auto;margin-left: 15px;line-height: 16px;font-size: 16px;font-weight: 300;color: #fd4802;}
  762. .itemViewCount {display:inline-block; height:30px; margin-top:20px; padding:7px 14px; border:2px solid #fd4802; color:#fd4802; font-size:14px; font-weight:300; line-height:1; border-radius:15px;}
  763. /* items Ellipsis */
  764. .itemBrand {position: relative;overflow: hidden;white-space: normal;overflow-wrap: break-word;display: block; max-width:95%;}
  765. .itemBrand {display: -webkit-box;text-overflow: ellipsis;-webkit-line-clamp: 1;-webkit-box-orient: vertical;}
  766. .itemName {position: relative;overflow: hidden;white-space: normal;overflow-wrap: break-word;display: block; max-width:95%;}
  767. .itemName {display: -webkit-box;text-overflow: ellipsis;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
  768. /* common.css로 이동 예정 */
  769. .itemcolorchip {margin:20px 5px 0px; max-width: 208px;}
  770. .itemcolorchip [class*="chip_"] {position: relative;display: inline-block;width: 15px;height: 15px;font-size: 0; vertical-align: middle; margin:0 0 0 4px;border-radius: 50%;box-sizing: border-box;}
  771. .itemcolorchip [class*="chip_"]:before {content: "";display: inline-block;width: 100%;height: 100%;border-radius: 50%;box-sizing: border-box;}
  772. .itemcolorchip [class*="chip_"]:first-child {margin-left:0}
  773. .chip_color40::before {background-color: #ffffff;border: 1px solid #ddd;}
  774. .chip_color54::before {background-color: #000000;}
  775. .chip_color35::before {background-color: #cbaf6f;}
  776. .itemBadge {margin:20px 5px 0; margin-top:14px; font-size: 0px; overflow:hidden;}
  777. .itemBadge [class*="badge"] {display:inline-block; height:22px; margin:0 0 0 5px; padding:0 8px; border:1px solid #888888; background: #fff; color:#888888; font-size: 11px; font-weight: 300; line-height: 21px;}
  778. .itemBadge [class*="badge"]:first-child {margin-left:0}
  779. .itemBadge .badge13 {background:#f5f5f5; border-color:#f5f5f5;}
  780. .rank{
  781. position: absolute;z-index: 1;font-size: 14px;color: #ffffff;top: 0;left: 0;width: auto;height: auto;
  782. min-width: 40px;max-height: 40px;text-align: center;line-height: 0.9;padding: 14px 0px;
  783. }
  784. .rank.detail span {padding: 0 14px;}
  785. .rank::after {
  786. content: "";z-index: -1;position: absolute;top: 0;left: 0;width: 100%;height: 100%;display: block;background: currentColor;background: #222222;
  787. clip-path: polygon(40px 0, 40px 30px, 30px 40px, 0 40px, 0 0);
  788. clip-path: polygon(100% 0, 100% 75%, 75% 100%, 0 100%, 0 0);
  789. clip-path: polygon(100% 0, 100% calc( 100% - 10px), calc( 100% - 10px) 100%, 0 100%, 0 0);
  790. }
  791. .rank.ranker::after {
  792. background: #fd4802;
  793. }
  794. .shape.ranker {background: #fd4802;}
  795. .shape.ranker::after {
  796. border-left:10px solid #fd4802 !important;
  797. border-right:0px solid #fd4802 !important;
  798. }
  799. .shape{
  800. background: #222222;width: 40px;max-width: 40px;min-height: 50px;display: block;position: absolute;top: 0;left: 0;z-index: 9;border-radius: 0 0 2px 0;
  801. }
  802. .shape:after{
  803. content: "";top: 0;right: -9px;position: absolute;
  804. border-left: 10px solid #222222;border-bottom: 10px solid transparent;border-right: 0px solid #0183fd;
  805. height: 40px;width: 0;padding: 0px 0px 0px 0px;
  806. }
  807. .shape span{
  808. color: #ffffff; text-align:center; text-indent: 10px;font-size: 14px;font-weight: 300;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 50px;z-index: 2;
  809. /* line-height: 1; */
  810. /* letter-spacing: -25em; */
  811. /* display: -webkit-box; */
  812. /* z-index: 99999; */
  813. }
  814. .shape.dealdetail{
  815. width: 100%;max-width: 40px;
  816. }
  817. .shape.dealdetail span{
  818. line-height: 1;text-align: center;width: 100%;display: inline-block;text-indent: 0;margin-left: 5px;
  819. }
  820. /* form style */
  821. input, textarea {font-size:14px; vertical-align:middle;}
  822. select{font-size:12px; font-family:'LATO', 'Noto Sans KR', sans-serif; color:#666666; vertical-align:middle;}
  823. input[type="text"], input[type="password"] {padding:7px 0 7px 9px; border:1px solid #dddddd;box-sizing: border-box;}
  824. input[type="text"]:focus, input[type="password"]:focus,
  825. input[type="text"].active, input[type="password"].active {border-color: #aaaaaa;}
  826. input[type="text"]:disabled, input[type="password"]:disabled, input[type="select"]:disabled,
  827. input[type="text"]:read-only, input[type="password"]:read-only, input[type="select"]:read-only {background: #F9F9F9;border-color: #dddddd;}
  828. input[type="text"][readonly], input[type="password"][readonly], input[type="select"][readonly] {background: #F9F9F9;border-color: #dddddd;}
  829. table input[type="text"], table input[type="password"] {padding:6px 0 6px 9px;}
  830. input[type="checkbox"], input[type="radio"] {width:13px; height:13px; margin-right:3px; position:relative; top:1px;}
  831. input[type=search]::-webkit-search-cancel-button{display:none;}
  832. input[type="reset"], input[type="button"], input[type="submit"], button {line-height:normal !important;}
  833. .input_wrap > .btn, .input_wrap + .btn, .form_field.form_full .btn {border-color: #222222;margin-left: 10px;float: left;display: inline;}
  834. .input_wrap > .btn:hover, .input_wrap > .btn:focus, .input_wrap > .btn:active, .input_wrap > .btn.active,
  835. .input_wrap + .btn:hover, .input_wrap + .btn:focus, .input_wrap + .btn:active, .input_wrap + .btn.active,
  836. .input_wrap > .open > .tgl_dropdown.btn , .input_wrap + .open > .tgl_dropdown.btn {border-color: rgb(34 34 34 / 0.6);}
  837. /* form */
  838. .form_wrap {}
  839. .form_wrap::after,.form_field:after,.input_wrap::after {content: ''; display: block; clear: both;}
  840. .form_full {}
  841. select,
  842. .form_full input[type="text"],
  843. .form_full input[type="select"],
  844. .form_full input[type="password"]{ width: 100%; }
  845. .form_full .input_wrap, .form_full.input_wrap{display: block;}
  846. .form_col_w {width: 100%;}
  847. .form_col_c {width: 530px; margin: 0 auto;}
  848. .form_field {width: 100%;margin-left: 0px !important;margin-right: 0px !important;position: relative;display: -webkit-box;display: -ms-flexbox;display: flex;}
  849. .input_wrap{position: relative;display: table;border-collapse: separate;/*width: 100%;*/}
  850. .input_wrap, .input_label {vertical-align: top;text-align: left;}
  851. .input_label { line-height: 3.0; font-size: 16px; font-weight: 300;}
  852. .input_label span[class*="t_"]{display: inline !important;text-indent: -10px;margin-left: -10px;}
  853. .input_wrap .form_control, .input_group_addon, .input_group_btn {display: table-cell;float: left;}
  854. .form_control{
  855. height: 50px;
  856. font-size: 16px;
  857. line-height: 18px;
  858. -moz-box-shadow: none;
  859. -webkit-box-shadow: none;
  860. box-shadow: none;
  861. -webkit-appearance: none;
  862. border: 1px solid #D5D5D5;
  863. position: relative;
  864. /* background: #F9F9F9; */
  865. }
  866. .form_control.err {border: 1px solid #fd4802 !important; background: #fff6f2;}
  867. /* .form_control.err .help_block{display: block;} */
  868. /* .form_control.usable{width: 80%; padding:7px 10px 7px 9px;} */
  869. .usable {display: none;}
  870. .form_control.usable + .usable:before {content:'사용가능'; position:absolute; top:50%; bottom: auto; right: 20px; left: auto; transform: translateY(-50%); padding-left:15px; background: url('/images/pc/ico_usable1.png') no-repeat 0 40%; color:#222; font-size:14px; font-weight:200; line-height:1;}
  871. .sr-only {
  872. position: absolute;
  873. width: 1px;
  874. height: 1px;
  875. padding: 0;
  876. margin: -1px;
  877. overflow: hidden;
  878. clip: rect(0,0,0,0);
  879. border: 0;
  880. }
  881. @media (min-width: 768px){
  882. .form_inline .form_field {
  883. width: auto;
  884. display: inline-block;
  885. margin-bottom: 0;
  886. vertical-align: middle;
  887. }
  888. .form_inline .form_control {
  889. width: auto;
  890. display: inline-block;
  891. width: auto;
  892. vertical-align: middle;
  893. }
  894. }
  895. /*input */
  896. .help_block {display: block; position:relative; margin-top:5px; margin-bottom:0px; width:100%; text-indent:10px; font-size:14px;}
  897. .help_block p[class*="t_"] span {display:inline-block;}
  898. /* 체크박스 */
  899. .form_field input[type="checkbox"]{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
  900. .form_field input[type="checkbox"] + label{ display:inline-block; position:relative; padding-left:26px; cursor:pointer; font-size: 14px; line-height: 1.5;font-weight: 300;letter-spacing: 0;}
  901. .form_field input[type="checkbox"] + label:before{
  902. content:''; position:absolute; left:0; top:3px; width:20px; height:20px; text-align:center; background:#fff; /*border:1px solid #ccc;*/ border-radius: 100%; box-sizing:border-box;
  903. background: url('/images/pc/ico_chk_rdi.png') no-repeat;
  904. background-position: 0px 0px;
  905. }
  906. .form_field input[type="checkbox"]:Disabled + label,
  907. .form_field input[type="radio"]:Disabled + label{cursor: default;opacity: .45;}
  908. .form_field input[type="checkbox"]:checked + label:after{
  909. content: ''; position:absolute; top:3px; left:0; width:20px; height:20px; background-color: #fd4800; border-radius: 100%; box-sizing:border-box;
  910. background: url('/images/pc/ico_chk_rdi.png') no-repeat;
  911. background-position: -20px 0px;
  912. }
  913. .form_field input[type="checkbox"]:Disabled + label:after{
  914. content: ''; position:absolute; top:3px; left:0; width:20px; height:20px; background-color: #fd4800; border-radius: 100%; box-sizing:border-box;
  915. background: url('/images/pc/ico_chk_rdi.png') no-repeat;
  916. background-position: -40px 0px;
  917. /* background-position: -42px -1px; */
  918. }
  919. /* 이미지 체크박스 */
  920. .chk_img+label span {border: 2px solid transparent; padding: 10px; box-sizing: border-box;}
  921. .chk_img:checked+label span {border: 2px solid #fd481a; padding: 10px; box-sizing: border-box;}
  922. /* 라디오 */
  923. .form_field input[type="radio"]{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
  924. .form_field input[type="radio"] + label{ display:inline-block; position:relative; padding-left:26px; cursor:pointer; font-size: 16px;line-height: 1.5;font-weight: 300;letter-spacing: 0;}
  925. .form_field input[type="radio"] + label:before{
  926. content:''; position:absolute; left:0; top:3px; width:20px; height:20px; text-align:center; background:#fff; /*border:1px solid #ccc;*/ border-radius: 100%; box-sizing:border-box;
  927. background: url('/images/pc/ico_chk_rdi.png') no-repeat;
  928. background-position: -60px 0px;
  929. }
  930. /* 보여질 부분의 스타일을 추가하면 된다. */
  931. .form_field input[type="radio"]:checked + label:after{
  932. content: ''; position:absolute; top:3px; left:0; width:20px; height:20px; background-color: #fd4800;
  933. background: url('/images/pc/ico_chk_rdi.png') no-repeat;
  934. background-position: -80px 0px;
  935. }
  936. .form_field input[type="radio"]:Disabled + label:after{
  937. content: ''; position:absolute; top:3px; left:0; width:20px; height:20px; background-color: #fd4800;
  938. background: url('/images/pc/ico_chk_rdi.png') no-repeat;
  939. background-position: -100px 0px;
  940. }
  941. /* input-File-Add */
  942. .imgUpload {position: relative;}
  943. .imgUpload::after {content: '';display: block;clear: both;}
  944. input[type="file"] {
  945. position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  946. overflow: hidden; clip:rect(0,0,0,0); border: 0;
  947. }
  948. .fileAdd{
  949. width: 150px;height:150px;border: 1px solid #dddddd;float: right;font-size: 0;
  950. background: url('/images/pc/ico_btn_file.png') no-repeat;background-position: 50% 50%;
  951. -webkit-appearance: none; -moz-appearance: none; appearance: none;cursor: pointer;
  952. }
  953. .fileAdds {
  954. padding: 14px 10px;font-size: 14px;color: #222222;border: 1px solid #dddddd;box-sizing: border-box;
  955. float: right; -webkit-appearance: none;-moz-appearance: none;appearance: none;cursor: pointer;
  956. }
  957. .pics {
  958. display: inline !important;float: left;margin: 0 10px 0 0;width: 150px;height:150px;
  959. border: 1px solid #dddddd;box-sizing: border-box;position: relative;
  960. }
  961. .pics.mov {position: relative;}
  962. .pics.mov::after {content:''; position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(221,221,221,1) url('/images/pc/ico_play.png') no-repeat 50% 50%; z-index:1;}
  963. .imgUpload .pics{float: right;}
  964. .picsThumbs {
  965. width: auto;height: auto;max-height: 148px;max-width: 148px;margin: auto 0;
  966. position: absolute;top: 50%;bottom: auto;left: 50%;right: 0;
  967. transform: translate(-50%, -50%);cursor: pointer;
  968. }
  969. .removes {
  970. display: block;width: 21px;height: 21px;font-size: 0;text-align: center;cursor: pointer;background-color: #666666;
  971. position: absolute;top: 0;bottom: auto;left: auto;right: 0; z-index: 2;
  972. }
  973. .removes::after {
  974. content: '';display: inline-block;width: 21px;height: 21px;
  975. background: url('/images/pc/ico_btn_cls1.png') no-repeat;background-position: 50% 50%;
  976. }
  977. /* select */
  978. .select {cursor: pointer;display: inline-block;position: relative;font-size: 16px;color: #222;width: 100%;height: 40px;}
  979. .select+.select{margin-left: 10px;}
  980. .select_hidden {display: none;visibility: hidden;padding-right: 10px;}
  981. .select_dress {
  982. position: absolute;top: 0;right: 0;bottom: 0;left: 0;padding: 8px 15px;
  983. background-color: #ffffff;border: 1px solid #dddddd;box-sizing: border-box;
  984. -moz-transition: all 0.05s ease-in;-o-transition: all 0.05s ease-in;
  985. -webkit-transition: all 0.05s ease-in;transition: all 0.05s ease-in;
  986. }
  987. .select_dress:after {
  988. content: "";width: 0;height: 0;box-sizing: border-box;position: absolute;top: 16px;right: 10px;
  989. border: 6px solid transparent; border-color: #888888 transparent transparent transparent;
  990. }
  991. .select_options {
  992. display: none;position: absolute;top: 100%;right: 0;left: 0;z-index: 2;
  993. margin: 0;padding: 0;list-style: none;background-color: #ffffff;
  994. box-sizing: border-box;border: 1px solid #222222;border-top: 0px solid #222222;
  995. }
  996. .select_options li {
  997. margin: 0;padding: 12px 0;text-indent: 15px;
  998. -moz-transition: all 0.08s ease-in;-o-transition: all 0.08s ease-in;
  999. -webkit-transition: all 0.08s ease-in;transition: all 0.08s ease-in;
  1000. }
  1001. .select_options li:hover{background-color: #dddddd;}
  1002. .select_options li[rel="hide"] {display: none;}
  1003. .select_options li.disabled {text-decoration:line-through; background:#f5f5f5; color:#bbb}
  1004. .select_options li.disabled:hover,
  1005. .select_options li.disabled:active {cursor:default;}
  1006. .select_dress:active, .select_dress.active {background-color: #ffffff;border: 1px solid #222222;border-bottom: 1px solid #dddddd;}
  1007. .select_dress:active:after, .select_dress.active:after {top: 9px;border-color: transparent transparent #888888 transparent;}
  1008. /* select-custom */
  1009. .select_custom {
  1010. cursor: pointer;
  1011. display: inline-block;
  1012. position: relative;
  1013. font-size: 16px;
  1014. color: #222222;
  1015. width: 100%;
  1016. height: 40px;
  1017. }
  1018. .select_custom .combo {
  1019. display: inline-block;
  1020. position: relative;
  1021. width: 100%;
  1022. }
  1023. .select_custom .combo .select {
  1024. position: relative;
  1025. box-sizing: border-box;
  1026. height: 42px;
  1027. line-height: 1;
  1028. cursor: pointer;
  1029. padding: 10px 15px;
  1030. /*background-color: #ffffff;*/
  1031. background-color: transparent;
  1032. border: 1px solid #dddddd;
  1033. }
  1034. .select_custom .combo .select:after {
  1035. /* content: '▼'; */
  1036. /* position: absolute; */
  1037. /* top: 50%; */
  1038. /* right: 10px; */
  1039. content: '';
  1040. width: 0;
  1041. height: 0;
  1042. box-sizing: border-box;
  1043. position: absolute;
  1044. /*top: 16px;*/
  1045. top: 50%;
  1046. transform: translateY(-50%);
  1047. margin-top:3px;
  1048. right: 10px;
  1049. border: 6px solid transparent;
  1050. border-color: #888888 transparent transparent transparent;
  1051. }
  1052. .select_custom.on .combo .select {
  1053. border: 1px solid #222;
  1054. }
  1055. .select_custom.on .combo .select:after {
  1056. /* content: '▲'; */
  1057. /* top: 9px; */
  1058. margin-top:-3px;
  1059. border-color: transparent transparent #888888 transparent;
  1060. }
  1061. .select_custom .combo .select > div {
  1062. position:relative;
  1063. z-index:-1;
  1064. }
  1065. .select_custom .combo .list {
  1066. display: none;
  1067. overflow-y: auto;
  1068. position: absolute;
  1069. top: 39px;
  1070. left: 0;
  1071. /*z-index: 10;*/
  1072. z-index: 3;
  1073. border: 1px solid #222;
  1074. border-top: 0;
  1075. box-sizing: border-box;
  1076. padding: 10px 0;
  1077. width: 100%;
  1078. max-height: 500px;
  1079. background-color: #fff;
  1080. }
  1081. .select_custom[disabled] {
  1082. pointer-events: none;
  1083. }
  1084. .select_custom[disabled] .select {
  1085. pointer-events: none;
  1086. color: #bbb;
  1087. background-color: #f5f5f5 !important;
  1088. }
  1089. .select_custom[disabled] .combo .select > div {
  1090. position:relative;
  1091. z-index:1;
  1092. }
  1093. .select_custom .combo .list>li[aria-disabled="true"] {
  1094. text-decoration: line-through;
  1095. /*background: #f5f5f5;*/
  1096. color: #bbb;
  1097. pointer-events: none;
  1098. }
  1099. .select_custom .combo .list>li[data-soldout="true"] {
  1100. pointer-events: none;
  1101. }
  1102. .select_custom .combo .list>li[data-soldout="true"]::after {
  1103. content: '품절';
  1104. display: inline-block;
  1105. font-size: 12px;
  1106. color: #bbbbbb;
  1107. position: absolute;
  1108. right: 10px;
  1109. top: 50%;
  1110. transform: translateY(-50%);
  1111. }
  1112. .select_custom .combo .list>li {
  1113. box-sizing: border-box;
  1114. padding: 0 10px;
  1115. width: 100%;
  1116. height: auto;
  1117. line-height: 35px;
  1118. cursor: pointer;
  1119. position: relative;
  1120. }
  1121. .select_custom .combo .list>li:hover {
  1122. /*background-color: #ccc;*/
  1123. background: #f5f5f5;
  1124. }
  1125. /* scrollbar custom */
  1126. .select_custom .combo .list::-webkit-scrollbar {width: 2px;height: 0;}
  1127. .select_custom .combo .list::-webkit-scrollbar-button:start:decrement,
  1128. .select_custom .combo .list::-webkit-scrollbar-button:end:increment {display: block;height: 0;}
  1129. .select_custom .combo .list::-webkit-scrollbar-track {background: rgba(0, 0, 0, .05);-webkit-border-radius: 10px;border-radius: 10px;}
  1130. .select_custom .combo .list::-webkit-scrollbar-thumb {height: 50px;width: 50px;background: rgba(0, 0, 0, .2);-webkit-border-radius: 10px;border-radius: 10px;}
  1131. .modal::-webkit-scrollbar,.pop_cont::-webkit-scrollbar {width: 2px;}
  1132. .modal::-webkit-scrollbar-thumb,.pop_cont::-webkit-scrollbar-thumb {background-color: #888888;border-radius: 0px;background-clip: padding-box;border: 0px solid transparent;}
  1133. .modal::-webkit-scrollbar-track, .pop_cont::-webkit-scrollbar-track{background-color: #dddddd;border-radius: 0px;}
  1134. .tbl.scroll_tbl .body_t::-webkit-scrollbar {width: 2px;height: 2px;}
  1135. .tbl.scroll_tbl .body_t::-webkit-scrollbar-thumb {background-color: #888888;border-radius: 0px;background-clip: padding-box;border: 0px solid transparent;}
  1136. .tbl.scroll_tbl .body_t::-webkit-scrollbar-track{background-color: #dddddd;border-radius: 0px;}
  1137. /*
  1138. .tbl.scroll_tbl .body_t::-webkit-scrollbar-button:start:decrement,
  1139. .tbl.scroll_tbl .body_t::-webkit-scrollbar-button:end:increment {display: block;height: 0;}
  1140. .tbl.scroll_tbl .body_t::-webkit-scrollbar-track {background: rgba(0, 0, 0, .05);-webkit-border-radius: 10px;border-radius: 10px;}
  1141. .tbl.scroll_tbl .body_t::-webkit-scrollbar-thumb {height: 50px;width: 50px;background: rgba(0, 0, 0, .2);-webkit-border-radius: 10px;border-radius: 10px;}
  1142. */
  1143. /* list-type */
  1144. /* description */
  1145. /* box-type */
  1146. /* guide_box */
  1147. /* sort */
  1148. /* datePicker */
  1149. /* jquery ui datepicker month year picker */
  1150. .ui-icon {display: none;}
  1151. .ui-datepicker { font-family:arial,verdana,sans-serif }
  1152. .ui-datepicker .ui-datepicker-header { height: 40px}
  1153. .ui-datepicker .ui-datepicker-select-month td ,
  1154. .ui-datepicker .ui-datepicker-select-year td {line-height: 3.4em;}
  1155. .ui-datepicker .ui-datepicker-select-month td span,
  1156. .ui-datepicker .ui-datepicker-select-month td a,
  1157. .ui-datepicker .ui-datepicker-select-year td span,
  1158. .ui-datepicker .ui-datepicker-select-year td a {font-size: 1.5em;text-align: center;}
  1159. .ui-datepicker .ui-datepicker-select-year td.outoffocus {opacity: 0.5;}
  1160. .ui-datepicker .ui-datepicker-prev { left: 15px;cursor: pointer;}
  1161. .ui-datepicker .ui-datepicker-next { right: 15px;cursor: pointer;}
  1162. .ui-state-hover,
  1163. .ui-widget-content .ui-state-hover,
  1164. .ui-widget-header .ui-state-hover,
  1165. .ui-state-focus,
  1166. .ui-widget-content .ui-state-focus,
  1167. .ui-widget-header .ui-state-focus,
  1168. .ui-button:hover, .ui-button:focus {border: 0;top:3px;}
  1169. .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{top:3px;}
  1170. .ui-datepicker-prev:hover, .ui-datepicker-next:hover {border-width:0;top:3px;}
  1171. .ui-datepicker-prev:before, .ui-datepicker-next:before {content: "";position:absolute;top:50%;left:50%;transform: translate3d(-50%,-50%,0);width: 8px;height: 16px;vertical-align: middle; background: url(/images/pc/slide_prev.png) no-repeat;background-size: 8px 16px;}
  1172. .ui-datepicker-next:before {background: url(/images/pc/slide_next.png) no-repeat;background-size: 8px 16px;}
  1173. .ui-widget.ui-widget-content { width: 300px;padding:5px 8px;border-radius: 0;}
  1174. .ui-state-default,
  1175. .ui-widget-content .ui-state-default,
  1176. .ui-widget-header .ui-state-default,
  1177. .ui-button,
  1178. html .ui-button.ui-state-disabled:hover,
  1179. html .ui-button.ui-state-disabled:active{border-color: #fff;background: #fff;font-size: 14px;padding: .6em 0.5em;color:#454545;text-align: center;}
  1180. .ui-datepicker-today a.ui-state-active, .ui-datepicker-current-day a.ui-state-active{ background-color:rgba(159,121,82,1); }
  1181. .ui-state-default:hover {background-color:rgba(159,121,82,0.6);color:#fff; }
  1182. .ui-widget-header {font-size: 18px;font-weight: normal;line-height: 40px;background: transparent;border-width: 0;border-radius: 0; }
  1183. .ui-datepicker th {border-bottom:1px #9f7952 solid;color:#9f7952; font-weight: normal;font-size: 14px }
  1184. /* tab */
  1185. .tab_group .tab_btn.rect{overflow:hidden}
  1186. .tab_group .tab_btn.rect button{float:left;height:50px;border:1px solid #dadada;border-left:0;background:#ffffff;color:#242424;text-align:center;box-sizing:border-box}
  1187. .tab_group .tab_btn.rect button:first-child{border-left:1px solid #dadada}
  1188. .tab_group .tab_btn.rect button.on{border:0;border-right:1px solid #dadada;background:#3d3d3d;color:#ffffff}
  1189. .tab_group .tab_btn.rect button:last-child.on{border-right:0}
  1190. .tab_group .tab_box{display:none}
  1191. .tab_group .tab_box.on{display:block}
  1192. /* HEAD,FOOT Layput */
  1193. #header,#footer {width: auto;}
  1194. [class*="common_footer"] {/*max-width: 1780px;*/min-width: 1380px;margin: 0 auto;/*padding: 0 10px;*/}
  1195. /* guide page hd */
  1196. .quick_menu_group{display:inline-table;width:100%;height:35px;border-top:2px solid #fd4802;background:#222222;}
  1197. .quick_menu_group .area{max-width: 1780px;padding: 0 10px;margin:0 auto;}
  1198. .quick_menu_group .area > div{display:inline-block}
  1199. .quick_menu_group .area > div span{}
  1200. .quick_menu_group .inr{float:right}
  1201. .quick_menu_group a{float:left;height:35px;padding:8px 4px 0;box-sizing:border-box;color:#888888;}
  1202. .quick_menu_group .area > div:first-child span{display:inline-block;position:relative}
  1203. .quick_menu_group .area > div:first-child a{margin:0 10px}
  1204. .quick_menu_group .area > div:first-child span:first-child a{margin-left:0}
  1205. .quick_menu_group .area > div:first-child span:first-child a:after{display:none}
  1206. .quick_menu_group .area > div:first-child span a:after{position:absolute;top:13px;left:0;width:1px;height:13px;background:#959596;content:''}
  1207. .quick_menu_group .inr a{margin-left:16px;color:#eeeeee;}
  1208. /* ie */
  1209. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  1210. body,input,textarea,select,button {font-size:14px; font-family:"LATO", "Noto Sans kr", sans-serif;}
  1211. h1,h2,h3,h4,h5,h6 {font-family:"LATO", "Noto Sans kr", sans-serif;}
  1212. .circle_count{font-size:10px;}
  1213. .product .history_wrap div ul li a, .contactUs .history_wrap div ul li a {
  1214. margin-top: 26px !important;
  1215. line-height: 0.6 !important;
  1216. }
  1217. }
  1218. .pageNav .disabled a {background-position: 0 9px !important; }
  1219. .pageNav .disabled.prev a {background-position: -23px 9px !important; }
  1220. .pageNav .next a,.pageNav > li:last-child a {background-position:-64px 9px !important; }
  1221. .pageNav .next a {background-position: -47px 9px !important; }
  1222. .filter_content .sort#tap01 ul li.noDepth.on > a::after {top:8px !important;}
  1223. /* 제거예정 */
  1224. /*
  1225. .gnb .nav .ico_menu_new{position:absolute;top:6px;right:4px}
  1226. .gnb .nav > .all_menu.on{border-top:1px solid #fd4802;border-right:1px solid #fd4802;border-left:1px solid #fd4802}
  1227. .gnb .nav > .all_menu.on .depth_menu{display:block}*/
  1228. /*.top_banner{height:85px}
  1229. .top_banner > div{width:1070px;margin:0 auto}
  1230. .top_banner > div a{float:left;position:relative;width:33.3333%;height:85px;box-sizing:border-box}
  1231. .top_banner > div a .banner_img{float:left;width:130px;vertical-align:top}
  1232. .top_banner > div a .banner_img2{float:left;width:130px;vertical-align:top}
  1233. .top_banner > div a .text{float:left;width:216px}
  1234. .top_banner > div a em,
  1235. .top_banner > div a strong{display:block;padding-left:20px;color:#000;line-height:1em}
  1236. .top_banner > div a em{margin-top:27px;font-size:13px}
  1237. .top_banner > div a strong{margin-top:6px;font-size:15px}
  1238. /*.all_menu > .area{display:none;position:absolute;top:43px;width:217px;height:533px;left:-1px;border:1px solid #fd4802;background:#fff;z-index:99999}
  1239. .all_menu.on > .area{display:block}
  1240. .all_menu > .area > ul{padding:13px 11px}
  1241. .all_menu > .area > ul > li a{display:block;padding:7px 11px 6px;cursor:pointer}
  1242. .all_menu > .area > ul > li > a:hover,
  1243. .all_menu > .area > ul > li.on > a{background:#fd4802;color:#fff !important}
  1244. .all_menu > .area > ul > li > .color-blue:hover,
  1245. .all_menu > .area > ul > li.on > .color-blue{background:#445694;color:#fff !important}
  1246. .all_menu > .area > ul > li.link > a{color:#445694}
  1247. .all_menu > .area > ul > li > a{font-size:15px;color:#333}
  1248. .all_menu > .area > ul > li.on .depth_menu{display:block}*/
  1249. /* .common_header .search .search_input{width:calc(100% - 30px); padding:4px 0px 5px 0px;border:0;outline:none;font-size:18px;color:rgb(255 255 255 / 0.6);background: transparent; font-weight:200;}
  1250. .common_header .search .search_input::placeholder {color: #bcbcbc;}
  1251. .common_header .search button.close{display:none;float:none;position:absolute;top:4px;right:58px;width:19px;height:19px;margin:0}
  1252. .common_header .search .keyword{color:#fd4802}
  1253. .common_header .search_group,
  1254. .common_header .my_search_group{display:none;position:absolute;top:100%;right:0;left:0;border:1px solid #221e1f;background:#fff;z-index:99999}
  1255. .common_header .search_group.on,
  1256. .common_header .my_search_group.on{display:block}
  1257. .common_header .search_group.on ~ .close,
  1258. .common_header .my_search_group.on ~ .close{display:block}
  1259. .common_header .search_list > div{padding:26px 0 22px;border-top:1px solid #d0d0d0;letter-spacing:-1px}
  1260. .common_header .search_list > div ul{margin-top:-5px}
  1261. .common_header .search_list > div p,
  1262. .common_header .search_list > div li{padding:0 23px 0;box-sizing:border-box}
  1263. .common_header .search_list > div a{display:block;margin-top:5px;padding:3px 0}
  1264. .common_header .search_list > div a:hover{background:#F5F5F5}
  1265. .common_header .search_list > div:first-child{overflow:hidden;padding:28px 0 22px;border:0;font-size:14px;color:#221e1f}
  1266. .common_header .search_list > div:first-child li{float:left;width:50%}
  1267. .common_header .search_list > div p{margin-bottom:14px;font-weight:bold;font-size:15px}
  1268. .common_header .search_list #ark_content_list .snr{font-weight:nomal; padding: 0 23px 0;}
  1269. .common_header .search_list .category{font-size:13px}
  1270. .common_header div.close{padding:0;border-top:1px solid #d0d0d0;background:#ebebeb;text-align:right;clear:both}
  1271. .common_header div.close a{display:inline-block;margin:9px 0 8px 0;padding:0}
  1272. .common_header div.close a:hover{background:none}
  1273. .common_header div.close i{margin:4px 10px 0 8px;vertical-align:top}
  1274. .common_header .my_search_group > .area{overflow:hidden}
  1275. .common_header .hot_search_list,
  1276. .common_header .my_search_list{display:table-cell;position:relative;width:50%;padding-bottom:50px}
  1277. .common_header .my_search_list > button{position:absolute;right:12px;bottom:14px;font-weight:bold;font-size:13px;color:#a29b9d}
  1278. .common_header .my_search_list > button i{margin-left:8px}
  1279. .common_header .hot_search_list{border-right:1px solid #d0d0d0;box-sizing:border-box}
  1280. .common_header .my_search_group > .area{display:table;width:100%}
  1281. .common_header .my_search_group > .area p{padding:30px 0 20px 24px;font-weight:bold;font-size:15px}
  1282. .common_header .my_search_group > .area li{position:relative}
  1283. .common_header .my_search_group > .area li a{display:block;padding:5px 0 5px 27px;color:#221e1f}
  1284. .common_header .my_search_group > .area li a + a{position:absolute;top:10px;right:18px;height:13px;padding:0;z-index:1}
  1285. .common_header .my_search_group > .area li a span{display:inline-block;padding-right:5px}
  1286. .common_header .premium_band{border-top:1px solid #efedf0;background:url(/images/pc/common/@sample_premium_band.jpg) repeat;text-align:center; height:110px}
  1287. .common_header .premium_band div{width:1070px;margin:0 auto;padding:15px 0 0 0;}
  1288. .common_header .premium_menu{position:relative}
  1289. .common_header .premium_menu > ul{width:1070px;height:71px;margin:0 auto}
  1290. .common_header .premium_menu > ul > li{display:inline-block;position:relative;width:177px}
  1291. .common_header .premium_menu > ul > li + li{margin-left:-4px}
  1292. .common_header .premium_menu > ul > li > a{display:block;height:71px;font-size:16px;color:#000;line-height:71px;text-align:center}
  1293. .common_header .premium_menu div{display:none;position:absolute;top:100%;right:0;left:0;padding:20px 0 26px;z-index:11}
  1294. .common_header .premium_menu div ul{overflow:hidden;border-right:1px solid #cdcdcd}
  1295. .common_header .premium_menu div ul li + li{margin-top:10px}
  1296. .common_header .premium_menu div a{display:inline-block;overflow:hidden;max-width:100%;height:20px;margin:0 10px;padding:0 3px 6px;font-size:14px;color:#3d3d3d;white-space:nowrap;text-overflow:ellipsis;line-height:1em;box-sizing:border-box}
  1297. .common_header .premium_menu div a:hover{border-bottom:1px solid #000}
  1298. .common_header .premium_menu > ul > li:last-child div ul{border:0}
  1299. .common_header .premium_menu .menu_bg{display:none;position:absolute;top:72px;right:0;left:0;height:332px;border-bottom:1px solid #e0e1e5;background:#fff;z-index:10}*/
  1300. /* .all_menu.on .depth_menu{display:block;}
  1301. .all_menu .depth_menu{display:none;position:absolute;top:190px;left:0;width:100%;min-width:1350px;height:535px;padding:23px 21px;border:1px solid #fd4802;background:#fff;box-sizing:border-box;clear:both;z-index: 200;}
  1302. .all_menu .depth_menu .step1{position: relative;float: left;top: 0px;box-sizing: border-box;width: 300px;height: 600px;padding: 4px 0px 0px 48px;z-index: 1;}
  1303. .all_menu .depth_menu .step2{position: relative;float: left;width: calc(100% - 300px);height: 600px;box-sizing: border-box;padding-left: 30px;}
  1304. .all_menu .depth_menu.advertisement{overflow:hidden;width:595px}
  1305. .all_menu .depth_menu.advertisement > div{float:left;width:337px}
  1306. .all_menu .depth_menu.advertisement > div:first-child{width:197px;margin-right:17px}
  1307. .all_menu .depth_menu.advertisement .area ul{margin-top:-29px}
  1308. .all_menu .depth_menu.advertisement .area li{margin-top:26px}
  1309. .all_menu .depth_menu.advertisement .area img{display:block;width:100%}
  1310. .all_menu .depth_menu.advertisement .area strong,
  1311. .all_menu .depth_menu.advertisement .area span{display:block;padding:0 10px;font-size:16px}
  1312. .all_menu .depth_menu.advertisement .area strong{margin-top:10px}
  1313. .all_menu .depth_menu.advertisement .area span{color:#777}
  1314. .all_menu .depth_menu.size_mideum{width:275px}
  1315. .all_menu .depth_menu.thumbnail_box{overflow:hidden;width:715px;height:535px}
  1316. .all_menu .depth_menu.thumbnail_box ul{margin-top:-31px}
  1317. .all_menu .depth_menu.thumbnail_box li{float:left;width:14.2%}
  1318. .all_menu .depth_menu.thumbnail_box a{margin:0 !important}
  1319. .all_menu .depth_menu.thumbnail_box img{display:block;width:68px;height:68px;margin:31px auto 0;border:transparent;border-radius:50%}
  1320. .all_menu .depth_menu.thumbnail_box span{display:block;margin-top:10px;text-align:center}
  1321. .all_menu .depth_menu p{margin-bottom:23px;font-size:22px;letter-spacing:-1px}
  1322. .all_menu .depth_menu p > a{display:inline-block !important;position:relative;width:59px;height:18px;margin:4px 0 -2px 4px;padding:3px 5px 0 !important;background:#333;font-size:11px;color:#fff;line-height:1em;box-sizing:border-box}
  1323. .all_menu .depth_menu p .ico_arr_rgt{position:absolute;top:5px;right:4px}
  1324. .all_menu .depth_menu ul + ul{margin-top:8px;border-top:1px solid #eee}
  1325. .all_menu .depth_menu ul li:first-child a{margin-top:7px}
  1326. .all_menu .depth_menu a{padding:3px 0 2px !important;font-size:14px}
  1327. .all_menu .depth_menu a:hover {font-weight: bold; color: #fd4802;}
  1328. .all_menu .depth_menu ul:nth-child(3) a:hover {font-weight: bold; color: #445694;}
  1329. .all_menu ul li:nth-last-child(2) .depth_menu a:hover {font-weight: bold; color: #445694;}
  1330. .all_menu ul li:nth-last-child(4) .depth_menu ul:nth-child(3) a:hover {font-weight: bold; color: #fd4802;}*/
  1331. /* slide custom */
  1332. .slick-dots {position: absolute;bottom: 25px;display: block;width: 100%;padding: 0;margin: 0;list-style: none;text-align: center;}
  1333. .slick-dots li {position: relative;display: inline-block;width: 10px;height: 10px;margin: 0 5px;padding: 0;cursor: pointer;}
  1334. .slick-dots li.slick-active button{background: #ff8c12;}
  1335. .slick-dots li button {font-size: 0;line-height: 0;display: block;width: 10px;height: 10px;padding: 5px;cursor: pointer; color: transparent;border: 0;outline: none;background: transparent; background: #888888; border-radius: 100%;}
  1336. /* End of slide custom */
  1337. /* Mesage, Toast, Alert Custom */
  1338. .alert {padding: 15px;border: 1px solid transparent; border-radius: 4px;margin-bottom: 10px;line-height: 21px; background-color: #dddddd;color: #666666;border-color: #dddddd;}
  1339. button.alertCls {-webkit-appearance: none;padding: 0;cursor: pointer;background: 0 0;border: 0;}
  1340. .alertCls {float: right;font-size: 21px;font-weight: 700;line-height: 1;color: #000;text-shadow: 0 1px 0 #fff;filter: alpha(opacity=20);opacity: .2;}
  1341. .alertCls:hover, .alertCls:focus {color: #000;text-decoration: none;cursor: pointer;filter: alpha(opacity=50);opacity: .5;}
  1342. /* ALERT, CONFIRM Plugin custom */
  1343. .dialog-mobile-bg {
  1344. position: fixed;
  1345. top: 0;
  1346. left: 0;
  1347. /*z-index: 19;*/
  1348. z-index:300;
  1349. width: 100%;
  1350. height: 100%;
  1351. background-color: rgba(0, 0, 0, 0.3);
  1352. -ms-transform: translate3d(0, 0, 0);
  1353. -webkit-transform: translate3d(0, 0, 0);
  1354. transform: translate3d(0, 0, 0);
  1355. }
  1356. /*alert confirm*/
  1357. .dialog-mobile {
  1358. padding: 0 40px 40px 40px;
  1359. text-align:center;
  1360. position: fixed;
  1361. top: 50%;
  1362. left: 0;
  1363. /*z-index: 20;*/
  1364. z-index:301;
  1365. min-width:400px;
  1366. background-color: #FFFFFF;
  1367. border-radius: 0px;
  1368. -ms-transform: translate3d(0, 0, 0);
  1369. -webkit-transform: translate3d(0, 0, 0);
  1370. transform: translate3d(0, 0, 0);
  1371. }
  1372. .dialog-mobile .dialog-title {
  1373. padding: 0.8em 1em 0.5em;
  1374. text-align: center;
  1375. color: #333333;
  1376. font-size: 18px;
  1377. font-weight: 500;
  1378. border-radius: 5px 5px 0 0;
  1379. }
  1380. .dialog-mobile .dialog-content {
  1381. position: relative;
  1382. padding:50px 0 40px 0;
  1383. line-height: 2em;
  1384. text-align: left;
  1385. color: #000;
  1386. font-size:15px;
  1387. text-align:center;
  1388. }
  1389. .dialog-mobile .dialog-content em {
  1390. color:#df6400
  1391. }
  1392. .dialog-mobile .dialog-button,
  1393. .dialog-mobile .dialog-sure-button,
  1394. .dialog-mobile .dialog-cancel-button {
  1395. display:inline-block;
  1396. position: relative;
  1397. margin:0 5px;
  1398. padding:0 30px;
  1399. min-width: 70px;
  1400. height: 38px;
  1401. line-height: 38px;
  1402. text-align: center;
  1403. font-size:14px;
  1404. cursor:pointer;
  1405. border-radius:0px;
  1406. }
  1407. .dialog-mobile .dialog-button{
  1408. color: #fff;
  1409. background:#000;
  1410. border:1px solid #000;
  1411. min-width:100px;
  1412. }
  1413. .dialog-mobile .dialog-cancel-button {
  1414. color: #000;
  1415. background: #fff;
  1416. border:1px solid #999;
  1417. min-width:100px;
  1418. }
  1419. .dialog-mobile .dialog-sure-button{
  1420. color: #fff;
  1421. background:#000;
  1422. border:1px solid #000;
  1423. min-width:100px;
  1424. }
  1425. .dialog-mobile button[i='1']{
  1426. color: #000 !important;
  1427. background:#fff !important;
  1428. border:1px solid #777;
  1429. min-width:100px;
  1430. }
  1431. /* 닫기 아이콘 */
  1432. .dialog-close-btn {
  1433. display: none;
  1434. position:absolute;
  1435. top:0;
  1436. right:0;
  1437. padding:20px;
  1438. width: 17px;
  1439. height: 17px;
  1440. cursor:pointer;
  1441. background:url('/images/pc/btn_top_close.png') no-repeat 50% 50%;
  1442. }
  1443. /*bottom dialog*/
  1444. .dialog-mobile-bottom {
  1445. position: fixed;
  1446. left: 0;
  1447. bottom: 0;
  1448. z-index: 10001;
  1449. width: 100%;
  1450. color: #333333;
  1451. background-color: #EEEEEE;
  1452. }
  1453. .dialog-mobile-bottom .bottom-btn-item {
  1454. text-align: center;
  1455. }
  1456. .bottom-btn-item .dialog-item-btn {
  1457. background: #FFFFFF;
  1458. padding: 0.5em 0;
  1459. border-bottom: 1px solid #EEEEEE;
  1460. }
  1461. .bottom-btn-item .dialog-item-btn:last-child {
  1462. border-bottom: none;
  1463. }
  1464. .dialog-mobile-bottom .dialog-cancel-btn {
  1465. margin-top: 0.6em;
  1466. text-align: center;
  1467. background: #FFFFFF;
  1468. padding: 0.5em 0;
  1469. }
  1470. /*toast*/
  1471. .dialog-mobile-toast {
  1472. position: fixed;
  1473. bottom: 5em;
  1474. }
  1475. .dialog-mobile-toast .toast-content {
  1476. padding: 0.5em 1em;
  1477. color: #FFFFFF;
  1478. border-radius: 2px;
  1479. background-color: #333333;
  1480. }
  1481. /*loading*/
  1482. .mobile-loading-bg {
  1483. position: fixed;
  1484. top: 0;
  1485. left: 0;
  1486. z-index: 10000;
  1487. width: 100%;
  1488. height: 100%;
  1489. background-color: rgba(0, 0, 0, 0.3);
  1490. -webkit-transform: translate3d(0, 0, 0);
  1491. transform: translate3d(0, 0, 0);
  1492. }
  1493. .mobile-loading {
  1494. position: fixed;
  1495. top: 0;
  1496. left: 0;
  1497. z-index: 10001;
  1498. min-width: 2em;
  1499. min-height: 2em;
  1500. padding: 0.8em 1.6em;
  1501. text-align: center;
  1502. border-radius: 2px;
  1503. color: #FFFFF0;
  1504. background-color: #0A0A0A;
  1505. -webkit-transform: translate3d(0, 0, 0);
  1506. transform: translate3d(0, 0, 0);
  1507. }
  1508. /*animation*/
  1509. .animation-zoom-in, .animation-zoom-out,
  1510. .animation-bottom-in, .animation-bottom-out,
  1511. .animation-bg-fadeIn {
  1512. -webkit-animation-duration: 0.3s;
  1513. -webkit-animation-fill-mode: both;
  1514. animation-duration: 0.3s;
  1515. animation-fill-mode: both;
  1516. }
  1517. .animation-fade-in, .animation-fade-out {
  1518. -webkit-animation-duration: 1s;
  1519. -webkit-animation-timing-function: ease-out;
  1520. -webkit-animation-fill-mode: both;
  1521. animation-duration: 1s;
  1522. animation-timing-function: ease-out;
  1523. animation-fill-mode: both;
  1524. }
  1525. .animation-zoom-in {
  1526. -webkit-animation-name: zoomIn;
  1527. animation-name: zoomIn;
  1528. }
  1529. .animation-zoom-out {
  1530. -webkit-animation-name: zoomOut;
  1531. animation-name: zoomOut;
  1532. }
  1533. .animation-fade-in {
  1534. -webkit-animation-name: fadeIn;
  1535. animation-name: fadeIn;
  1536. }
  1537. .animation-fade-out {
  1538. -webkit-animation-name: fadeOut;
  1539. animation-name: fadeOut;
  1540. }
  1541. .animation-bottom-in {
  1542. -webkit-animation-name: bottomIn;
  1543. animation-name: bottomIn;
  1544. }
  1545. .animation-bottom-out {
  1546. -webkit-animation-name: bottomOut;
  1547. animation-name: bottomOut;
  1548. }
  1549. .animation-bg-fadeIn {
  1550. -webkit-animation-name: fadeIn;
  1551. animation-name: fadeIn;
  1552. }
  1553. @-webkit-keyframes zoomIn {
  1554. from{
  1555. opacity: 0;
  1556. -webkit-transform: scale(0, 0);
  1557. }
  1558. to{
  1559. opacity: 1;
  1560. -webkit-transform: scale(1, 1);
  1561. }
  1562. }
  1563. @-webkit-keyframes zoomOut {
  1564. from{
  1565. opacity: 1;
  1566. -webkit-transform: scale(1, 1);
  1567. }
  1568. 90%{
  1569. -webkit-transform: scale(0.3, 0.3);
  1570. }
  1571. to{
  1572. opacity: 0;
  1573. -webkit-transform: scale(0, 0);
  1574. }
  1575. }
  1576. @keyframes zoomIn {
  1577. from{
  1578. opacity: 0;
  1579. transform: scale(0, 0);
  1580. }
  1581. to{
  1582. opacity: 1;
  1583. transform: scale(1, 1);
  1584. }
  1585. }
  1586. @keyframes zoomOut {
  1587. from{
  1588. opacity: 1;
  1589. transform: scale(1, 1);
  1590. }
  1591. 90%{
  1592. transform: scale(0.3, 0.3);
  1593. }
  1594. to{
  1595. opacity: 0;
  1596. transform: scale(0, 0);
  1597. }
  1598. }
  1599. @-webkit-keyframes fadeIn {
  1600. from{
  1601. opacity: 0;
  1602. }
  1603. to{
  1604. opacity: 1;
  1605. }
  1606. }
  1607. @-webkit-keyframes fadeOut {
  1608. from{
  1609. opacity: 1;
  1610. }
  1611. 30%{
  1612. opacity: 0.3;
  1613. }
  1614. to{
  1615. opacity: 0;
  1616. }
  1617. }
  1618. @keyframes fadeIn {
  1619. from{
  1620. opacity: 0;
  1621. }
  1622. to{
  1623. opacity: 1;
  1624. }
  1625. }
  1626. @keyframes fadeOut {
  1627. from{
  1628. opacity: 1;
  1629. }
  1630. 30%{
  1631. opacity: 0.3;
  1632. }
  1633. to{
  1634. opacity: 0;
  1635. }
  1636. }
  1637. @-webkit-keyframes bottomIn {
  1638. from{
  1639. bottom: -1000px;
  1640. }
  1641. to{
  1642. bottom: 0;
  1643. }
  1644. }
  1645. @-webkit-keyframes bottomOut {
  1646. from{
  1647. bottom: 0;
  1648. }
  1649. to{
  1650. bottom: -1000px;
  1651. }
  1652. }
  1653. @keyframes bottomIn {
  1654. from{
  1655. bottom: -1000px;
  1656. }
  1657. to{
  1658. bottom: 0;
  1659. }
  1660. }
  1661. @keyframes bottomOut {
  1662. from{
  1663. bottom: 0;
  1664. }
  1665. to{
  1666. bottom: -1000px;
  1667. }
  1668. }
  1669. /* modal popup */
  1670. .blocker{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:auto;/*z-index:999999;*/ z-index:200; padding:0px;box-sizing:border-box;background-color:#000;background-color:rgba(0,0,0,0.75);text-align:center;}
  1671. .blocker:before{content:"";display:inline-block;height:100%;vertical-align:middle;margin-right:-0.05em;}
  1672. .blocker.behind{background-color:transparent;}
  1673. .modal{
  1674. display:none;
  1675. vertical-align:middle;position:relative;z-index:2;max-width:500px;box-sizing:border-box;width:90%;background:#fff;/*padding:40px 37px;*/ padding:60px; text-align:left;
  1676. -webkit-box-shadow:0 0 10px #000;-moz-box-shadow:0 0 10px #000;-o-box-shadow:0 0 10px #000;-ms-box-shadow:0 0 10px #000;box-shadow:0 0 10px #000;
  1677. }
  1678. .modal a.close-modal{
  1679. position: absolute;top:27px;right:30px;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==');
  1680. z-index: 98; background-image: url('/images/pc/ico_pop_cls.png');
  1681. }
  1682. .modal .modal-header{margin-top: 0;margin-bottom: 40px;}
  1683. .modal .modal-header > *{font-size: 16px;font-weight: 400;}
  1684. .modal .modal-header .modal-title {margin-top:0; color:#222; font-size:24px; font-weight:500;}
  1685. .modal .modal-body{box-sizing: border-box;}
  1686. .modal .modal-body .pop_cont{overflow: auto;max-height: 450px; font-size: 16px; line-height: 1.62; font-weight: 200; color:#666;}
  1687. .modal .modal-body .fx_r {position: fixed;right: 0;top: auto;bottom: auto;left: auto;}
  1688. .modal .modal-footer{margin-top: 60px;}
  1689. .modal.pop_full {width: 100%; max-width: 100%; height: 100%; padding: 0; overflow: auto; position: relative;}
  1690. .modal.pop_full .modal-header { width: 100%;height: 160px;box-sizing: border-box;border-bottom: 1px solid #dddddd;z-index:98;position: fixed;top: 0;left: 0;bottom: auto;right: auto;background: #fff;}
  1691. .modal.pop_full .modal-header .modal-title {padding: 40px 0 0 37px;}
  1692. .modal.pop_full .modal-body{padding-top: 160px;}
  1693. .modal.pop_full .modal-body .pop_cont{max-height: 100%;}
  1694. .modal.pop_full a.close-modal {position: fixed;}
  1695. .modal.pop_fullCol { width: 100%; max-width: 100%;padding: 0; position: relative;}
  1696. .modal.pop_fullCol .modal-header { width: 100%;height: 160px;box-sizing: border-box;border-bottom: 1px solid #dddddd;z-index:98;position: fixed;top: 0;left: 0;bottom: auto;right: auto;background: #fff;}
  1697. .modal.pop_fullCol .modal-header .modal-title {padding: 40px 0 0 37px;}
  1698. .modal.pop_fullCol a.close-modal {position: fixed;}
  1699. .modal.pop_fullCol .modal-body {padding-top: 160px;}
  1700. .modal.pop_fullCol .modal-body .pop_cont{max-height: 100%;}
  1701. .modal.pop_fullCol .modal-body [class^="ui_col_"]{margin: 0;}
  1702. /* .modal, .pop_cont {scrollbar-width: thin; scrollbar-color: #888888 #dddddd;} 파이어폭스 스크롤바 css */
  1703. .modal-spinner{display:none;position:fixed;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);padding:12px 16px;border-radius:5px;background-color:#111;height:20px}
  1704. .modal-spinner>div{border-radius:100px;background-color:#fff;height:20px;width:2px;margin:0 1px;display:inline-block;-webkit-animation:sk-stretchdelay 1.2s infinite ease-in-out;animation:sk-stretchdelay 1.2s infinite ease-in-out}
  1705. .modal-spinner .rect2{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}
  1706. .modal-spinner .rect3{-webkit-animation-delay:-1.0s;animation-delay:-1.0s}
  1707. .modal-spinner .rect4{-webkit-animation-delay:-0.9s;animation-delay:-0.9s}
  1708. @-webkit-keyframes sk-stretchdelay{
  1709. 0%,40%,100%{
  1710. -webkit-transform:scaleY(0.5)
  1711. }
  1712. 20%{
  1713. -webkit-transform:scaleY(1.0)
  1714. }
  1715. }
  1716. @keyframes sk-stretchdelay{
  1717. 0%,40%,100%{
  1718. transform:scaleY(0.5);-webkit-transform:scaleY(0.5)
  1719. }
  1720. 20%{
  1721. transform:scaleY(1.0);-webkit-transform:scaleY(1.0)
  1722. }
  1723. }
  1724. /* popover style Tooltip */
  1725. .tip_tit{background-color: transparent;border-radius: 100%;border: 1px solid #888888;color: #fd4802;cursor: default;display: inline-block;font-size: 12px;font-weight: 600;line-height: 1.3;position: relative;text-align: center;width: 15px;height: 15px;}
  1726. .tip_wrap {position: relative;display: inline-block;}
  1727. .tip_contents {width: auto;opacity: 0;visibility: hidden;position: absolute;transform: scale(.6) translateX(-45%) translateY(90%);color:#888888;border: 1px solid #ffe4d9;background-color: #fff6f2;padding: 15px;}
  1728. .tip_contents:before {position: absolute;z-index: -1;content: "";right: calc(50% - 10px);top: -8px;border-style: solid;border-width: 0 1.0rem 1.0rem 1.0rem;border-color: transparent transparent #fff6f2 transparent;transition-duration: 0.3s;transition-property: transform;}
  1729. .tip_contents:after, .tip_contents:before {transform: scale(1) translateY(0);}
  1730. .tip_contents:after, .tip_contents:before {bottom: 100%;left: 50%;border: solid transparent;content: "";height: 0;width: 0;position: absolute;pointer-events: none;}
  1731. .tip_contents:after {border-color: rgba(255, 246, 242, 0);border-bottom-color: #fff6f2;border-width: 10px;margin-left: -10px;}
  1732. .tip_contents:before {border-color: rgba(255, 228, 217, 0);border-bottom-color: #ffe4d9;border-width: 11px;margin-left: -11px;top: -22px;}
  1733. .tip_wrap:hover .tip_contents {z-index: 10;opacity: 1;visibility: visible;transform: translate(-45%, 1.0rem);transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);}
  1734. .tip_txt {text-align: center;}