common.css 80 KB

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