common_m.css 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046
  1. @charset "UTF-8";
  2. /* fonts */
  3. @font-face {
  4. font-family: 'Noto Sans KR';
  5. font-style: normal;
  6. font-weight: 100;
  7. src: url("/ux/fonts/NotoSansKR-Thin.otf") format('opentype');
  8. }
  9. @font-face {
  10. font-family: 'Noto Sans KR';
  11. font-style: normal;
  12. font-weight: 200;
  13. src: url("/ux/fonts/NotoSansKR-Light.otf") format('opentype');
  14. }
  15. @font-face {
  16. font-family: 'Noto Sans KR';
  17. font-style: normal;
  18. font-weight: 300;
  19. src: url("/ux/fonts/NotoSansKR-Regular.otf") format('opentype');
  20. }
  21. @font-face {
  22. font-family: 'Noto Sans KR';
  23. font-style: normal;
  24. font-weight: 500;
  25. src: url("/ux/fonts/NotoSansKR-Medium.otf") format('opentype');
  26. }
  27. @font-face {
  28. font-family: 'Noto Sans KR';
  29. font-style: normal;
  30. font-weight: 600;
  31. src: url("/ux/fonts/NotoSansKR-Bold.otf") format('opentype');
  32. }
  33. @font-face {
  34. font-family: 'Noto Sans KR';
  35. font-style: normal;
  36. font-weight: 900;
  37. src: url("/ux/fonts/NotoSansKR-Black.otf") format('opentype');
  38. }
  39. /* lato */
  40. @font-face {
  41. font-family: 'LATO';
  42. src:
  43. url("/ux/fonts/Lato-Light.eot") format('eot'), url("/ux/fonts/Lato-Light.woff") format('woff'), url("/ux/fonts/Lato-Light.ttf") format('ttf');
  44. font-weight: 200;
  45. font-style: normal;
  46. }
  47. @font-face {
  48. font-family: 'LATO';
  49. src:
  50. url("/ux/fonts/Lato-Regular.eot") format('eot'), url("/ux/fonts/Lato-Regular.woff") format('woff'), url("/ux/fonts/Lato-Regular.ttf") format('ttf');
  51. font-weight: 300;
  52. font-style: normal;
  53. }
  54. @font-face {
  55. font-family: 'LATO';
  56. src:
  57. url("/ux/fonts/Lato-Medium.eot") format('eot'), url("/ux/fonts/Lato-Medium.woff") format('woff'), url("/ux/fonts/Lato-Medium.ttf") format('ttf');
  58. font-weight: 500;
  59. font-style: normal;
  60. }
  61. @font-face {
  62. font-family: 'LATO';
  63. src:
  64. url("/ux/fonts/Lato-Semibold.eot") format('eot'), url("/ux/fonts/Lato-Semibold.woff") format('woff'), url("/ux/fonts/Lato-Semibold.ttf") format('ttf');
  65. font-weight: 600;
  66. font-style: normal;
  67. }
  68. #load {width: 100%;height: 100%;top: 0;left: 0;position: fixed;display: block;text-align: center;opacity: 0.8;background: #ffffff;background-image: url('/images/mo/movloading.gif');background-repeat: no-repeat;background-position: 50% 50%;background-size: 3.7rem 2.4rem;z-index: 99999;}
  69. /* Basic setting */
  70. html {-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;}
  71. body {margin: 0;}
  72. article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,address {display: block;}
  73. address {font-style: normal;}
  74. a {color: inherit;background-color: transparent;text-decoration: none;}
  75. a:active,a:hover {outline: 0;}
  76. h1,h2,h3,h4,h5 {margin: 0;font-weight: 400;}
  77. h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {color: #222222;padding: 0px;margin: 0px;line-height: 1;}
  78. img {border: 0;max-width: 100%;vertical-align: top;}
  79. hr {height: 0;-webkit-box-sizing: content-box;box-sizing: content-box;}
  80. button,input,optgroup,select,textarea {margin: 0;font: inherit;color: inherit;}
  81. button {overflow: visible;background: none;border: none;padding: 0;}
  82. button,select {text-transform: none;}
  83. button,html input[type="button"],input[type="reset"],input[type="submit"] {-webkit-appearance: button;cursor: pointer;}
  84. button[disabled],html input[disabled] {cursor: default;}
  85. button:focus {outline: #007bce dotted thin;}
  86. button::-moz-focus-inner,input::-moz-focus-inner {padding: 0;border: 0;}
  87. input {line-height: normal;}
  88. input[type="checkbox"],input[type="radio"] {-webkit-box-sizing: border-box;box-sizing: border-box;padding: 0;}
  89. input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button {height: auto;}
  90. input[type="search"] {-webkit-box-sizing: content-box;box-sizing: content-box;-webkit-appearance: textfield;}
  91. input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}
  92. fieldset {padding: .35em .625em .75em;margin: 0 2px;border: 1px solid #c0c0c0;}
  93. legend {padding: 0;border: 0;}
  94. textarea {overflow: auto;}
  95. optgroup {font-weight: bold;}
  96. table {border-spacing: 0;border-collapse: collapse;}
  97. td,th {padding: 0;}
  98. ul,ol {padding: 0;margin: 0;list-style: none;}
  99. dl,dt,dd {margin: 0;}
  100. p {padding: 0;margin: 0;}
  101. i,em {font-style: normal;}
  102. .block {display:block;}
  103. .inblock {display:inline-block;*display:inline;zoom:1;}
  104. .clear {*zoom:1; clear:both;}
  105. .clear:after {content:""; display:block; clear:both;}
  106. .fr::after, .fl::after{content: '';display: block;clear: both;}
  107. .fl {float:left !important;}
  108. .fr {float:right !important;}
  109. .t_c {text-align:center !important;}
  110. .t_l {text-align:left !important;}
  111. .t_r {text-align:right !important;}
  112. .btn_center {text-align:center; margin-top:30px;}
  113. .btn_right {text-align:right; margin-top:10px; margin-bottom:15px;}
  114. .btn_border {border-top:1px solid #e1e1e1; padding-top:30px;text-align:center; margin-top:30px;}
  115. .bkn {background:0 none !important;}
  116. /* column*/
  117. .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;*/}
  118. .ui_row [class^='ui_col_'] {min-height: 1px;margin-left:0.4rem; margin-right:0.4rem;}
  119. .ui_row [class^='ui_col_']:first-child {margin-left: 0;}
  120. .ui_row [class^='ui_col_']:last-child {margin-right: 0;}
  121. .ui_col_1, .ui_col_2, .ui_col_3,
  122. .ui_col_4, .ui_col_5, .ui_col_6,
  123. .ui_col_7, .ui_col_8, .ui_col_9,
  124. .ui_col_10, .ui_col_11, .ui_col_12{
  125. position: relative;
  126. min-height: 1px;
  127. }
  128. .ui_col_1, .ui_col_2, .ui_col_3,
  129. .ui_col_4, .ui_col_5, .ui_col_6,
  130. .ui_col_7, .ui_col_8, .ui_col_9,
  131. .ui_col_10, .ui_col_11, .ui_col_12 {
  132. float: left;
  133. }
  134. .ui_col_1{width:8.33333333%}
  135. .ui_col_2{width:16.66666667%}
  136. .ui_col_3{width:25%}
  137. .ui_col_4{width:33.33333333%}
  138. .ui_col_5{width:41.66666667%}
  139. .ui_col_6{width:50%}
  140. .ui_col_7{width:58.33333333%}
  141. .ui_col_8{width:66.66666667%}
  142. .ui_col_9{width:75%}
  143. .ui_col_10{width:83.33333333%}
  144. .ui_col_11{width:91.66666667%}
  145. .ui_col_12{width:100%}
  146. /* font color */
  147. i {font-family:'Noto Sans kr', 'LATO', sans-serif !important; letter-spacing:0}
  148. .base i {position:relative; top:1px;}
  149. i.big {font-size:18px; position:relative; top:2px;}
  150. .bold {font-weight:500;} /* 중복확인 */
  151. .normal {font-weight:300;} /* 중복확인 */
  152. .light {font-weight:200;} /* 중복확인 */
  153. .ptxt01 {color:#666666;}
  154. .ptxt02 {color:#999999;}
  155. .ptxt03 {color:#333333;}
  156. .c_primary {color:#fd4802 !important;} /* 중복확인 */
  157. .c_blue{color:#2b62c2 !important}
  158. .c_pink {color:#bd484a !important;}
  159. .c_white {color:#ffffff !important;}
  160. .c_yellow {color:#f09614 !important;}
  161. .c_orange{color: #ff634c !important;}
  162. .c_green{color:#6a9913 !important;}
  163. .c_mint{color:#05B9AA !important;}
  164. .c_mint2{color:#37b4be !important;}
  165. .c_red{color:#ff0000 !important;}
  166. .c_red2{color:#f30e0e !important;}
  167. .c_black{color:#000000 !important;}
  168. .c_black2{color:#222222 !important;}
  169. .c_gray{color:#888888 !important;}
  170. .c_gray2{color:#666666 !important;}
  171. .c_ygreen{color:#5fc332 !important;}
  172. .f_size14{font-size:14px;}
  173. .f_size13{font-size:13px;}
  174. .f_size12{font-size:12px; }
  175. .f_size10{font-size:10px;}
  176. .f_normal {font-weight:normal}
  177. /* text state */
  178. .t_muted {color: #ccd0d9 !important;}
  179. .t_req {color: #fd4802 !important;}
  180. .t_help {color: #888888 !important;}
  181. .t_info {color: #888888 !important;}
  182. .t_err {color: #fd4802 !important;}
  183. .t_err::before {content: '';display: inline-block; width:1.5rem; height:1.5rem; background:url('/images/mo/ico_err.png') no-repeat right top;margin: 0px 0.6rem 0 0px;position: relative;top: 0.3rem;left: 0;right: auto;bottom: auto; background-size: 100%;}
  184. .t_success {color: #333333 !important;}
  185. /* textarea */
  186. textarea {background-color:transparent; border:1px solid #d7d7d7; width:99%; overflow-y:auto}
  187. .textarea_full {width:832px; padding:10px}
  188. .textarea_md {width:656px; width: 30%; height:108px; padding:10px; line-height:18px;}
  189. .textarea_sm {width:360px; width: 18%; padding:10px;}
  190. .txt_cnt {text-align: right;margin-top: 10px;}
  191. /* form */
  192. .form_wrap {}
  193. .form_wrap::after,
  194. .form_field:after,
  195. .input_wrap::after {content: ''; display: block; clear: both;}
  196. select,
  197. .form_full input[type="text"],
  198. .form_full input[type="select"],
  199. .form_full input[type="password"]{ width: 100%; }
  200. .form_full .input_wrap,
  201. .form_full.input_wrap{display: block;}
  202. .form_full {}
  203. .form_col_w {width: 100%;}
  204. .form_col_c {width: 530px; margin: 0 auto;}
  205. .form_field {width: 100%;margin-left: 0px !important;margin-right: 0px !important;position: relative;display: -webkit-box;display: -ms-flexbox;display: flex;}
  206. .input_wrap{position: relative;display: table;border-collapse: separate;}
  207. .input_wrap,
  208. .input_label {vertical-align: top;text-align: left;}
  209. .input_label { line-height: 3.0; font-size: 16px; font-weight: 300;}
  210. .input_label span[class*="t_"]{display: inline !important;text-indent: -10px;margin-left: -10px;}
  211. .input_wrap .form_control,
  212. .input_group_addon,
  213. .input_group_btn {display: table-cell;float: left;}
  214. .form_control{height: 45px;font-size: 12px;line-height: 43px;-moz-box-shadow: none;-webkit-box-shadow: none;box-shadow: none;-webkit-appearance: none;border: 1px solid #D5D5D5;position: relative;}
  215. .form_control.err {border: 1px solid #fd4802 !important; background: #fff6f2;}
  216. .usable {display: none;}
  217. .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/mo/ico_usable1.png') no-repeat 0 40%; color:#222; font-size:12px; font-weight:200; line-height:1;}
  218. .sr-only {position: absolute!important;width: 1px;height: 1px;padding: 0!important;margin: -1px;overflow: hidden;clip: rect(0,0,0,0);border: 0;}
  219. /* form style (hyangah_0223_수정중 - input[type="text"] padding 수정) */
  220. input, textarea {font-size:12px; font-family:'Noto Sans KR', 'LATO', sans-serif; color:#666666; vertical-align:middle;}
  221. select{font-size:12px; font-family:'Noto Sans KR', 'LATO', sans-serif; color:#666666; vertical-align:middle;}
  222. input[type="text"], input[type="password"] {padding:0 15px; border:1px solid #dddddd;box-sizing: border-box;}
  223. input[type="text"]:focus, input[type="password"]:focus,
  224. input[type="text"].active, input[type="password"].active {border-color: #aaaaaa;}
  225. input[type="text"]:disabled, input[type="password"]:disabled, input[type="select"]:disabled,
  226. input[type="text"]:read-only, input[type="password"]:read-only, input[type="select"]:read-only {background: #F9F9F9;border-color: #dddddd;}
  227. table input[type="text"], table input[type="password"] {padding:6px 0 6px 9px;}
  228. input[type="checkbox"], input[type="radio"] {width:13px; height:13px; margin-right:3px; position:relative; top:1px;}
  229. input[type=search]::-webkit-search-cancel-button{display:none;}
  230. input[type="reset"], input[type="button"], input[type="submit"], button {line-height:normal !important;}
  231. .input_wrap > .btn, .input_wrap + .btn, .form_field.form_full .btn {border-color: #222222;margin-left: 10px;float: left;display: inline;}
  232. .input_wrap > .btn:hover, .input_wrap > .btn:focus, .input_wrap > .btn:active, .input_wrap > .btn.active,
  233. .input_wrap + .btn:hover, .input_wrap + .btn:focus, .input_wrap + .btn:active, .input_wrap + .btn.active,
  234. .input_wrap > .open > .tgl_dropdown.btn , .input_wrap + .open > .tgl_dropdown.btn {border-color: rgb(34 34 34 / 0.6);}
  235. /* 체크박스 */
  236. .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; }
  237. .form_field input[type="checkbox"] + label{ display:inline-block; position:relative; padding-left:2.6rem; cursor:pointer; font-size: 1.2rem; line-height: 2.0;font-weight: 300;letter-spacing: 0;}
  238. .form_field input[type="checkbox"] + label:before{
  239. content:''; position:absolute; left:0; top:50%; margin-top:-10px; width:20px; height:20px; text-align:center; background:#fff; /*border:1px solid #ccc;*/ border-radius: 100%; box-sizing:border-box;
  240. background: url('/images/mo/ico_chk_rdi.png') no-repeat;
  241. background-position: 0px 0px;
  242. }
  243. .form_field input[type="checkbox"]:Disabled + label,
  244. .form_field input[type="radio"]:Disabled + label{cursor: default;opacity: .45;}
  245. .form_field input[type="checkbox"]:checked + label:after{
  246. content: ''; position:absolute; top:50%; margin-top:-1rem; left:0; width:2.0rem; height:2.0rem; background-color: #fd4800; border-radius: 100%; box-sizing:border-box;
  247. background: url('/images/mo/ico_chk_rdi.png') no-repeat;
  248. background-position: -2rem 0px;
  249. }
  250. .form_field input[type="checkbox"]:Disabled + label:after{
  251. content: ''; position:absolute; top:-1.0rem; left:0; width:2.0rem; height:2.0rem; background-color: #fd4800; border-radius: 100%; box-sizing:border-box;
  252. background: url('/images/mo/ico_chk_rdi.png') no-repeat;
  253. background-position: -4rem 0px;
  254. }
  255. /* 라디오 */
  256. .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; }
  257. .form_field input[type="radio"] + label{ display:inline-block; position:relative; padding-left:2.5rem; cursor:pointer; font-size: 1.3rem;line-height: 1.5;font-weight: 300;letter-spacing: 0;}
  258. .form_field input[type="radio"] + label:before{
  259. content:''; position:absolute; left:0; top:50%; margin-top:-10px; width:20px; height:20px; text-align:center; background:#fff; /*border:1px solid #ccc;*/ border-radius: 100%; box-sizing:border-box;
  260. background: url('/images/mo/ico_chk_rdi.png') no-repeat;
  261. background-position: -60px 0px;
  262. }
  263. /* 보여질 부분의 스타일을 추가하면 된다. */
  264. .form_field input[type="radio"]:checked + label:after{
  265. content: ''; position:absolute; top:50%; margin-top:-10px; left:0; width:20px; height:20px; background-color: #fd4800;
  266. background: url('/images/mo/ico_chk_rdi.png') no-repeat;
  267. background-position: -80px 0px;
  268. }
  269. .form_field input[type="radio"]:Disabled + label:after{
  270. content: ''; position:absolute; top:50%; margin-top:-10px; left:0; width:20px; height:20px; background-color: #fd4800;
  271. background: url('/images/mo/ico_chk_rdi.png') no-repeat;
  272. background-position: -100px 0px;
  273. }
  274. /* 이미지 체크박스 */
  275. .chk_img+label span {border: 2px solid transparent; padding: 10px; box-sizing: border-box;}
  276. .chk_img:checked+label span {border: 2px solid #fd481a; padding: 10px; box-sizing: border-box;}
  277. /* input-File-Add */
  278. .imgUpload {position: relative;}
  279. .imgUpload::after {content: '';display: block;clear: both;}
  280. input[type="file"] {
  281. position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  282. overflow: hidden; clip:rect(0,0,0,0); border: 0;
  283. }
  284. .fileAdd{
  285. width: 72px;height:72px;border: 0.1rem solid #dddddd;float: left;font-size: 0;
  286. background: url('/images/mo/ico_btn_file.png') no-repeat;background-position: 50% 50%;
  287. -webkit-appearance: none; -moz-appearance: none; appearance: none;cursor: pointer; background-size:30px;
  288. }
  289. .fileAdds {
  290. padding: 14px 10px;font-size: 14px;color: #222222;border: 1px solid #dddddd;box-sizing: border-box;
  291. float: right; -webkit-appearance: none;-moz-appearance: none;appearance: none;cursor: pointer;
  292. }
  293. .pics {
  294. display: inline !important;float: left;margin: 0 10px 0 0;width: 72px;height:72px;
  295. border: 1px solid #dddddd;box-sizing: border-box;position: relative; overflow: hidden;
  296. }
  297. .picsThumbs {
  298. width: auto;height: auto;max-height: 71px;max-width: 71px;margin: auto 0;
  299. position: absolute;top: 50%;bottom: auto;left: 50%;right: 0;
  300. transform: translate(-50%, -50%);cursor: pointer;
  301. }
  302. .removes {
  303. display: block;width:2rem;height:2rem;font-size: 0;text-align: center;cursor: pointer;background-color: #666666;
  304. position: absolute;top: 0;bottom: auto;left: auto;right: 0;
  305. }
  306. .removes::after {
  307. content: '';display: inline-block;width: 2rem;height: 2rem;
  308. background: url('/images/mo/ico_btn_cls1.png') no-repeat;background-position: 50% 50%;
  309. background-size:2rem;
  310. }
  311. /* toggle - Share */
  312. .setShare {padding: 2rem 2rem 3.0em;position: relative;}
  313. .setShare span {display: block;text-align: center;}
  314. .setShare button {width: 4.5rem;height: 5.5rem;background: url(/images/mo/ico_share.png) no-repeat;background-position-x: 0%;background-position-y: 0%;background-size: 23.5rem 3.33rem;position: relative;}
  315. .setShare button.kk {background-position: 0.75rem 0;}
  316. .setShare button.fb {background-position: -6.0rem 0;}
  317. .setShare button.tw {background-position: -12.5rem 0;}
  318. .setShare button.url {width: 5.0rem;background-position: -18.8rem 0;}
  319. .setShare button ~ button {margin-left: 2rem;}
  320. .setShare button span {display: block;font-size: 1.2rem;position: absolute;top: auto;bottom: -0.5rem;left: 50%;right: 50%;transform: translateX(-50%);text-align: center;margin: 0 auto;width: 100%;}
  321. /* select */
  322. .select {cursor: pointer;display: inline-block;position: relative;font-size: 16px;color: #333333;width: 100%;height: 40px;}
  323. .select+.select{margin-left: 10px;}
  324. .select_hidden {display: none;visibility: hidden;padding-right: 10px;}
  325. .select_dress {
  326. position: absolute;top: 0;right: 0;bottom: 0;left: 0;padding: 12px 15px;
  327. background-color: #ffffff;border: 1px solid #dddddd;box-sizing: border-box;
  328. -moz-transition: all 0.05s ease-in;-o-transition: all 0.05s ease-in;
  329. -webkit-transition: all 0.05s ease-in;transition: all 0.05s ease-in;
  330. }
  331. .select_dress:after {
  332. content: "";width: 0;height: 0;box-sizing: border-box;position: absolute;top: 16px;right: 10px;
  333. border: 6px solid transparent; border-color: #888888 transparent transparent transparent;
  334. }
  335. .select_options {
  336. display: none;position: absolute;top: 100%;right: 0;left: 0;z-index: 2;
  337. margin: 0;padding: 0;list-style: none;background-color: #ffffff;
  338. box-sizing: border-box;border: 1px solid #222222;border-top: 0px solid #222222;
  339. }
  340. .select_options li {
  341. margin: 0;padding: 12px 0;text-indent: 15px;
  342. -moz-transition: all 0.08s ease-in;-o-transition: all 0.08s ease-in;
  343. -webkit-transition: all 0.08s ease-in;transition: all 0.08s ease-in;
  344. }
  345. .select_options li:hover{background-color: #dddddd;}
  346. .select_options li[rel="hide"] {display: none;}
  347. .select_options li.disabled {text-decoration:line-through; background:#f5f5f5; color:#bbb}
  348. .select_options li.disabled:hover,
  349. .select_options li.disabled:active {cursor:default;}
  350. .select_dress:active, .select_dress.active {background-color: #ffffff;border: 1px solid #222222;border-bottom: 1px solid #dddddd;}
  351. .select_dress:active:after, .select_dress.active:after {top: 9px;border-color: transparent transparent #888888 transparent;}
  352. /* select-pure */
  353. /* pure-setting */.select.pure select {-webkit-appearance: none;-moz-appearance: none;-ms-appearance: none;appearance: none;outline: 0;box-shadow: none;border: 0 !important;background-image: none;}
  354. /* Remove IE arrow */.select.pure select::-ms-expand {display: none;}
  355. .select.pure {position: relative;display: flex;line-height: 3;overflow: hidden;width: 10rem;right: 0;top: 0;}
  356. .select.pure select {flex: 1;padding: 0 .5em;cursor: pointer;position: relative;box-sizing: border-box;height: 4.5rem;line-height: 1;cursor: pointer;padding: 0.5rem;background-color: #ffffff;border: 0px solid #dddddd;font-size: 1.2rem;}
  357. .select.pure::after {content: '';width: 0;height: 0;box-sizing: border-box;position: absolute;top: 2.0rem;right: 0rem;border: 0.4rem solid transparent;border-color: #222222 transparent transparent transparent;cursor: pointer;pointer-events: none;-webkit-transition: .25s all ease;-o-transition: .25s all ease;transition: .25s all ease;}
  358. .select.pure:hover::after {color: #666666;}
  359. /* select-custom */
  360. .select_custom {
  361. cursor: pointer;
  362. display: inline-block;
  363. position: relative;
  364. font-size: 13px;
  365. color: #333333;
  366. width: 100%;
  367. height: 45px;
  368. }
  369. .select_custom .combo {
  370. display: inline-block;
  371. position: relative;
  372. width: 100%;
  373. }
  374. .select_custom .combo .select {
  375. position: relative;
  376. box-sizing: border-box;
  377. height: 45px;
  378. line-height: 1;
  379. cursor: pointer;
  380. padding: 15px 15px;
  381. background-color: #ffffff;
  382. border: 1px solid #dddddd;
  383. }
  384. .select_custom .combo .select:after {
  385. /* content: '▼'; */
  386. /* position: absolute; */
  387. /* top: 50%; */
  388. /* right: 10px; */
  389. content: '';
  390. width: 0;
  391. height: 0;
  392. box-sizing: border-box;
  393. position: absolute;
  394. top: 19px;
  395. right: 15px;
  396. border: 6px solid transparent;
  397. border-color: #888888 transparent transparent transparent;
  398. }
  399. .select_custom.on .combo .select {
  400. border: 1px solid #999999;
  401. }
  402. .select_custom.on .combo .select:after {
  403. /* content: '▲'; */
  404. top: 9px;
  405. border-color: transparent transparent #888888 transparent;
  406. }
  407. .select_custom .combo .list {
  408. display: none;
  409. overflow-y: auto;
  410. position: absolute;
  411. top: 45px;
  412. left: 0;
  413. z-index: 10;
  414. border: 1px solid #999999;
  415. border-top: 0;
  416. box-sizing: border-box;
  417. width: 100%;
  418. max-height: 500px;
  419. background-color: #fff;
  420. }
  421. .select_custom .combo .list::-webkit-scrollbar {
  422. width: 10px;
  423. height: 0;
  424. }
  425. .select_custom .combo .list::-webkit-scrollbar-button:start:decrement,
  426. .select_custom .combo .list::-webkit-scrollbar-button:end:increment {
  427. display: block;
  428. height: 0;
  429. }
  430. .select_custom .combo .list::-webkit-scrollbar-track {
  431. background: rgba(0, 0, 0, .05);
  432. -webkit-border-radius: 10px;
  433. border-radius: 10px;
  434. }
  435. .select_custom .combo .list::-webkit-scrollbar-thumb {
  436. height: 50px;
  437. width: 50px;
  438. background: rgba(0, 0, 0, .2);
  439. -webkit-border-radius: 5px;
  440. border-radius: 5px;
  441. }
  442. .select_custom[disabled] {
  443. pointer-events: none;
  444. }
  445. .select_custom[disabled] .select {
  446. pointer-events: none;
  447. color: #bbb;
  448. background-color: #f5f5f5 !important;
  449. }
  450. .select_custom .combo .list>li[aria-disabled="true"] {
  451. text-decoration: line-through;
  452. background: #f5f5f5;
  453. color: #bbb;
  454. pointer-events: none;
  455. }
  456. .select_custom .combo .list>li[data-soldout="true"] {
  457. pointer-events: none;
  458. }
  459. .select_custom .combo .list>li[data-soldout="true"]::after {
  460. content: '품절';
  461. display: inline-block;
  462. font-size: 12px;
  463. color: #bbbbbb;
  464. position: absolute;
  465. right: 15px;
  466. top: 0;
  467. bottom: 0;
  468. }
  469. .select_custom .combo .list>li {
  470. box-sizing: border-box;
  471. padding: 0 15px;
  472. width: 100%;
  473. height: auto;
  474. line-height: 45px;
  475. cursor: pointer;
  476. position: relative;
  477. }
  478. .select_custom .combo .list>li:hover {
  479. background-color: #ccc;
  480. }
  481. /* select-custom-sup : table sub */
  482. .select_custom.sup {width: auto;width: 12rem;display: inline-block;position: absolute;right: 0rem;}
  483. .select_custom.sup .combo {display: inline-block;position: absolute;width: auto;right: 2.5rem;top: 0;}
  484. .select_custom.sup .combo .select {position: relative;box-sizing: border-box;height: 4.5rem;line-height: 1;cursor: pointer;padding: 15px 15px;background-color: #ffffff;border: 0px solid #dddddd;font-size: 1.2rem;}
  485. .select_custom.sup .combo .select:after {
  486. /* content: '▼'; */
  487. /* position: absolute; */
  488. /* top: 50%; */
  489. /* right: 10px; */
  490. content: '';width: 0;height: 0;box-sizing: border-box;position: absolute;top: 2.0rem;right: 0rem;border: 0.4rem solid transparent;border-color: #222222 transparent transparent transparent;}
  491. .select_custom.sup.on .combo .select {border: 1px solid #999999;}
  492. .select_custom.sup.on .combo .select:after {
  493. /* content: '▲'; */
  494. top: 9px;border-color: transparent transparent #888888 transparent;}
  495. .select_custom.sup .combo .list {display: none;overflow-y: auto;position: absolute;top: 4.5rem;left: 0;z-index: 10;border: 0px solid #999999;border-top: 0;box-sizing: border-box;width: 100%;max-height: 50.0rem;background-color: #fff;font-size: 1.2rem;}
  496. .select_custom.sup .combo .list::-webkit-scrollbar {width: 1.0rem;height: 0;}
  497. .select_custom.sup .combo .list::-webkit-scrollbar-button:start:decrement,
  498. .select_custom.sup .combo .list::-webkit-scrollbar-button:end:increment {display: block;height: 0;}
  499. .select_custom.sup .combo .list::-webkit-scrollbar-track {background: rgba(0, 0, 0, .05);-webkit-border-radius: 10px;border-radius: 10px;}
  500. .select_custom.sup .combo .list::-webkit-scrollbar-thumb {height: 50px;width: 50px;background: rgba(0, 0, 0, .2);-webkit-border-radius: 5px;border-radius: 5px;}
  501. .select_custom[disabled].sup {pointer-events: none;}
  502. .select_custom[disabled].sup .select {pointer-events: none;color: #bbb;background-color: #f5f5f5 !important;}
  503. .select_custom.sup .combo .list>li[aria-disabled="true"] {text-decoration: line-through;background: #f5f5f5;color: #bbb;pointer-events: none;}
  504. .select_custom.sup .combo .list>li[data-soldout="true"] {pointer-events: none;}
  505. .select_custom.sup .combo .list>li[data-soldout="true"]::after {content: '품절';display: inline-block;font-size: 12px;color: #bbbbbb;position: absolute;right: 15px;top: 0;bottom: 0;}
  506. .select_custom.sup .combo .list>li {box-sizing: border-box;padding: 0 1.5rem;width: 100%;height: auto;line-height: 3.5rem;cursor: pointer;position: relative;}
  507. .select_custom.sup .combo .list>li:hover {background-color: #ccc;}
  508. /* TAG, Label */
  509. .tag {display: inline-block;height: 1.7rem;padding: 0rem 0.4rem;border: 1px solid #ddd;color: #666;font-size: 1.1rem;font-weight: 300;text-align: center;line-height: 1.7rem;}
  510. .tag.primary {background: #fd4802;border-color: #fd4802;color: #fff;}
  511. .tag.deepgray {background: #aaa;border-color: #aaa;color: #fff !important;}
  512. .my .point .amount_plus {color: #fd4802;}
  513. /* ico */
  514. .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;}
  515. .ico:before {display: inline-block; background-repeat:no-repeat; background-size:contain; background-position:0% 0%; vertical-align:middle;}
  516. .btn_ico {display: inline-block;position: relative;}
  517. .btn .ico {font-size: 14px;margin-right: 5px;}
  518. [class^="ico_"]:before {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
  519. [class^="ico_content_"]::before {content:''; display:block;}
  520. .ico_logo:before {content: ""; display:block; width:184px; height:28px; background-image: url('/images/mo/logo_STYLE24.png'); }
  521. .ico_logo_ft:before {content: ""; display:block; width:150px; height:23px; background-image: url('/images/mo/logo_STYLE24_footer.png'); }
  522. .ico_search:before {content: ""; display: inline-block; width:22px; height:26px; background-image: url('/images/mo/ico_sch.png'); }
  523. .ico_bag:before {content: ""; display: inline-block; width:22px; height:26px; background-image: url('/images/mo/ico_bag.png');}
  524. .ico_content_order::before {width:40px; height: 46px; background: url('/images/mo/ico_content_order.png') no-repeat 50% 50%;}
  525. .ico_content_find::before {width:36px; height: 46px; background: url('/images/mo/ico_content_find.png') no-repeat 50% 50%;}
  526. .ico_content_none::before {width:36px; height: 46px; background: url('/images/mo/ico_content_none.png') no-repeat 50% 50%;}
  527. .ico_content_security::before {width:38px; height: 43px; background: url('/images/mo/ico_content_security.png') no-repeat 50% 50%;}
  528. .ico_content_mail::before {width:48px; height: 40px; background: url('/images/mo/ico_content_mail.png') no-repeat 50% 50%;}
  529. .ico_content_dormant::before {width:36px; height: 46px; background: url('/images/mo/ico_content_dormant.png') no-repeat 50% 50%;}
  530. .ico_content_dormant2::before {width:36px; height: 46px; background: url('/images/mo/ico_content_dormant2.png') no-repeat 50% 50%;}
  531. .ico_blank::before {content: ""; width:13px; height:13px; background-image: url('/images/mo/ico_blank.png');}
  532. .ico_ft_arrow_r:before {content: ""; width:11px; height:11px; background-image: url('/images/mo/ico_ft_arrow.png');}
  533. .ico_ft_arrow_b:before {content: ""; width:11px; height:11px; background-image: url('/images/mo/ico_ft_arrow.png'); transform: rotate(90deg);}
  534. .ico_ft_arrow_t:before {content: ""; width:11px; height:11px; background-image: url('/images/mo/ico_ft_arrow.png'); transform: rotate(-90deg);}
  535. .ico_kcl::before {content: ""; width:32px; height:50px; background-image: url('/images/mo/ico_kcl.png');}
  536. .ico_picker::before {content: ""; width:40px; height:40px; background:url(/images/mo/ico_picker.png) no-repeat 50% 50%;}
  537. .ico_trash::before {content: ""; width:13px; height:16px; background:url(/images/mo/ico_trash.png) no-repeat 50% 50%;}
  538. .ico_like::before {content: ""; width: 19px;height:16px;background: url(/images/mo/ico_like.png) no-repeat 0% 50%; background-size:cover;}
  539. .active .ico_like::before {background-position:100% 50%;}
  540. .ico_saletag::before {content: ""; width:36px;height:16px;background: url(/images/mo/ico_saletag.png) no-repeat 50% 50%; background-size:cover;}
  541. .ico_calender::before {content: ""; width:15px;height:16px;background: url(/images/mo/ico_calender.png) no-repeat 50% 50%; background-size:cover;}
  542. .ico_snslogin::before {content: ""; background-image: url(/images/mo/ico_snslogin.png); background-size:auto 100%;}
  543. .ico_snslogin.kakao::before {width:20px; height:22px; background-position:0 0;}
  544. .ico_snslogin.naver::before {width:16px; height:22px; background-position:-20px 0;}
  545. .ico_snslogin.yes24::before {width:34px; height:22px; background-position:-36px 0;}
  546. .ico_check::before {content: ""; width:10px; height:8px; background-image: url(/images/mo/ico_check.png); background-size:100% auto; margin-bottom:2px;}
  547. .ico_check.black::before {content: ""; background-position:0 0;}
  548. .ico_check.red::before {content: ""; background-position:0px -8px;}
  549. .ico_check.gray::before {content: ""; background-position:0px -16px;}
  550. .ico_phone::before {content: ""; width:15px; height:20px; background:url(/images/mo/ico_join_bg.png) no-repeat 0 0; background-size:cover;}
  551. .ico_ipin::before {content: ""; width:20px; height:20px; background:url(/images/mo/ico_join_bg.png) no-repeat -20px 0; background-size:cover;}
  552. /* btn : btn_default, btn_more, btn_go, btn_waiting */
  553. .btn{display: inline-block; height: 5.0rem; margin-bottom: 0; padding: 0.4rem 1.3rem; font-size: 1.4rem; font-weight: 400; line-height: 1 !important; color: #333333; text-align: center; white-space: nowrap; vertical-align: middle; -webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none; background-image: none; background-color: #ffffff; box-sizing: border-box; border-width: 1px; border-style: solid; border-color: #dddddd; -webkit-border-radius: 0px;-moz-border-radius: 0px;border-radius: 0px; -ms-touch-action: manipulation;touch-action: manipulation; -webkit-transition: all 200ms ease;-moz-transition: all 200ms ease;-ms-transition: all 200ms ease;-o-transition: all 200ms ease;transition: all 200ms ease; cursor: pointer; }
  554. .btn.mini{width: auto !important; display: inline-block !important; height: 3.0rem; font-size: 1.2rem; font-weight: 300; }
  555. .btn_gost{position: relative; display: block; width: 100%; height: 50px; color: #333333; border-color: #dddddd; background-color: transparent; }
  556. .btn_more{position: relative; display: block; width: 100%; height: 50px; color: #888; border: #999 solid 1px;}
  557. .btn_more::after{content: ''; position: absolute; right: -4px; bottom: -1px; display: block; width: 0; height: 0; border-top: 6px solid none; border-bottom: 6px solid #b7b7b7; border-right: 6px solid transparent; border-left: 6px solid transparent; -webkit-transform: rotate(135deg); transform: rotate(135deg);}
  558. .btn_go{position: relative; display: block; width: 100%; height: 50px; color: #ffffff; border: #222222 solid 1px; background-color: #222222;}
  559. .btn_waiting{position: relative; display: block; width: 100%; height: 50px; color: #cd0c0d; border: #05937b solid 1px;}
  560. .btn_waiting::after{content: ''; display: inline-block; width: 12px; height: 12px; margin-left: 10px; background: url("../images/icon_download2.png") no-repeat center; background-size: 12px auto;}
  561. .btn_primary{color: #ffffff; background-color: #fd4802; border-color: #fd4802;}
  562. .btn_primary_line{color: #fd4802; background-color: #fff; border-color: #fd4802;}
  563. .btn_default{color: #333333;background-color: #ffffff;border-color: #dddddd;}
  564. .btn_dark {color: #ffffff; background-color: #222222; border-color: #222222;}
  565. .btn_underline {display:inline-block; border-bottom:1px solid #222; color:#222; font-size:1.4rem; line-height:1 !important;}
  566. .btnIcon_more:after,
  567. .btnIcon_brand:after,
  568. .btnIcon_detail:after{content:''; display:inline-block; margin-left:8px; width:11px; height:11px; background-position:center center; background-repeat:no-repeat; background-size:contain; vertical-align:middle;}
  569. .btnIcon_more:after{background-image:url('/images/mo/ico_btn_more.png');}
  570. .btnIcon_brand:after{background-image:url('/images/mo/ico_btn_brand.png');}
  571. .btnIcon_detail:after{background-image:url('/images/mo/ico_btn_detail.png');}
  572. /* btn hover, focus */
  573. .btn:hover, .btn:focus, .btn.focus {color: #333333;text-decoration: none;}
  574. .btn:hover, .btn:focus, .btn:active, .btn.active,
  575. .open > .tgl_dropdown.btn {background-color: rgb(255 255 255 / 0.4);border-color: rgb(221 221 221 / 0.6);}
  576. .btn:active, .btn.active {-moz-box-shadow: none;-webkit-box-shadow: none;box-shadow: none;}
  577. /* btn active */
  578. .btn_default:hover, .btn_default:focus,
  579. .btn_default:active, .btn_default.active,
  580. .open > .tgl_dropdown.btn_default {background-color: #F5F5F5;border-color: #dddddd;color:#333333;}
  581. .btn_dark:hover, .btn_dark:focus,
  582. .btn_dark:active, .btn_dark.active,
  583. .open > .tgl_dropdown.btn_dark {background-color: #2f2f2f;border-color: #2f2f2f;color:#ffffff;}
  584. .btn_primary:hover, .btn_primary:focus,
  585. .btn_primary:active, .btn_primary.active,
  586. .open > .tgl_dropdown.btn_primary {background-color: #dc4308;border-color: #dc4308;color:#ffffff;}
  587. .btn_success:hover, .btn_success:focus,
  588. .btn_success:active, .btn_success.active,
  589. .open > .tgl_dropdown.btn_success {background-color: #89ad4d;border-color: #89ad4d;color:#ffffff;}
  590. .btn_info:hover, .btn_info:focus,
  591. .btn_info:active, .btn_info.active,
  592. .open > .tgl_dropdown.btn_info {background-color: #47c2e6;border-color: #3cbee4;color:#ffffff;}
  593. .btn_warning:hover, .btn_warning:focus,
  594. .btn_warning:active, .btn_warning.active,
  595. .open > .tgl_dropdown.btn_warning {background-color: #fe970a;border-color: #fe970a;color:#ffffff;}
  596. .btn_danger:hover, .btn_danger:focus,
  597. .btn_danger:active, .btn_danger.active,
  598. .open > .tgl_dropdown.btn_danger{background-color: #a43f3e;border-color: #a43f3e;color:#ffffff;}
  599. .btn_primary_line:hover, .btn_primary_line:focus,
  600. .btn_primary_line:active, .btn_primary_line.active,
  601. .open > .tgl_dropdown.btn_primary_line {background-color: #fff;border-color: #fd4802;color:#fd4802;}
  602. /* button flex */
  603. .btn_group_flex {display:flex; flex-wrap: wrap; width:100%; align-items:stretch; flex-direction:row; margin-top: 3rem;}
  604. .btn_group_flex > div {flex-basis:auto; flex-grow:1; margin:0px 0.4rem; flex:1;}
  605. .btn_group_flex > div:first-child {margin-left:0}
  606. .btn_group_flex > div:last-child {margin-right:0}
  607. .btn_group_flex > div > .btn {display:block; width:100%; height:100%; border:1px solid #a7a7a7; font-size: 1.4rem; padding:1rem 1.3rem; font-weight: 500;}
  608. .btn_group_flex > div > .btn.btn_dark {border-color:#222;}
  609. /* .btn_group_flex > div > .btn.btn_primary {background-color:#fff; border-color:#fd4802; color: #fd4802;} */
  610. .btn_block {width: 100%;}
  611. /* Page setup */
  612. html {font-family: 'LATO', 'Noto Sans kr', sans-serif;font-weight: 300;color: #222;font-size: 10px;line-height: 1.4;letter-spacing: -.025em;word-break: keep-all;}
  613. body.gnb_on {height: 100vh;overflow: hidden;}
  614. .app {height: 100vh;font-size: 1.4rem;}
  615. .skipNav {overflow: hidden;position: absolute;left: -9999px;width: 0;height: 1px;margin: 0;padding: 0;}
  616. .inner {padding: 0 2.0rem 1.3rem 2.0rem;position: relative;}
  617. .inner.wide {padding: 0 0rem 1.3rem 0rem;position: relative;}
  618. .inner::after {content: '';display: block;clear: both;}
  619. .inner.bg_gray {background-color: #f5f5f5;}
  620. .inner.bg_beige {background-color: #ffeee7;}
  621. .inner.bg_dark {background-color: #222222;}
  622. .inner.bg_dark .titWrap>* {color: #ffffff;}
  623. .inner.bg_dark .titWrap a H2{color: #ffffff;}
  624. /* header, htop, btn_gnb, header.main, hmenu, bng, bnb */
  625. header {
  626. position: fixed;left: 0;top: 0;width: 100%;z-index: 80;
  627. position: sticky;left: 0;top: 0;width: 100%;transition: top 0.3s;/* background-color: #fff; */
  628. }
  629. header::after{content: '';display: block;clear: both;}
  630. header .htop {position: relative;height: 55px;-webkit-box-sizing: border-box;box-sizing: border-box;/*border: rgba(0, 0, 0, 0.1) solid 1px;*/ border-bottom: 1px solid rgba(0, 0, 0, 0.0); background-color: #fff;}
  631. header .htop:after {content: '';display: block; clear: both;}
  632. header #htopSub{border-bottom: 0px solid #e5e5e5;box-sizing: border-box;}
  633. header #htopSubs{border-bottom: 0px solid #000000;box-sizing: border-box;}
  634. header #htopSub.my_main {background-color: #f5f5f5; border-bottom: 1px solid rgba(0, 0, 0, 0.0)!important;}
  635. header .htop h1 {display: inline-block;position: relative;width: 10.666rem;height: 100%;line-height: 4.5rem;vertical-align: middle;margin: 0px 0 0 2.0rem;font-size: 1.8rem;color: #222;}
  636. header .htop h1#htopTitle {display: inline-block;position: relative;max-width: 18rem;width: auto;height: 100%;line-height: 4.5rem;vertical-align: middle;padding: 0px 1.5rem 0px 0rem;font-size: 1.8rem;color: #222;}
  637. header .htop h1 a {height: 100%;width: 100%;display: block;}
  638. header .htop h1 img {position: absolute;top: 50%;left: 0;right: 0;transform: translate(0, -50%);margin: 0px 0;width: 10.666rem;height: auto;line-height: 1.6rem;vertical-align: middle;}
  639. header .htop .btn_back {margin: 10px 0 0 15px;width: 35px;height: 35px;}
  640. header .htop .btn_back span {display: block;width: 24px;height: 24px;margin: 0 auto;position: relative;}
  641. header .htop .btn_back span i {display: block;position: absolute;background: #222;-webkit-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
  642. header .htop .btn_back span i.gl1 {left: 0;top: 6px;width: 12px;height: 2px;-webkit-transform: rotate(-45deg);transform: rotate(-45deg);}
  643. header .htop .btn_back span i.gl2 {left: 0;top: 50%;-webkit-transform: translateY(-50%);transform: translateY(-50%);width: 24px;height: 2px;}
  644. header .htop .btn_back span i.gl3 {left: 0;bottom: 6px;width: 12px;height: 2px;-webkit-transform: rotate(45deg);transform: rotate(45deg);}
  645. header .htop .btn_back:active span i {left: -20px;}
  646. header .htop .button_wrap {height: 5.5rem; float: right; padding: 1.6rem 0 0; margin: 0 2.5rem 0 0; box-sizing: border-box;}
  647. header .htop .button_wrap .home {display:none;}
  648. header .htop .button_wrap .home {margin:0; }
  649. header .htop .button_wrap .home img{width: 2.0rem;}
  650. header .htop .button_wrap .search { margin:0 1.1666rem 0 1.1666rem; }
  651. header .htop .button_wrap .search img{width: 2.0rem;}
  652. header .htop .button_wrap .store{position: relative;}
  653. header .htop .button_wrap .store img{width: 1.6rem;}
  654. header .htop .button_wrap .store img:nth-child(1) { height: 2rem; }
  655. header .htop .button_wrap .store span { width: 2.1rem; height: 1.4rem; position: absolute; top: -0.5rem; right: -1.0rem; background: #fd4802; border-radius: 0.8rem; font-size: 0.8rem; color: #fff; line-height: 1.6rem;}
  656. header .subs {}
  657. header .btn_gnb {position: absolute;top: 0px;right: -4.5rem;width: 3.5rem;height: 100%;z-index: 10;}
  658. header .btn_gnb span {display: block;width: 24px;height: 24px;margin: 0 auto;position: relative;}
  659. header .btn_gnb span i {display: block;position: absolute;left: 0;width:100%;height: 100%;-webkit-transition: all 0.5s ease-out;transition: all 0.5s ease-out;}
  660. /* header .btn_gnb span i.gl1 {top: 6px;} */
  661. /* header .btn_gnb span i.gl2 {bottom: 6px;} */
  662. /* header .btn_gnb.on span i {width: 24px;top: 10px;background: #222;} */
  663. /* header .btn_gnb.on span i.gl1 {transform: rotate(45deg);-webkit-transform: rotate(45deg);} */
  664. /* header .btn_gnb.on span i.gl2 {transform: rotate(-45deg);-webkit-transform: rotate(-45deg);} */
  665. header .subs .btn_gnbs {position: absolute;top: 0px;right: -2.0rem;width: 3.5rem;height: 4.5rem;z-index: 10;}
  666. header .subs .btn_gnbs span i {display: block;position: absolute;left: 0;width: 100%;height: 100%;-webkit-transition: all 0.5s ease-out;transition: all 0.5s ease-out;}
  667. /* header .subs .btn_gnbs span {display: block;width: 24px;height: 24px;margin: 0 auto;position: relative;} */
  668. /* header .subs .btn_gnbs span i {display: block;position: absolute;left: 0;width: 24px;height: 2px;background: #222;-webkit-transition: all 0.15s ease-out;transition: all 0.15s ease-out;} */
  669. header .subs .btn_gnbs span {display: block;width: 24px;height: 24px;margin: 0 auto;position: relative;}
  670. header .subs .btn_gnbs span i {background: url(/images/mo/ico_btn_more.png) no-repeat;background-size: 1.3rem 0.733rem;background-position: 50% 50%;}
  671. /* header .subs .btn_gnbs span i.gl1 {top: 6px;background: #222;} */
  672. /* header .subs .btn_gnbs span i.gl2 {bottom: 6px;background: #222;} */
  673. /* header .subs .btn_gnbs.on span i {width: 24px;top: 10px;background: #222;} */
  674. header .subs .btn_gnbs.on span i {transform: rotate(-180deg);-webkit-transform: rotate(-180deg);}
  675. /* header .subs .btn_gnbs.on span i.gl1 {transform: rotate(45deg);-webkit-transform: rotate(45deg);} */
  676. /* header .subs .btn_gnbs.on span i.gl2 {transform: rotate(-45deg);-webkit-transform: rotate(-45deg);} */
  677. header.hide {display: none;}
  678. header.main .htop {border: rgba(255, 255, 255, 0.2) solid 0px;background-color: #222222;}
  679. header.main .htop.bright {background-color: transparent;}
  680. /* header.main .htop h1 {margin: 10px 0 0 20px;width: 95px;} */
  681. header.main .btn_gnb span i {background: url(/images/mo/ico_btn_more_w.png) no-repeat;background-size: 1.3rem 0.733rem;background-position: 50% 50%;}
  682. header.main .btn_gnb.on span i {transform: rotate(-180deg);-webkit-transform: rotate(-180deg);}
  683. /* header.main .btn_gnb span i {background: #fff;} */
  684. /* header.main .btn_gnb.on span i {background: #222;} */
  685. header .hmenu {position: absolute;left: 0;bottom: 100%;background-color: rgba(0, 0, 0, 0.0);padding: 0 0 0 0;-webkit-box-sizing: border-box;box-sizing: border-box;width: 100%;height: 100vh;-webkit-transition: all 0 ease-out;transition: all 0 ease-out;}
  686. header .hmenu .inner {padding: 0;background-color: #fff;position: relative;top: 0;-webkit-transition: all 0.5s ease-out;transition: all 0.5s ease-out;}
  687. header .hmenu.on {bottom: 0;}
  688. header .hmenu.on .inner {top: 100%;}
  689. header .hmenu .scrollWrap {height: calc(100vh - 50px);-webkit-box-sizing: border-box;box-sizing: border-box;overflow-y: auto;}
  690. /*
  691. header .hmenu .tnb{padding-top: 15px; height: 50px; -webkit-box-sizing: border-box;box-sizing: border-box;}
  692. header .hmenu .tnb ul::after{content: '';display: block; clear: both;}
  693. header .hmenu .tnb ul > li{float: left; position: relative; padding: 0 12px;}
  694. header .hmenu .tnb ul > li::before{content: ''; display: block; position: absolute;left: 0;top: 50%;width: 3px;height: 3px; background-color: #c1c1c1; border-radius: 0%;}
  695. header .hmenu .tnb ul > li:first-child{padding-left: 0;}
  696. header .hmenu .tnb ul > li:first-child::before{display: none;}
  697. header .hmenu .tnb ul > li a{display: block; padding: 5px 0; color: #888; font-weight: 200; font-size: 1.5rem;}
  698. header .hmenu .tnb ul > li a.on{color: #222; font-weight: 400; border-bottom: #9f7952 solid 2px;}
  699. */
  700. header .hmenu .bng{background: #ffffff;}
  701. header .hmenu .bng .d1 > li{position: relative;height: 7.2rem;border-bottom: 0.1rem solid #eeeeee;}
  702. header .hmenu .bng .d1 > li > a{display: block;padding: 0 2.0rem;line-height: 7.2rem;font-size: 1.8rem;font-weight: 400; font-family: 'Lato'; color: #222;}
  703. header .hmenu .bng .d1 > li > a::after{content: '';display: block; clear:both;}
  704. header .hmenu .bng .d1 > li > a span{float: right;}
  705. header .hmenu .bng .d1 > li > a span img{opacity: 0.3;max-width: 8.333rem;max-height: 4.533rem;width: auto;height: auto;vertical-align: middle;}
  706. header .hmenu .bng .d1 > li.folder::before{content: ''; display: block; position: absolute; right: 5px; top: 15px; width: 1px; height: 12px; background-color: #222;}
  707. header .hmenu .bng .d1 > li.folder::after{content: ''; display: block; position: absolute; right: 0; top: 20px; width: 12px; height: 1px; background-color: #222;}
  708. header .hmenu .bng .d1 > li.folder.on::before{display: none;}
  709. header .hmenu .bng .d1 > li.folder.on::after{background-color: #9f7952;}
  710. header .hmenu .bng .d1 > li.folder.on > a{color: #9f7952;}
  711. header .hmenu .bng .d1 > li.folder.on .d2{display: block;}
  712. header .hmenu .bng .d2{display: none; border-top: #e5e5e5 solid 1px; border-bottom: #e5e5e5 solid 1px; padding: 20px 0; height: 0;}
  713. header .hmenu .bng .d2 > li{position: relative; padding-left: 15px;}
  714. header .hmenu .bng .d2 > li::after{content: ''; display: block; position: absolute; right: 2px; top: 20px; width: 10px; height: 10px; border: #666 solid; border-width: 1px 1px 0 0; -webkit-transform: translateY(-50%) rotate(45deg); transform: translateY(-50%) rotate(45deg);}
  715. header .hmenu .bng .d2 > li > a{display: block; padding: 8px 0; font-size: 1.7rem; color: #222;}
  716. header .hmenu .bng .d2 > li.folder::after{content: ''; display: block; position: absolute; right: 2px; top: 20px; width: 10px; height: 10px; border: #666 solid; border-width: 1px 1px 0 0; -webkit-transform: translateY(-50%) rotate(135deg); transform: translateY(-50%) rotate(135deg);}
  717. header .hmenu .bng .d2 > li.folder.on::after{top: 16px; -webkit-transform: translateY(-50%) rotate(-45deg); transform: translateY(-50%) rotate(-45deg);}
  718. header .hmenu .bng .d2 > li.folder.on .d3{display: block;}
  719. header .hmenu .bng .d3{display: none; padding: 0 0 0 10px; height: 0;}
  720. header .hmenu .bng .d3 > li{position: relative; padding-left: 15px;}
  721. header .hmenu .bng .d3 > li::before{content: ''; display: block; position: absolute; left: 2px; top: 15px; width: 4px; height: 4px; background-color: #999;}
  722. header .hmenu .bng .d3 > li > a{display: block; padding: 8px 0; font-size: 1.5rem; color: #222;}
  723. header .hmenu .bnb{background-color: #f5f5f5; position: relative;}
  724. header .hmenu .bnb ul > li{position: relative;}
  725. header .hmenu .bnb ul > li::after{content: ''; display: block; position: absolute; right: 2px; top: 20px; width: 10px; height: 10px; border: #9f7952 solid; border-width: 1px 1px 0 0; -webkit-transform: translateY(-50%) rotate(45deg); transform: translateY(-50%) rotate(45deg);}
  726. header .hmenu .bnb ul > li > a{display: block; padding: 8px 0; font-size: 1.5rem; color: #9f7952;}
  727. header .hmenus {position: absolute;left: 0;bottom: 100%;background-color: rgba(0, 0, 0, 0.0);padding: 0 0 0 0;-webkit-box-sizing: border-box;box-sizing: border-box;width: 100vw;height: 100vh;-webkit-transition: all 0 ease-out;transition: all 0 ease-out;}
  728. header .hmenus .inner {padding: 0 25px;background-color: #fff;position: relative;top: 0;-webkit-transition: all 0.5s ease-out;transition: all 0.5s ease-out;}
  729. header .hmenus.on {bottom: 0;}
  730. header .hmenus.on .inner {top: 100%;}
  731. header .hmenus .scrollWrap {height: calc(100vh - 50px);-webkit-box-sizing: border-box;box-sizing: border-box;overflow-y: auto;}
  732. /*
  733. header .hmenus .tnb{padding-top: 15px; height: 50px; -webkit-box-sizing: border-box;box-sizing: border-box;}
  734. header .hmenus .tnb ul::after{content: '';display: block; clear: both;}
  735. header .hmenus .tnb ul > li{float: left; position: relative; padding: 0 12px;}
  736. header .hmenus .tnb ul > li::before{content: ''; display: block; position: absolute;left: 0;top: 50%;width: 3px;height: 3px; background-color: #c1c1c1; border-radius: 0%;}
  737. header .hmenus .tnb ul > li:first-child{padding-left: 0;}
  738. header .hmenus .tnb ul > li:first-child::before{display: none;}
  739. header .hmenus .tnb ul > li a{display: block; padding: 5px 0; color: #888; font-weight: 200; font-size: 1.5rem;}
  740. header .hmenus .tnb ul > li a.on{color: #222; font-weight: 400; border-bottom: #9f7952 solid 2px;}
  741. */
  742. header .hmenus .bng{background: #ffffff;}
  743. header .hmenus .bng .d1 > li{position: relative;}
  744. header .hmenus .bng .d1 > li > a{display: block; padding: 8px 0; font-size: 2.8rem; font-family: 'Lato'; color: #222;}
  745. header .hmenus .bng .d1 > li.folder::before{content: ''; display: block; position: absolute; right: 5px; top: 15px; width: 1px; height: 12px; background-color: #222;}
  746. header .hmenus .bng .d1 > li.folder::after{content: ''; display: block; position: absolute; right: 0; top: 20px; width: 12px; height: 1px; background-color: #222;}
  747. header .hmenus .bng .d1 > li.folder.on::before{display: none;}
  748. header .hmenus .bng .d1 > li.folder.on::after{background-color: #9f7952;}
  749. header .hmenus .bng .d1 > li.folder.on > a{color: #9f7952;}
  750. header .hmenus .bng .d1 > li.folder.on .d2{display: block;}
  751. header .hmenus .bng .d2{display: none; border-top: #e5e5e5 solid 1px; border-bottom: #e5e5e5 solid 1px; padding: 20px 0; height: 0;}
  752. header .hmenus .bng .d2 > li{position: relative; padding-left: 15px;}
  753. header .hmenus .bng .d2 > li::after{content: ''; display: block; position: absolute; right: 2px; top: 20px; width: 10px; height: 10px; border: #666 solid; border-width: 1px 1px 0 0; -webkit-transform: translateY(-50%) rotate(45deg); transform: translateY(-50%) rotate(45deg);}
  754. header .hmenus .bng .d2 > li > a{display: block; padding: 8px 0; font-size: 1.7rem; color: #222;}
  755. header .hmenus .bng .d2 > li.folder::after{content: ''; display: block; position: absolute; right: 2px; top: 20px; width: 10px; height: 10px; border: #666 solid; border-width: 1px 1px 0 0; -webkit-transform: translateY(-50%) rotate(135deg); transform: translateY(-50%) rotate(135deg);}
  756. header .hmenus .bng .d2 > li.folder.on::after{top: 16px; -webkit-transform: translateY(-50%) rotate(-45deg); transform: translateY(-50%) rotate(-45deg);}
  757. header .hmenus .bng .d2 > li.folder.on .d3{display: block;}
  758. header .hmenus .bng .d3{display: none; padding: 0 0 0 10px; height: 0;}
  759. header .hmenus .bng .d3 > li{position: relative; padding-left: 15px;}
  760. header .hmenus .bng .d3 > li::before{content: ''; display: block; position: absolute; left: 2px; top: 15px; width: 4px; height: 4px; background-color: #999;}
  761. header .hmenus .bng .d3 > li > a{display: block; padding: 8px 0; font-size: 1.5rem; color: #222;}
  762. header .hmenus .bng{position: relative; width:100%; height:100%;background:rgba(0,0,0,.0); z-index:600;}
  763. /* header .hmenus .bng .nav_box.active{visibility:visible;} */
  764. header .hmenus .bng .lap{position:absolute; top:0; left:0; padding:0; width:100%; background:#fff;}
  765. header .hmenus .bng .nav_list{min-height:15rem; max-height:40rem; overflow-y:auto;}
  766. /* header .hmenus .bng .nav_box .nav_close{position:absolute; bottom:-3.8rem; left:50%; width:1.6rem; height:1.6rem; background-image: url(/images/mo/ico_pop_cls_w.png); background-repeat:no-repeat; background-position:center center; font-size:0; text-indent:-999999px; background-size: contain; -webkit-transform:translateX(-50%); transform:translateX(-50%);} */
  767. header .hmenus .bng .nav_list {padding:0;}
  768. header .hmenus .bng .nav ul {}
  769. header .hmenus .bng .nav ul > li {}
  770. header .hmenus .bng .nav ul > li .daps1{display:block; font-size:1.4rem; color:#666; font-weight:300; line-height:5rem; border-bottom:1px solid #ddd;}
  771. header .hmenus .bng .nav ul > li .daps2 li > a{display:block; font-size:1.4rem; font-weight:300; color:#222; line-height:4rem;}
  772. header .hmenus .bng .nav ul > li .daps2 li.on > a{color:#fd4802; font-weight:500; line-height:5rem;}
  773. header .hmenus .bnb{background-color: #f5f5f5; margin: 30px -25px 0 -25px; padding: 30px 25px; position: relative;}
  774. header .hmenus .bnb ul > li{position: relative;}
  775. header .hmenus .bnb ul > li::after{content: ''; display: block; position: absolute; right: 2px; top: 20px; width: 10px; height: 10px; border: #9f7952 solid; border-width: 1px 1px 0 0; -webkit-transform: translateY(-50%) rotate(45deg); transform: translateY(-50%) rotate(45deg);}
  776. header .hmenus .bnb ul > li > a{display: block; padding: 8px 0; font-size: 1.5rem; color: #9f7952;}
  777. /* gnb */
  778. body.header-show .app .gnb{top: 50px;}
  779. .app .gnb {position: -webkit-sticky; position: sticky; top: 0px; padding-right: 50px; background-color: #000; z-index: 9; transition: top 0.3s; width: 100%;}
  780. .app .gnb.expand{padding-right: 30px;}
  781. .app .gnb .gnb-inner{position: relative; width: 100%; padding: 9px 10px; overflow-x: scroll;}
  782. .app .gnb .gnb-inner::-webkit-scrollbar {display: none;}
  783. .app .gnb.expand .gnb-inner{width: 100%; overflow: unset; overflow-x: unset;}
  784. .app .gnb .gnb-inner ul{display: inline-block; white-space: nowrap;}
  785. .app .gnb.expand .gnb-inner ul{white-space: normal;}
  786. .app .gnb .gnb-inner ul li{display: inline-block; height: auto; padding: 10px; line-height: 17px;}
  787. .app .gnb .gnb-inner ul li a{color: #999; font-size: 16px;}
  788. .app .gnb .gnb-inner ul li.on a{color: #fff;}
  789. .app .gnb .btn-expand{position: absolute; right: 2px; top: 2px; width: 50px; height: 50px;}
  790. .app .gnb .btn-expand::before{content: '';position: absolute;top: 0;left: 0px;width: 30px;height: 50px;background: linear-gradient(90deg, rgba(0,0,0,0) 0%, #000 100%);}
  791. .app .gnb .btn-expand::after{content: '';position: absolute;left: 50%;top: 25%;width: 1.8rem;height: 2.0rem;/* transform: translate(-50%, -50%); */background: url(/images/mo/ico_btn_expand.png) center top/1.8rem 2.0rem no-repeat;}
  792. .app .gnb.expand .btn-expand::before{display:none}
  793. .app .gnb.expand .btn-expand::after {background: url(/images/mo/ico_btn_narrow.png) center bottom/1.8rem 2.0rem no-repeat;}
  794. main.container{margin-top: 0px; overflow: hidden;}
  795. main.container .inner:last-child{padding-bottom: 6.0rem; margin-bottom: 0;}
  796. /* .tabbar */
  797. .tabbar{-webkit-transform: translate(0, 55px);-ms-transform: translate(0, 55px);-moz-transform: translate(0, 55px); transform: translate(0, 55px);transition-duration: 0.3s; position: fixed;width: 100%;bottom: 0;background-color: #f8f8f8;z-index: 10; padding-bottom: constant(safe-area-inset-bottom);padding-bottom: env(safe-area-inset-bottom);}
  798. .tabbar.fixed{-webkit-transform: translate(0, 0);-ms-transform: translate(0, 0);-moz-transform: translate(0, 0);transform: translate(0, 0);}
  799. .tabbar .tabbar-inner{display: -webkit-box;display: -moz-box;display: -webkit-flex;display: -ms-flexbox;display: flex; -webkit-box-pack: justify;-moz-box-pack: justify;-ms-flex-pack: justify;-webkit-justify-content: space-between;justify-content: space-between; padding: 10px 20px;}
  800. .tabbar .tabbar-inner [class*=btn-]{display: block;width: 2.50rem; height: 2.2666rem; font-size: 0;position: relative;background: url(/images/mo/ico_tabbar.png) no-repeat center;background-size: 18.0rem 2.16rem;}
  801. .tabbar .tabbar-inner [class*=btn-].btn-menu{background-position: 0.1rem;}
  802. .tabbar .tabbar-inner [class*=btn-].btn-my{background-position: -3.7rem;}
  803. .tabbar .tabbar-inner [class*=btn-].btn-home{background-position: -7.5rem;}
  804. .tabbar .tabbar-inner [class*=btn-].btn-wish{background-position: -11.5rem;}
  805. .tabbar .tabbar-inner [class*=btn-].btn-history{background-position: -15.6rem;}
  806. /* Full메뉴 */
  807. #menuFull{width: 100%;height: 0;z-index: 999;visibility: hidden;background: rgba(255, 255, 255, 1);transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);top: 100%;position: fixed;left: 0;}
  808. #menuFull.on{ height: 100%; visibility: visible; top: 0;}
  809. .menu_cls {position: absolute;top: 2.4rem;right: 2.0rem;display: block;width: 2.0rem;height: 2.0rem;text-indent: -9999px;background-size: contain;background-repeat: no-repeat;background-position: center center;z-index: 98;background-image: url(/images/mo/ico_pop_cls.png);}
  810. .appSett {position: absolute;top: 2.4rem;right: 5.5rem;display: block;width: 2.0rem;height: 2.0rem;text-indent: -9999px;background-size: contain;background-repeat: no-repeat;background-position: center center;z-index: 98;background-image: url(/images/mo/ico_app_setting.png);}
  811. .fullHead {height: 5.2rem;}
  812. .fullHead .goHome {display: inline-block;width: auto;padding:2.4rem 2rem;}
  813. .fullHead a {display: inline-block;}
  814. .fullHead img {width: 10.666rem; height:1.6rem;}
  815. .fullBody {background:#f5f5f5;min-height: calc(100% - 5.2rem);max-height: calc(100% - 5.2rem);overflow-y: scroll;}
  816. .fullBody .inner {background:#ffffff;margin:0;padding:0;}
  817. .fullBody .inner .flow{display: inline-block;width: 49.0%;height: 100%;vertical-align: top;padding:2.5rem 0;}
  818. .fullBody .inner .flow li{width:100%;height:3.1333rem;line-height:3.1333rem;padding:0 0 0 2rem;border: 0;box-sizing: border-box;text-align: left;display: inline-block;}
  819. .fullBody .inner .flow span{font-size: 1.333rem;}
  820. .fullBody .btn_group {margin: 0;}
  821. .fullBody .btn_group div {margin:0;position: relative;}
  822. .fullBody .btn_group div button{border: 0;background: #f5f5f5;font-size: 1.2rem;}
  823. .fullBody .btn_group div button span{width: 100%;}
  824. .fullBody .btn_group div:first-child button::after{content: '';display: inline-block;width: 0.3rem;height: 2.0rem;background: #dddddd;position: absolute;top: 1.0rem;right: -0.2rem;}
  825. /* Full메뉴_카테고리 */
  826. .fullBody .fullCate {padding: 0 0 2rem;margin-bottom: 1.2rem;}
  827. .fullBody .fullCate > li > ul {display: none; background: #f5f5f5;}
  828. .fullBody .fullCate > li > a {display: block; padding:1.6rem 2.0rem; font-size: 1.4rem; font-weight: 400;font-family: 'Noto Sans kr', sans-serif;}
  829. .fullBody .fullCate > li > a:hover span {color: #fd4802; border-bottom: 1px solid #fd4802;}
  830. .fullBody .fullCate > li.hasCate > a {background: url('/images/mo/ico_full.png') no-repeat right 2.0rem center;background-size: 0.8rem 1.4rem;}
  831. .fullBody .fullCate > li.hasCate > a.on {background: url('/images/mo/ico_full_on.png') no-repeat right 2.0rem center; background-size: 1.4rem 0.8rem; font-size: 1.4rem; color: #fd4802;}
  832. .fullBody .fullCate > li.hasCate > a.on span {border-bottom: 1px solid #fd4802;}
  833. .fullBody .fullCate > li.hasCate > ul {padding: 1.5rem 0;}
  834. .fullBody .fullCate > li.hasCate > ul > li > a {display: block; font-size: 1.3rem; color: #888; padding:0.87rem 4.3rem;}
  835. .fullBody .fullCate > li.hasCate > ul > li > a:hover span {color: #fd4802; border-bottom: 1px solid #fd4802;}
  836. .fullBody .quick_cate_txt {border-top: 1px solid #ddd; padding:30px;}
  837. .fullBody .quick_cate_txt a {display: inline-block; position: relative; font-size: 14px; color: #888; margin-right: 20px;}
  838. .fullBody .quick_cate_txt a:after {content:''; position: absolute; top: 2px; right: -12px; width: 1px; height: 8px; background: #ddd;}
  839. .fullBody .quick_cate_txt a:last-child:after {display: none;}
  840. /* footer */
  841. footer{background-color: #f1f1f1;}
  842. footer .btn_top{position: fixed; bottom: 30px; right: 25px; opacity: 0; background-color: rgba(0, 0, 0, 0.4); width: 45px; height: 45px; border-radius: 50%; font-size: 0; z-index: 50;}
  843. footer .btn_top span{display: block; width: 24px; height: 24px; margin: 0 auto; position: relative;}
  844. footer .btn_top span i{display: block; position: absolute; background: #fff;}
  845. footer .btn_top span i.gl1{left: 4px; top: 2px; width: 10px; height: 2px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg);}
  846. footer .btn_top span i.gl2{left: 50%; top: 0; -webkit-transform: translateX(-50%); transform: translateX(-50%); width: 2px; height: 20px;}
  847. footer .btn_top span i.gl3{right: 4px; top: 2px; width: 10px; height: 2px; -webkit-transform: rotate(45deg); transform: rotate(45deg);}
  848. footer .f1{background-color: #f1f1f1;padding: 0 0 4.5rem; position: relative;}
  849. footer .f1 .inner{padding: 0 2.0rem 2.0rem;}
  850. footer .f1 .link{padding-top: 20px;}
  851. footer .f1 .link::after{content: ''; display: block; clear: both;}
  852. footer .f1 .link > li{float: left; position: relative; padding: 0 1.2rem;}
  853. footer .f1 .link > li::before{content: '';
  854. /* display: block; position: absolute; left: 0; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 3px; height: 3px; background-color: #999; */
  855. display: block; position: absolute; left: 0; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 2px; height: 14px; background-color: #e3e3e3;
  856. }
  857. footer .f1 .link > li:first-child{padding-left: 0;}
  858. footer .f1 .link > li:first-child::before{display: none;}
  859. footer .f1 .link > li.fn{clear: both; padding-left: 0;}
  860. footer .f1 .link > li.fn::before{display: none;}
  861. footer .f1 .link > li a{display: block; padding: 5px 0; color: #222; font-size: 1.3rem; font-weight: 200;}
  862. footer .f1 .wider{}
  863. footer .f1 .wider > li{padding: 0 1.5rem;}
  864. footer .f1 .wider > li a{color: #666; font-weight: 300; font-size: 1.5rem;}
  865. footer .f1 .info::after{content: ''; display: block; clear: both;}
  866. footer .f1 .info > li{float: left; position: relative; padding: 5px 4px; color: #666; font-size: 1.5rem; font-weight: 200;}
  867. footer .f1 .info > li:first-child::before{display: none;}
  868. footer .f1 .info > li.fn{clear: both; padding-left: 0;}
  869. footer .f1 .info > li.fn::before{display: none;}
  870. footer .f1 .copy{font-weight: 100; font-size: 1.2rem; color: #888888; padding-top: 10px; letter-spacing: -0.025rem;}
  871. footer .f1 .sns{font-size: 0; padding-top: 20px;}
  872. footer .f1 .sns::after{content: ''; display: block; clear: both;}
  873. footer .f1 .sns > li{float: left; margin-left: 10px;}
  874. footer .f1 .sns > li:first-child{margin-left: 0;}
  875. footer .f1 .sns > li > a{display: block; width: 2.5rem; height: 2.5rem; border-radius: 0%;}
  876. footer .f1 .sns > li > a.insta{background: #fff url("/images/mo/ico_ft_insta.png") 50% 50% no-repeat; background-size: auto 2.5rem;}
  877. footer .f1 .sns > li > a.facebook{background: #fff url("/images/mo/ico_ft_facebook.png") 50% 50% no-repeat; background-size: auto 2.5rem;}
  878. footer .collapse{position: relative; border-bottom: 1px solid #dadada;}
  879. footer .collapse .btnWrap .btn_infos{position: relative; width: 100%; height: 67px; background-color: #f1f1f1; font-size: 1.5rem; font-weight: 400; text-align: left; color: #222;}
  880. footer .collapse .btnWrap .btn_infos::after{content: ''; display: inline-block; margin-left: 10px; margin-bottom: 0px; width: 1.4rem; height: 0.8rem; background: #f1f1f1 url(/images/mo/ico_fold_arrow1.png) 50% 0% no-repeat; background-size: 1.4rem; /* background-size: auto 3.9rem; */ -webkit-transform: rotate(180deg); transform: rotate(180deg);}
  881. footer .collapse .btnWrap .btn_infos.on{/* background-color: #222; */ /* color: #fff; */}
  882. footer .collapse .btnWrap .btn_infos.on::after{margin-bottom: 0; -webkit-transform: rotate(0); transform: rotate(0);}
  883. footer .collapse .infos{width: 100%; height: 0; overflow: hidden;-webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.5s ease-out; transition: all 0.5s ease-out;}
  884. footer .collapse .infos::after{content: ''; display: block; clear: both;}
  885. footer .collapse .infos > li{float: left; position: relative; padding: 5px 4px; color: #666; font-size: 1.2rem; font-weight: 200;}
  886. footer .collapse .infos > li.fn{clear: both; padding-left: 0;}
  887. footer .collapse .infos.on{padding: 0px 0px 20px 0; height: auto;}
  888. /* sub page slide nav */
  889. .lnb{padding: 1.46rem 2.0rem 1.0rem 2.0rem; border-bottom: #e5e5e5 solid 1px; box-sizing: border-box;}
  890. .lnb .swiper-wrapper{transform: translate3d(0px, 0px, 0px);}
  891. .lnb ul > li{width: auto; text-align: center;}
  892. .lnb ul > li button,
  893. .lnb ul > li a{padding: 1.46rem 0.5rem 1.3rem 0.5rem; position: relative;}
  894. .lnb ul > li.on button,
  895. .lnb ul > li.on a{color: #fd4802;}
  896. .lnb ul > li.on button::after,
  897. .lnb ul > li.on a::after{content: ''; display: block; width: 100%; height: 3px; background-color: #fd4802; color: #fd4802; position: absolute; bottom: 0; left: 50%; right: 50%; transform: translate(-50%);}
  898. /* category nav : Collection */
  899. .cnb{background-color: #f5f5f5; padding: 0 25px;}
  900. .cnb.folder{position: relative; height: 50px; overflow: hidden; display: block;}
  901. .cnb.folder.on .btn_cnb::before{content: ''; width: 0; height: 0; display: none;}
  902. .cnb.folder.on .btn_cnb::after{top: 20px; -webkit-transform: translateY(-50%) rotate(-45deg); transform: translateY(-50%) rotate(-45deg);}
  903. .cnb.folder.on .tit{display: block;}
  904. .cnb.folder.on ul{width: 100%; display: block; height: 100%;}
  905. .cnb.folder.on{display: table; padding: 0 25px 10px; -webkit-transition: 0.8s ease-in-out; transition: 0.8s ease-in-out;}
  906. .cnb .tit{display: none; padding-top: 15px; font-size: 1.7rem; font-weight: 600;}
  907. .cnb .btn_cnb{position: absolute; top: 8px; right: 15px; width: 35px; height: 35px; z-index: 9;}
  908. .cnb .btn_cnb::before{content: ''; width: 70px; height: 70px; position: absolute; right: -20px; top: -10px; background: white; background: -webkit-gradient(linear, left top, right top, color-stop(50%, white), color-stop(50%, white)); background: linear-gradient(to right, white 50%, white 50%); box-shadow: -35px 0 20px rgba(255, 255, 255, 0.9); -moz-box-shadow: -35px 0 20px rgba(255, 255, 255, 0.9); -webkit-box-shadow: -35px 0 20px rgba(255, 255, 255, 0.9);}
  909. .cnb .btn_cnb::after{content: ''; display: block; position: absolute; left: 12px; top: 15px; width: 10px; height: 10px; border: #222 solid; border-width: 2px 2px 0 0; -webkit-transform: translateY(-50%) rotate(135deg); transform: translateY(-50%) rotate(135deg);}
  910. .cnb ul{width: -webkit-max-content; width: -moz-max-content; width: max-content;}
  911. .cnb ul::after{content: ''; display: block; clear: both;}
  912. .cnb ul > li{float: left; margin: 10px 10px 0 0;}
  913. .cnb ul > li button{background-color: #fff; padding: 5px 10px; color: #666; border-radius: 100px; font-size: 1.5rem;}
  914. .cnb ul > li button.on{background-color: #3d3d3d; color: #fff;}
  915. /* page nav */
  916. .pnb ul{border-bottom: #e5e5e5 solid 1px;}
  917. .pnb ul::after{content: ''; display: block; clear: both;}
  918. .pnb ul > li{float: left; width: auto; padding: 0 1.6rem;}
  919. .pnb ul > li:first-child{padding: 0 1.6rem 0 1.0rem;}
  920. .pnb ul > li a{display: block; width: 100%; padding: 1.46rem 0 1.3rem 0; text-align: center; position: relative;}
  921. .pnb ul > li a.on{color: #fd4802;}
  922. .pnb ul > li a.on::after{content: ''; display: block; width: 100%; height: 3px; background-color: #fd4802; color: #fd4802; position: absolute; bottom: 0; left: 50%; right: 50%; transform: translate(-50%);}
  923. .pnb ul > li a.prev{color: #666; font-size: 1.4rem;}
  924. .pnb ul > li a.prev::before{content: ''; display: block; position: absolute; left: 20%; top: 50%; width: 6px; height: 6px; border: #666 solid; border-width: 1px 1px 0 0; -webkit-transform: translateY(-50%) rotate(-135deg); transform: translateY(-50%) rotate(-135deg);}
  925. .pnb ul > li a.next{color: #666; font-size: 1.4rem;}
  926. .pnb ul > li a.next::before{content: ''; display: block; position: absolute; right: 20%; top: 50%; width: 6px; height: 6px; border: #666 solid; border-width: 1px 1px 0 0; -webkit-transform: translateY(-50%) rotate(45deg); transform: translateY(-50%) rotate(45deg);}
  927. .pnb ul > li a.list{color: #9f7952; font-weight: 600; font-size: 1.5rem;}
  928. .pnb ul > li a.list::before{content: ''; display: block; position: absolute; left: 20%; top: 50%; width: 12px; height: 6px; border: #9f7952 solid; border-width: 2px 0 2px 0; -webkit-transform: translateY(-50%); transform: translateY(-50%);}
  929. /* AD area (광고 문구 또는 배너) */
  930. .ADwrap {padding: 0.5rem 0 1.5rem 0rem;}
  931. .ADwrap .adcopy {font-weight: 400;margin-top: 1.5rem;display: inline-block;} /* my_review 참고 */
  932. /* Mesage Custom */
  933. .once {padding: 2.33rem 2.0rem;background: #ffffff;}
  934. .alert {padding: 15px;border: 1px solid transparent; border-radius: 4px;margin-bottom: 10px;line-height: 21px; background-color: #dddddd;color: #666666;border-color: #dddddd;}
  935. button.alertCls {-webkit-appearance: none;padding: 0;cursor: pointer;background: 0 0;border: 0;}
  936. .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;}
  937. .alertCls:hover, .alertCls:focus {color: #000;text-decoration: none;cursor: pointer;filter: alpha(opacity=50);opacity: .5;}
  938. /* module setup */
  939. /* .imgWrap */
  940. .imgWrap{position: relative;}
  941. .imgWrap .btn_play{position: absolute; left: 0; bottom: 0; width: 32px; height: 32px; font-size: 0; background-color: rgba(0, 0, 0, 0.5);}
  942. .imgWrap .btn_play::before{content: ''; display: block; position: absolute; left: 12px; top: 10px; width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 8px solid none; border-left: 8px solid #fff;}
  943. .txt_counter{padding-top: 30px; font-size: 1.4rem;}
  944. .txt_counter em{color: #9f7952;}
  945. .noData{height: 50vh; font-size: 2.0rem; text-align: center;}
  946. .noData::before{content: ''; display: block; background: url("../images/icon_nodata.png") no-repeat 50% 50%; background-size: 75px auto; height: 200px;}
  947. /* titWrap, .tit */
  948. .titWrap{padding: 2.0rem 0 0 0; text-align: center; font-size: 1.8rem;}
  949. .tit{font-size: 1.4rem; font-weight: 400; color: #222222;}
  950. .exp{font-size: 1.1rem; font-weight: 200; color: #666666;}
  951. .list1 > li{font-size: 1.5rem; position: relative; padding-left: 8px; -webkit-box-sizing: border-box; box-sizing: border-box;}
  952. .list1 > li::after{content: ''; display: block; clear: both;}
  953. .list1 > li::before{content: ''; display: block; position: absolute; left: 0; top: 0.5em; width: 3px; height: 3px; background-color: #666;}
  954. .list_col2::after{content: ''; display: block; clear: both;}
  955. .list_col2 > li{float: left; width: 50%;}
  956. .list_col3::after{content: ''; display: block; clear: both;}
  957. .list_col3 > li{float: left; width: 33.33%;}
  958. .txt_ref{margin-top: 1.5rem;padding-left: 1.5rem;font-size: 1.1rem;color: #666;font-weight: 200;position: relative;}
  959. .txt_ref::before{content: '※'; display: block; position: absolute; left: 0; top: 0;}
  960. .txt_blt{padding-left: 8px; position: relative;}
  961. .txt_blt::before{content: ''; display: block; position: absolute; left: 0; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 3px; height: 3px; background-color: #666;}
  962. /* Tab */
  963. .tabWrap {}
  964. .tabIndex {width: 100%; /*margin-bottom: 0.85em;*/ box-sizing: border-box;-webkit-box-sizing: border-box;display: inline-flex;justify-content: space-around;}
  965. .tabIndex:after {content: "";clear: both;display: table;}
  966. .tabIndex {background: #ffffff;border-bottom: #e5e5e5 solid 1px;}
  967. .tabIndex li {float: left;flex: auto;text-align: center;}
  968. .tabIndex li a {display: block;color:#222222; font-weight: 400; padding: 1.0rem 2.0vw;}
  969. .tabIndex li.active a {border-bottom: 3px solid #fd4802; color: #fd4802;}
  970. .tab_cont {width: 100%;height:100%; background: #f5f5f5;/*padding: 12px 0rem 0 0rem;*/text-align: left;box-sizing: border-box;}
  971. .tab_cont .inner {margin-bottom: 2.3rem;}
  972. .tab_cont {display: none;}
  973. .tab_cont.active {display: block;}
  974. /* table title */
  975. .tbltitWrap{margin-top: 3.0rem;}
  976. .tbltitWrap::after{content: ''; display: block; clear: both;}
  977. .tbltitWrap h2{float: left; padding: 0 !important; font-size: 2.4rem;}
  978. .tbltitWrap h3{float: left; font-size: 1.7rem;}
  979. .tbltitWrap .exp{float: right; padding-top: 5px; font-size: 1.4rem; color: #888;}
  980. .tbltitWrap h2 + .exp{padding-top: 14px !important;}
  981. /* table */
  982. .tblWrap{margin-top: 10px;}
  983. .tblWrap + .tblWrap{margin-top: 30px;}
  984. .tblWrap table{width: 100%; border-top: #222 solid 1px;}
  985. .tblWrap table tr th, .tblWrap table tr td{border-left: #e5e5e5 solid 1px; border-bottom: #e5e5e5 solid 1px; padding: 1.4rem 0.5rem; text-align: center; color: #666; font-size: 1.5rem;}
  986. .tblWrap table tr th:first-child, .tblWrap table tr td:first-child{border-left: none;}
  987. .tblWrap table tr th.tL, .tblWrap table tr td.tL{text-align: left;}
  988. .tblWrap table tr th.tR, .tblWrap table tr td.tR{text-align: left;}
  989. .tblWrap table tr th strong, .tblWrap table tr td strong{font-weight: 400;color: #222;}
  990. .tblWrap table tr th.lB, .tblWrap table tr td.lB{border-bottom: none;}
  991. .tblWrap table tr.sum th, .tblWrap table tr.sum td{color: #222; font-weight: 400;}
  992. .tblWrap table tr.sum2 th, .tblWrap table tr.sum2 td{color: #fd4802;}
  993. .tblWrap table tr.lB th, .tblWrap table tr.lB td{border-bottom: none;}
  994. .tblWrap table thead th, .tblWrap table thead td{font-weight: 400;color: #222;}
  995. /* 테이블 type1 수평 행,열별 구분선 없음 */
  996. .tbl.type1 {padding:1.5rem 0; border-top:1px solid #000; border-bottom:1px solid #ddd;}
  997. .tbl.type1 table {text-align:left; word-break:keep-all;}
  998. .tbl.type1 table th,
  999. .tbl.type1 table td {position:relative; /*padding:1.0rem 4.0rem;*/ font-weight:200; font-size:1.6rem; letter-spacing:-0.025em;}
  1000. .tbl.type1 table th {padding:1.0rem 0rem 1.0rem 4.0rem; font-weight:300;}
  1001. .tbl.type1 table td {padding:1.0rem 4.0rem 1.0rem 0rem;}
  1002. /* .tbl.type1 table tr td:first-child {padding-left:4.0rem;}
  1003. .tbl.type1 table tr td:last-child {padding-right:4.0rem;} */
  1004. /* 테이블 type2 - 수직형 행,열별 구분선 있음 */
  1005. .tbl.type2 {padding:0; border-top:1px solid #000;}
  1006. .tbl.type2 table {word-break:keep-all;}
  1007. .tbl.type2 table th,
  1008. .tbl.type2 table td {position:relative; padding:2.0rem 0; border-bottom:1px solid #ddd; font-weight:200; font-size:1.6rem; letter-spacing:-0.025em; text-align:center;}
  1009. .tbl.type2 table th {font-weight:500;}
  1010. /* 테이블 type3 - 결제정보 (구 버전) */
  1011. .tbl.type3 {padding:0; border:1px solid #000;}
  1012. .tbl.type3 table {word-break:keep-all;}
  1013. .tbl.type3 table th,
  1014. .tbl.type3 table td {position:relative; padding:25px 4.0rem; border-bottom:1px solid #ddd; border-left:1px solid #ddd; font-weight:200; font-size:1.6rem; letter-spacing:-0.025em; text-align:left; vertical-align:top;}
  1015. .tbl.type3 table th {font-weight:300;}
  1016. .tbl.type3 table tr:last-child td {border-bottom:none;}
  1017. /* 테이블 type4 - 수평 th 컬러구분 */
  1018. .tbl.type4 table {border-top:1px solid #000;}
  1019. .tbl.type4 table th,
  1020. .tbl.type4 table td {padding-top:25px; padding-bottom:25px; border-bottom:1px solid #ddd; font-size:1.6rem; letter-spacing:-0.5px; text-align:center;}
  1021. .tbl.type4 table th {background:#f5f5f5; color:#222; font-weight:500;}
  1022. .tbl.type4 table td {position:relative; font-weight:200;}
  1023. /* 테이블 type5 - 수직형 행,열별, th구분선 있음 */
  1024. .tbl.type5 {padding:0; border-top:1px solid #000;}
  1025. .tbl.type5 table {word-break:keep-all;}
  1026. .tbl.type5 table th,
  1027. .tbl.type5 table td {position:relative; padding:2.0rem 0; font-size:1.6rem; letter-spacing:-0.025em; text-align:center;}
  1028. .tbl.type5 table td {border-bottom:1px solid #ddd; font-weight:200;}
  1029. .tbl.type5 table th {border-bottom:1px solid #000; font-weight:500;}
  1030. /* 테이블 type6 - 결제정보 (신 버전) */
  1031. .tbl.type6 {padding:35px 0; border-top:1px solid #000; border-bottom:1px solid #ddd;}
  1032. .tbl.type6 table {text-align:left; word-break:keep-all;}
  1033. .tbl.type6 table th,
  1034. .tbl.type6 table td {position:relative; padding:0rem 4.0rem; font-weight:200; font-size:1.6rem; letter-spacing:-0.025em; border-left:1px dashed #ddd; vertical-align:top;}
  1035. .tbl.type6 table th {font-weight:500;}
  1036. .tbl.type6 table tr td:first-child {border-left:none}
  1037. .tbl.type6 table tr td dl::after,
  1038. .tbl.type6 table tr td dl > div::after {content: '';display: block;clear: both;}
  1039. .tbl.type6 table tr td > dl {margin-top:2.0rem}
  1040. .tbl.type6 table tr td > dl:first-child {margin-top:0rem}
  1041. .tbl.type6 table td dl dt {float:left; font-size:1.6rem; font-weight:300; color:#222}
  1042. .tbl.type6 table td dl dd {float:right; font-size:1.5rem; font-weight:200; color:#222}
  1043. .tbl.type6 table td dl dd em {font-size:1.6rem;}
  1044. .tbl.type6 table td dl dd .btn.btn_sm {height:34px; margin-top:-8px; margin-left:1.0rem; padding:1.0rem 1.4rem; font-size:1.4rem;}
  1045. .tbl.type6 table td dl dd .btn.btn_sm:first-child {margin-left:0;}
  1046. .tbl.type6 table td dl dd .btn.btn_sm span {vertical-align:top; font-weight:200; line-height:1;}
  1047. .tbl.type6 table td dl dd .btn.btn_sm.btn_default {color:#222; border:1px solid #a7a7a7;}
  1048. .tbl.type6 table td dl .price {font-size:2.2rem; font-weight:700;}
  1049. .tbl.type6 table td dl .price em {font-size:2.4rem;}
  1050. .tbl.type6 table td dl .price .oder_total_price {color:#222}
  1051. .tbl.type6 table td dl .price .pay_total_price {color:#fd4802}
  1052. .tbl.type6 table td dl .price .return_total_price {color:#fd4802}
  1053. .tbl.type6 table td dl .save_point {position:relative; padding-left:22px;}
  1054. .tbl.type6 table td dl .save_point::before {content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:1.6rem; height:1.6rem; background:url('/images/pc/ico_point.png') no-repeat 0 50%;}
  1055. .tbl.type6 table td dl > div {margin-top:2.0rem;}
  1056. .tbl.type6 table td dl > div:first-child {margin-top:0rem}
  1057. .tbl.type6 table td dl > div.include_item {}
  1058. .tbl.type6 table td dl > div.include_item dt {padding-left:1.5rem; background:url('/images/pc/ico_bracket2.png') no-repeat 0 50%;}
  1059. /* 테이블 내용 나열 폼 */
  1060. .tbl th,
  1061. .tbl td {vertical-align:top;}
  1062. .tbl td .single_line::after {content:''; clear:both; display:block;}
  1063. .tbl td .single_line ul li {float:left; position:relative; padding:0rem 1.5rem; margin:0}
  1064. .tbl td .single_line ul li::before {content:''; position:absolute; width:1px; height:1.4rem; left:0rem; top:50%; transform:translateY(-50%); background:#ddd;}
  1065. .tbl td .single_line ul li:first-child {padding-left:0}
  1066. .tbl td .single_line ul li:first-child::before {display:none;}
  1067. .tbl td .single_line ul li > span {margin-right:0}
  1068. .tbl td .block_line {position:relative;}
  1069. .tbl td .block_line ul li {margin-top:5px; height:1.625em; /*line-height:1;*/}
  1070. .tbl td .block_line ul li:first-child {margin-top:0}
  1071. .tbl td .block_line ul li > span {vertical-align:top;}
  1072. .tbl td .block_line ul li .tag {margin-left:6px; margin-top:2px; vertical-align:top;}
  1073. .tbl td .block_line ul li .btn.btn_sm {height:34px; margin-top:-6px; padding:1.0rem 1.4rem; font-size:1.4rem; font-weight:200;}
  1074. /* fold-list : list_cate */
  1075. .list_cate{margin: 0 -25px; padding: 50px 25px 0 25px; border-bottom: #e5e5e5 solid 1px;}
  1076. .list_cate > li{border-top: #e5e5e5 solid 1px; margin: 0 -25px; padding: 0 25px; position: relative;}
  1077. .list_cate > li::after{content: ''; display: block; position: absolute; right: 25px; top: 30px; width: 10px; height: 10px; border: #222 solid; border-width: 2px 2px 0 0; transform: translateY(-50%) rotate(135deg);}
  1078. .list_cate > li.on::after{top: 35px; border: #666 solid; border-width: 2px 2px 0 0; transform: translateY(-50%) rotate(-45deg);}
  1079. .list_cate > li dl > dt button {width: 100%; padding: 2.0rem 0; text-align: left; font-size: 1.6rem; font-weight: 400; line-height: 1.4;}
  1080. .list_cate > li dl > dd{margin: 0 -25px; padding: 0 25px; box-sizing: border-box; height: 0; overflow: hidden; background-color: #f5f5f5; border-top: transparent solid 1px;}
  1081. .list_cate > li.on dl > dd{height: auto; padding-bottom: 3.0rem; border-top: #666 solid 1px;}
  1082. .list_cate > li dl > dd .tit{padding-top: 3.0rem; font-size: 1.4rem; line-height: 1.5;}
  1083. .list_cate > li dl > dd ol li{margin-top: 1.5rem; font-size: 1.4rem; position: relative; padding-left: 8px;}
  1084. .list_cate .imgWrap {position: relative;}
  1085. .list_cate .imgWrap::after {content: ''; display: block; clear: both;}
  1086. .list_cate .imgWrap span{display: inline !important; float: left; margin: 0 10px 0 0; width: 7.0rem; height: 7.0rem;background: #ffffff; border: 1px solid #dddddd; box-sizing: border-box; position: relative;}
  1087. .list_cate .imgWrap img{width: auto; height: auto; max-height: 6.8rem; max-width: 6.8rem; margin: auto 0; position: absolute; top: 50%; bottom: auto; left: 50%; right: 0; transform: translate(-50%, -50%); cursor: pointer;}
  1088. /* folding Group */
  1089. .fold_head a::after ,
  1090. .fold_head a div::after,
  1091. .fold_head .fold_tit::after {content: ''; display: block; clear: both;}
  1092. .foldGroup {width: 100%; margin-bottom: 20px;}
  1093. .foldGroup > ul > li {position: relative; width: 100%; margin: 0px; border: 0px; border-top: 1px solid #dddddd; border-bottom: 1px solid #dddddd; box-sizing: border-box;}
  1094. .foldGroup > ul > li:first-child {border-top: 1px solid #fff;}
  1095. .foldGroup > ul > li+li {margin:0; border-top:0px solid; box-sizing:border-box;}
  1096. .foldGroup .fold_head,
  1097. .foldGroup .fold_foot,
  1098. .foldGroup .fold_cont {width:100%;}
  1099. .foldGroup .fold_head {position: relative; width:100%; border-bottom: 0;}
  1100. .fold_head {padding: 0px; border-bottom: 1px solid transparent;}
  1101. .fold_head::after {content: ''; position: absolute; display: inline-block; top:50%; left: auto; right:20px; transform: translateY(-50%); width:13px; height:7px; background: url('/images/mo/ico_fold_arrow1.png'); background-repeat: no-repeat; background-position: 0 100%; background-size: cover;}
  1102. .fold_head.on::after {background-repeat: no-repeat; background-position:0 0%;}
  1103. .foldGroup .fold_head a {display:block; width:inherit; height:100%; padding:1.4rem 2rem; box-sizing:border-box;}
  1104. .fold_head .fold_tit {position:relative;}
  1105. .fold_head .fold_tit span { position: relative; height: auto; display:inline-block; font-size:1.3rem; font-weight:300; color: #222; text-decoration: none; letter-spacing:-0.025em;}
  1106. .fold_head .fold_state {display:inline-block!important; width:auto; box-sizing:border-box; text-align: center; font-size:12px; font-weight: 300; color:#888;}
  1107. .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;}
  1108. .fold_head .fold_state.fix {color:#222;}
  1109. .fold_head .fold_state.done {color:#fff; background-color:#fd4801;}
  1110. .fold_head .fold_state.doing {color:#fff; background-color:#aaa;}
  1111. .fold_head .fold_category {width:100px; font-weight:200; text-align:center; color:#888;}
  1112. .fold_head .data,
  1113. .fold_head .id{font-size:12px; font-weight: 200; color:#888;}
  1114. .fold_head .id{position:relative; padding-right:1rem; margin-right:1rem;}
  1115. .fold_head .id:after{display:block; content:''; position:absolute; right:0; top:2px; width:1px; height:0.8rem; background-color:#dddddd;}
  1116. .foldGroup .fold_cont {display:none; padding: 0; position: relative; color:#000; font-weight:200; font-size:14px; line-height:1.625;}
  1117. .fold_cont > div:first-of-type {border-top:none;}
  1118. .fold_cont .img_group .thumb_pic {position:relative; display:inline-block; width:74px; height:74px; border:1px solid #ddd; margin-right:4px; box-sizing:border-box; overflow:hidden;}
  1119. .fold_cont .img_group .thumb_pic img {position:absolute; top:50%; transform: translateY(-50%); width:100%; height: auto;}
  1120. .fold_cont .fold_detail,
  1121. .fold_cont .fold_answer {position:relative; padding:1.8rem 2rem;}
  1122. .fold_cont .fold_answer {border-top:1px solid #ddd }
  1123. .fold_cont .fold_detail .btn {margin-top:25px; padding:6px 13px; color:#222; border-color:#a1a1a1; font-size:12px; font-weight:200; background:none;}
  1124. .fold_cont .fold_detail .img_group {margin-top: 24px; overflow: hidden;}
  1125. .fold_cont .fold_answer > div {position:relative;}
  1126. .fold_head .fold_tit span.prod{font-size:12px; font-weight:200; color: #888; /*white-space:nowrap; text-overflow:ellipsis; overflow:hidden;*/}
  1127. .fold_detail,
  1128. .fold_answer{background:#f5f5f5;}
  1129. .fold_answer .data{font-size:12px; font-weight: 200; color:#888;}
  1130. .fold_answer div.answer_head{color:#222; font-weight:300;}
  1131. .fold_answer .answer_body{font-weight:200;}
  1132. .fold_answer .answer_foot{position:relative}
  1133. .fold_answer .btn_delete{position:absolute; right:0; bottom:0; font-size:12px; color:#777;}
  1134. .fold_answer .btn_delete > span{position:relative; display:inline-block;}
  1135. .fold_answer .btn_delete > span:after{display:block; content: ''; position:absolute; left:0; bottom:-2px; width:100%; height:1px; background-color:#777777;}
  1136. .fold_head .fold_state{padding:3px 5px; margin-right:5px;}
  1137. .fold_head .prod{padding:3px 0;}
  1138. .fold_head .fold_state{background-color:#000; color:#fff;}
  1139. .fold_head .fold_tit > div{padding-right:3rem;}
  1140. .fold_head .fold_tit > div.lap1{margin-bottom:3px;/* display:flex;*/}
  1141. .fold_head .fold_tit > div.lap2{margin-bottom:3px;/* white-space:nowrap; text-overflow:ellipsis; overflow:hidden;*/}
  1142. .case1 .fold_head .prod{padding-bottom:0;}
  1143. .case1 .fold_head .prod{padding-left:0;}
  1144. .case2 .fold_head::after{margin-top:-10px;}
  1145. .case2 .fold_cont .fold_detail > div,
  1146. .case2 .fold_cont .fold_answer > div{position:relative; padding-left:17px;}
  1147. .case2 .fold_cont .fold_detail > div:before,
  1148. .case2 .fold_cont .fold_answer > div:before{content:''; position:absolute; left:0; top:0; font-size:1.4rem; font-weight:400;}
  1149. .case2 .fold_cont .fold_detail > div:before{content:'Q.'; color:#222222;}
  1150. .case2 .fold_cont .fold_answer > div:before{content:'A.'; color:#fd4802}
  1151. /* popover style Tooltip */
  1152. .tip_tit{background-color: transparent;border-radius: 100%;border: 1px solid #888888;color: #fd4802;cursor: default;display: inline-block;font-size: 1.2rem;font-weight: 600;line-height: 1.4rem;position: relative;text-align: center;width: 1.5rem;height: 1.5rem;}
  1153. .tip_wrap {position: relative;display: inline-block;}
  1154. .tip_contents {width: auto;opacity: 0;visibility: hidden;position: absolute;transform: scale(.6) translateX(-45%) translateY(90%);color:#888888;border: 1px solid #ffe4d9;background-color: #fff6f2;padding: 1.5rem;}
  1155. .tip_contents:before {position: absolute;z-index: -1;content: "";right: calc(50% - 10px);top: -8px;border-style: solid;border-width: 0 1.0rem 1.0rem 1.0rem;border-color: transparent transparent #fff6f2 transparent;transition-duration: 0.3s;transition-property: transform;}
  1156. .tip_contents:after, .tip_contents:before {transform: scale(1) translateY(0);}
  1157. .tip_contents:after, .tip_contents:before {bottom: 100%;left: 50%;border: solid transparent;content: "";height: 0;width: 0;position: absolute;pointer-events: none;}
  1158. .tip_contents:after {border-color: rgba(255, 246, 242, 0);border-bottom-color: #fff6f2;border-width: 10px;margin-left: -10px;}
  1159. .tip_contents:before {border-color: rgba(255, 228, 217, 0);border-bottom-color: #ffe4d9;border-width: 11px;margin-left: -11px;top: -22px;}
  1160. .tip_wrap:hover .tip_contents {z-index: 10;opacity: 1;visibility: visible;transform: translate(-45%, 1.0rem);transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);}
  1161. .tip_txt {text-align: center;min-width: 20.0rem;}
  1162. /* bottom popup */
  1163. .btPop_full {background: #ffffff;width: 100%;height: 100%;/* height: auto; */margin: 0;padding: 0;transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);top: 100%;position: fixed;left: 0;text-align: left;z-index: 999;}
  1164. .btPop_full .btPop_head {padding: 20px;border-bottom: 1px solid #ddd;font-size:1.8rem;position: relative;}
  1165. .btPop_full .btPop_body {padding: 20px;font-size:1.4rem;}
  1166. .btPop {background: #ffffff;width: 100%;height: 100%;/* height: 100% */margin: 0;padding: 0;transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);top: 100%;position: fixed;left: 0;text-align: left;z-index: 999;}
  1167. .btPop .btPop_head {padding: 2.0rem;border-bottom: 1px solid #ddd;font-size:1.8rem;position: relative;}
  1168. .btPop .btPop_body {padding: 2.0rem;font-size:1.4rem;/*max-height: 24rem;*/overflow-x: hidden;overflow-y: auto;}
  1169. .container .btPop_full .btPop_full_close,
  1170. .container .btPop .btPop_close{transition: all 10ms ease;opacity: 0;}
  1171. .container.btPop_full_open .btPop_full {top: 0;/* top: auto; */top: 55px;}
  1172. .container.btPop_full_open .btPop_full .btPop_full_close,
  1173. .container.btPop_open .btPop .btPop_close{
  1174. opacity: 1;position: absolute;z-index: 98;
  1175. top:-3.8rem;left:50%;transform: translate(-50%);display:block;border: 0;
  1176. width:2.7rem;height:2.7rem;text-indent:-9999px;background-size:contain;
  1177. background-repeat:no-repeat;background-position:center center;
  1178. background-image: url('/images/mo/ico_pop_cls.png');background-color: transparent;
  1179. }
  1180. .container.btPop_open .btPop {top: 0;/* top: auto; top: 55%;*/}
  1181. .container.btPop_full_open::after,
  1182. .container.btPop_open::after {
  1183. content: '';width: 100%;height: 100%;display: inline-block;
  1184. background: #333;opacity: 0.7;position: absolute;top: 0;left: 0;z-index: 82;
  1185. }
  1186. /* ALERT, CONFIRM Plugin custom */
  1187. .dialog-mobile-bg {
  1188. position: fixed;
  1189. top: 0;
  1190. left: 0;
  1191. z-index: 1000;
  1192. width: 100%;
  1193. height: 100%;
  1194. background-color: rgba(0, 0, 0, 0.3);
  1195. -ms-transform: translate3d(0, 0, 0);
  1196. -webkit-transform: translate3d(0, 0, 0);
  1197. transform: translate3d(0, 0, 0);
  1198. }
  1199. /*alert confirm*/
  1200. .dialog-mobile {
  1201. padding: 0;
  1202. text-align:center;
  1203. position: fixed;
  1204. top: 50%;
  1205. left: 0;
  1206. z-index: 1001;
  1207. width: 90%;
  1208. background-color: rgba(255, 255, 255,1);
  1209. border-radius: 0px;
  1210. -ms-transform: translate3d(0, 0, 0);
  1211. -webkit-transform: translate3d(0, 0, 0);
  1212. transform: translate3d(0, 0, 0);
  1213. }
  1214. /*
  1215. .dialog-mobile {
  1216. box-shadow: 0 0px 30px rgb(0 0 0 / 20%), 0 0px 30px rgb(0 0 0 / 20%);
  1217. mask-image: linear-gradient(to top right, transparent 49.5%, white 50.5%), linear-gradient(to top left, transparent 49.5%, white 50.5%), linear-gradient(white, white), linear-gradient(white, white);
  1218. -webkit-mask-image: linear-gradient(to top right, transparent 49.5%, white 50.5%), linear-gradient(to top left, transparent 49.5%, white 50.5%), linear-gradient(white, white), linear-gradient(white, white);
  1219. mask-size: 86.6072% 0%, 6.3% 13.3%, 93.7% 100%, 100% 86.5%;
  1220. -webkit-mask-size: 86.6072% 0%, 6.3% 13.3%, 93.7% 100%, 100% 86.5%;
  1221. mask-position: bottom left, bottom right, top left, top right;
  1222. -webkit-mask-position: bottom left, bottom right, top left, top right;
  1223. mask-repeat: no-repeat;
  1224. -webkit-mask-repeat: no-repeat;
  1225. }
  1226. */
  1227. .dialog-mobile .dialog-title {
  1228. padding: 0.8em 1em 0.5em;
  1229. text-align: center;
  1230. color: #333333;
  1231. font-size: 1.8rem;
  1232. font-weight: 400;
  1233. border-radius: 0.5rem 0.5rem 0 0;
  1234. }
  1235. .dialog-mobile .dialog-content {
  1236. position: relative;
  1237. padding:5.0rem 2.0rem 4.0rem 2.0rem;
  1238. line-height: 2em;
  1239. text-align: left;
  1240. color: #333333;
  1241. font-size:1.4rem;
  1242. text-align:center;
  1243. }
  1244. .dialog-mobile .dialog-content em {
  1245. color:#df6400
  1246. }
  1247. .dialog-mobile .dialog-button,
  1248. .dialog-mobile .dialog-sure-button,
  1249. .dialog-mobile .dialog-cancel-button {
  1250. display:inline-block;
  1251. position: relative;
  1252. margin:0;
  1253. padding:0;
  1254. width: 100%;
  1255. height: 3.8rem;
  1256. line-height: 3.8rem;
  1257. text-align: center;
  1258. font-size:1.4rem;
  1259. font-weight: 200;
  1260. cursor:pointer;
  1261. border-radius:0rem;
  1262. }
  1263. .dialog-mobile .dialog-button{
  1264. color: #fff;
  1265. background:#000;
  1266. border:1px solid #000;
  1267. min-width:10.0rem;
  1268. }
  1269. .dialog-mobile .dialog-cancel-button {
  1270. color: #000;
  1271. background: #fff;
  1272. border:1px solid #999;
  1273. /* min-width:10.0rem; */
  1274. }
  1275. .dialog-mobile .dialog-sure-button{
  1276. color: #fff;
  1277. background:#000;
  1278. border:1px solid #000;
  1279. /* min-width:10.0rem; */
  1280. }
  1281. .dialog-mobile button[i='1']{
  1282. color: #000 !important;
  1283. background:#fff !important;
  1284. border:1px solid #777;
  1285. /* min-width:10.0rem; */
  1286. }
  1287. .dialog-mobile button[class$='-button']:nth-last-child(2){width: 50%;}
  1288. .dialog-mobile button[class$='-button'] + button[class$='-button']{width: 50%;}
  1289. /* alert 투명도 */
  1290. .dialog-mobile.trans {
  1291. padding: 0 1.2rem 2.5rem 1.2rem;
  1292. margin-left: -45%;
  1293. text-align:center;
  1294. position: fixed;
  1295. top: 50%;
  1296. left: auto;
  1297. right: auto;
  1298. z-index: 1001;
  1299. min-width:13.3rem;
  1300. max-width: 90%;
  1301. background-color: rgb(14 14 14 / 0.8);
  1302. border-radius: 0px;
  1303. -ms-transform: translate3d(0, 0, 0);
  1304. -webkit-transform: translate3d(0, 0, 0);
  1305. transform: translate3d(0, 0, 0);
  1306. }
  1307. .dialog-mobile.trans .dialog-title {
  1308. padding: 0em 1em 0.5em;
  1309. text-align: center;
  1310. color: #ffffff;
  1311. font-size: 1.6rem;
  1312. font-weight: 200;
  1313. border-radius: 0.5rem 0.5rem 0 0;
  1314. }
  1315. .dialog-mobile.trans .dialog-content {
  1316. position: relative;
  1317. padding:2.5rem 0 0rem 0;
  1318. line-height: 2em;
  1319. text-align: left;
  1320. color: #ffffff;
  1321. font-size:1.4rem;
  1322. text-align:center;
  1323. }
  1324. .dialog-mobile.trans .dialog-content em {
  1325. color:#df6400
  1326. }
  1327. .dialog-mobile.trans .dialog-button,
  1328. .dialog-mobile.trans .dialog-sure-button,
  1329. .dialog-mobile.trans .dialog-cancel-button {
  1330. display:inline-block;
  1331. position: relative;
  1332. margin:0 0.5rem;
  1333. padding:0 3.0rem;
  1334. min-width: 7.0rem;
  1335. height: 3.8rem;
  1336. line-height: 3.8rem;
  1337. text-align: center;
  1338. font-size:1.4rem;
  1339. font-weight: 200;
  1340. cursor:pointer;
  1341. border-radius:0rem;
  1342. }
  1343. .dialog-mobile.trans .dialog-button{
  1344. color: #fff;
  1345. background: transparent;
  1346. border: 1px solid #dddddd;
  1347. min-width:10.0rem;
  1348. width: auto;
  1349. }
  1350. .dialog-mobile.trans .dialog-cancel-button {
  1351. color: #fff;
  1352. background: transparent;
  1353. border: 1px solid #dddddd;
  1354. min-width:10.0rem;
  1355. width: auto;
  1356. }
  1357. .dialog-mobile.trans .dialog-sure-button{
  1358. color: #fff;
  1359. background: transparent;
  1360. border: 1px solid #dddddd;
  1361. min-width:10.0rem;
  1362. width: auto;
  1363. }
  1364. .dialog-mobile.trans button[i='1']{
  1365. color: #000 !important;
  1366. background:#fff !important;
  1367. border:1px solid #777;
  1368. min-width:10.0rem;
  1369. width: auto;
  1370. }
  1371. /* 닫기 아이콘 */
  1372. .dialog-close-btn {
  1373. display: none;
  1374. position:absolute;
  1375. top:0;
  1376. right:0;
  1377. padding:2.0rem;
  1378. /* padding:25rem 16rem; */
  1379. width: 1.5rem;
  1380. height: 1.5rem;
  1381. cursor:pointer;
  1382. background:url('/images/mo/ico_pop_cls.png') no-repeat 50% 50%;
  1383. background-size: 1.5rem;
  1384. }
  1385. /*bottom dialog*/
  1386. .dialog-mobile-bottom {
  1387. position: fixed;
  1388. left: 0;
  1389. bottom: 0;
  1390. z-index: 10001;
  1391. width: 100%;
  1392. color: #333333;
  1393. background-color: #EEEEEE;
  1394. }
  1395. .dialog-mobile-bottom .bottom-btn-item {
  1396. text-align: center;
  1397. }
  1398. .bottom-btn-item .dialog-item-btn {
  1399. background: #FFFFFF;
  1400. padding: 0.5em 0;
  1401. border-bottom: 1px solid #EEEEEE;
  1402. }
  1403. .bottom-btn-item .dialog-item-btn:last-child {
  1404. border-bottom: none;
  1405. }
  1406. .dialog-mobile-bottom .dialog-cancel-btn {
  1407. margin-top: 0.6em;
  1408. text-align: center;
  1409. background: #FFFFFF;
  1410. padding: 0.5em 0;
  1411. }
  1412. /*toast*/
  1413. .dialog-mobile-toast {
  1414. position: fixed;
  1415. bottom: 5em;
  1416. }
  1417. .dialog-mobile-toast .toast-content {
  1418. padding: 0.5em 1em;
  1419. color: #FFFFFF;
  1420. border-radius: 0.2rem;
  1421. background-color: #333333;
  1422. }
  1423. /*loading*/
  1424. .mobile-loading-bg {
  1425. position: fixed;
  1426. top: 0;
  1427. left: 0;
  1428. z-index: 10000;
  1429. width: 100%;
  1430. height: 100%;
  1431. background-color: rgba(0, 0, 0, 0.3);
  1432. -webkit-transform: translate3d(0, 0, 0);
  1433. transform: translate3d(0, 0, 0);
  1434. }
  1435. .mobile-loading {
  1436. position: fixed;
  1437. top: 0;
  1438. left: 0;
  1439. z-index: 10001;
  1440. min-width: 2em;
  1441. min-height: 2em;
  1442. padding: 0.8em 1.6em;
  1443. text-align: center;
  1444. border-radius: 0.2rem;
  1445. color: #FFFFF0;
  1446. background-color: #0A0A0A;
  1447. -webkit-transform: translate3d(0, 0, 0);
  1448. transform: translate3d(0, 0, 0);
  1449. }
  1450. /*animation*/
  1451. .animation-zoom-in, .animation-zoom-out,
  1452. .animation-bottom-in, .animation-bottom-out,
  1453. .animation-bg-fadeIn {
  1454. -webkit-animation-duration: 0.3s;
  1455. -webkit-animation-fill-mode: both;
  1456. animation-duration: 0.3s;
  1457. animation-fill-mode: both;
  1458. }
  1459. .animation-fade-in, .animation-fade-out {
  1460. -webkit-animation-duration: 1s;
  1461. -webkit-animation-timing-function: ease-out;
  1462. -webkit-animation-fill-mode: both;
  1463. animation-duration: 1s;
  1464. animation-timing-function: ease-out;
  1465. animation-fill-mode: both;
  1466. }
  1467. .animation-zoom-in {
  1468. -webkit-animation-name: zoomIn;
  1469. animation-name: zoomIn;
  1470. }
  1471. .animation-zoom-out {
  1472. -webkit-animation-name: zoomOut;
  1473. animation-name: zoomOut;
  1474. }
  1475. .animation-fade-in {
  1476. -webkit-animation-name: fadeIn;
  1477. animation-name: fadeIn;
  1478. }
  1479. .animation-fade-out {
  1480. -webkit-animation-name: fadeOut;
  1481. animation-name: fadeOut;
  1482. }
  1483. .animation-bottom-in {
  1484. -webkit-animation-name: bottomIn;
  1485. animation-name: bottomIn;
  1486. }
  1487. .animation-bottom-out {
  1488. -webkit-animation-name: bottomOut;
  1489. animation-name: bottomOut;
  1490. }
  1491. .animation-bg-fadeIn {
  1492. -webkit-animation-name: fadeIn;
  1493. animation-name: fadeIn;
  1494. }
  1495. @-webkit-keyframes zoomIn {
  1496. from{
  1497. opacity: 0;
  1498. -webkit-transform: scale(0, 0);
  1499. }
  1500. to{
  1501. opacity: 1;
  1502. -webkit-transform: scale(1, 1);
  1503. }
  1504. }
  1505. @-webkit-keyframes zoomOut {
  1506. from{
  1507. opacity: 1;
  1508. -webkit-transform: scale(1, 1);
  1509. }
  1510. 90%{
  1511. -webkit-transform: scale(0.3, 0.3);
  1512. }
  1513. to{
  1514. opacity: 0;
  1515. -webkit-transform: scale(0, 0);
  1516. }
  1517. }
  1518. @keyframes zoomIn {
  1519. from{
  1520. opacity: 0;
  1521. transform: scale(0, 0);
  1522. }
  1523. to{
  1524. opacity: 1;
  1525. transform: scale(1, 1);
  1526. }
  1527. }
  1528. @keyframes zoomOut {
  1529. from{
  1530. opacity: 1;
  1531. transform: scale(1, 1);
  1532. }
  1533. 90%{
  1534. transform: scale(0.3, 0.3);
  1535. }
  1536. to{
  1537. opacity: 0;
  1538. transform: scale(0, 0);
  1539. }
  1540. }
  1541. @-webkit-keyframes fadeIn {
  1542. from{
  1543. opacity: 0;
  1544. }
  1545. to{
  1546. opacity: 1;
  1547. }
  1548. }
  1549. @-webkit-keyframes fadeOut {
  1550. from{
  1551. opacity: 1;
  1552. }
  1553. 30%{
  1554. opacity: 0.3;
  1555. }
  1556. to{
  1557. opacity: 0;
  1558. }
  1559. }
  1560. @keyframes fadeIn {
  1561. from{
  1562. opacity: 0;
  1563. }
  1564. to{
  1565. opacity: 1;
  1566. }
  1567. }
  1568. @keyframes fadeOut {
  1569. from{
  1570. opacity: 1;
  1571. }
  1572. 30%{
  1573. opacity: 0.3;
  1574. }
  1575. to{
  1576. opacity: 0;
  1577. }
  1578. }
  1579. @-webkit-keyframes bottomIn {
  1580. from{
  1581. bottom: -1000px;
  1582. }
  1583. to{
  1584. bottom: 0;
  1585. }
  1586. }
  1587. @-webkit-keyframes bottomOut {
  1588. from{
  1589. bottom: 0;
  1590. }
  1591. to{
  1592. bottom: -1000px;
  1593. }
  1594. }
  1595. @keyframes bottomIn {
  1596. from{
  1597. bottom: -1000px;
  1598. }
  1599. to{
  1600. bottom: 0;
  1601. }
  1602. }
  1603. @keyframes bottomOut {
  1604. from{
  1605. bottom: 0;
  1606. }
  1607. to{
  1608. bottom: -1000px;
  1609. }
  1610. }
  1611. /* .popWrap, .popup */
  1612. .popWrap{position: relative; height: 100%; padding: 30px 0; background-color: #fff;}
  1613. .popup{display: none; position: fixed; left: 0; top: 55px; width: 100%; height: auto; background-color: #ffffff; padding: 0; z-index: 80;}
  1614. .popup::before{content: ''; display: block; position: fixed; left: 0; top: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.5);}
  1615. .popup .btn_popClose{position: absolute; top: -45px; right: 15px; width: 35px; height: 35px; background-color: black; z-index: 10;}
  1616. .popup .btn_popClose span{display: block; width: 24px; height: 24px; margin: 0 auto; position: relative;}
  1617. .popup .btn_popClose span i{display: block; position: absolute; left: 0; top: 10px; width: 24px; height: 2px; background: #fff; -webkit-transition: all 0.5s ease-out; transition: all 0.5s ease-out;}
  1618. .popup .btn_popClose span i.gl1{-webkit-transform: rotate(45deg); transform: rotate(45deg);}
  1619. .popup .btn_popClose span i.gl2{-webkit-transform: rotate(-45deg); transform: rotate(-45deg);}
  1620. /* modal */
  1621. /* modal popup */
  1622. .blocker{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:auto;z-index:999;padding:0px;box-sizing:border-box;background-color:#000;background-color:rgba(0,0,0,0.75);text-align:center;}
  1623. .blocker:before{content:"";display:inline-block;height:100%;vertical-align:middle;margin-right:-0.05em;}
  1624. .blocker.behind{background-color:transparent;}
  1625. .modal{display:none; vertical-align:middle;position:relative;z-index:2;max-width:960px;box-sizing:border-box;width:90%;background:#fff;padding:0;text-align:left; -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;}
  1626. .modal a.close-modal{position: absolute;top:2.4rem;right:2.1rem;display:block;width:1.7rem;height:1.7rem;text-indent:-9999px;background-size:contain;background-repeat:no-repeat;background-position:center center;background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg=='); z-index: 98; background-image: url('/images/mo/ico_pop_cls.png');}
  1627. .modal .modal-header{margin-top: 0;margin-bottom: 0; padding: 2.4rem 1.88rem 2.0rem;}
  1628. .modal .modal-header > *{font-size: 1.7rem;font-weight: 400;}
  1629. .modal .modal-body{box-sizing: border-box; padding: 0rem 1.33rem;}
  1630. .modal .modal-body .pop_cont{overflow: auto;max-height: 450px; font-size: 16px; line-height: 1.62; font-weight: 200; color:#666;}
  1631. .modal .modal-body .fx_r {position: fixed;right: 0;top: auto;bottom: auto;left: auto;}
  1632. .modal .modal-footer{margin-top: 3.0rem;}
  1633. .modal .modal-footer .btn{width: 100%; border-width: 0;}
  1634. .modal.pop_full {width: 100%; max-width: 100%; height: 100%; padding: 0; overflow: auto; position: relative;}
  1635. .modal.pop_full .modal-header {width: 100%;height:5.2rem;box-sizing: border-box;border-bottom: 1px solid #dddddd;z-index:98;position: fixed;top: 0;left: 0;bottom: auto;right: auto;background: #fff;padding: 1.6rem 1.33rem 1.6rem 1.33rem;}
  1636. /* .modal.pop_full .modal-header .modal-title {padding: 40px 0 0 37px;} */
  1637. .modal.pop_full .modal-body{margin-top: 6.7rem;}
  1638. .modal.pop_full .modal-body .pop_cont{max-height: 100%;}
  1639. .modal.pop_full a.close-modal {position: fixed;top: 1.6rem;}
  1640. .modal.pop_fullCol { width: 100%; max-width: 100%;padding: 0; position: relative;}
  1641. .modal.pop_fullCol .modal-header{width: 100%;height: 5.2rem;box-sizing: border-box;border-bottom: 1px solid #dddddd;z-index:98;position: fixed;top: 0;left: 0;bottom: auto;right: auto;background: #fff;}
  1642. .modal.pop_fullCol .modal-header .modal-title {padding: 40px 0 0 37px;}
  1643. .modal.pop_fullCol a.close-modal {position: fixed;}
  1644. .modal.pop_fullCol .modal-body {margin-top: 6.7rem;}
  1645. .modal.pop_fullCol .modal-body .pop_cont{max-height: 100%;}
  1646. .modal.pop_fullCol .modal-body [class^="ui_col_"]{margin: 0;}
  1647. .modal::-webkit-scrollbar,.pop_cont::-webkit-scrollbar {width: 2px;}
  1648. .modal::-webkit-scrollbar-thumb,.pop_cont::-webkit-scrollbar-thumb {background-color: #888888;border-radius: 0px;background-clip: padding-box;border: 0px solid transparent;}
  1649. .modal::-webkit-scrollbar-track, .pop_cont::-webkit-scrollbar-track{background-color: #dddddd;border-radius: 0px;}
  1650. .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}
  1651. .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}
  1652. .modal-spinner .rect2{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}
  1653. .modal-spinner .rect3{-webkit-animation-delay:-1.0s;animation-delay:-1.0s}
  1654. .modal-spinner .rect4{-webkit-animation-delay:-0.9s;animation-delay:-0.9s}
  1655. @-webkit-keyframes sk-stretchdelay{
  1656. 0%,40%,100%{
  1657. -webkit-transform:scaleY(0.5)
  1658. }
  1659. 20%{
  1660. -webkit-transform:scaleY(1.0)
  1661. }
  1662. }
  1663. @keyframes sk-stretchdelay{
  1664. 0%,40%,100%{
  1665. transform:scaleY(0.5);-webkit-transform:scaleY(0.5)
  1666. }
  1667. 20%{
  1668. transform:scaleY(1.0);-webkit-transform:scaleY(1.0)
  1669. }
  1670. }
  1671. /* 제거할 클래스 */
  1672. .btnL{width:100%; height:4.5rem; line-height:4.5rem; font-size:1.4rem;}
  1673. .btnM{width:100%; height:4rem; height:4rem; line-height:4rem; }
  1674. .btnS{width:100%; height:3rem; height:3rem; line-height:3rem; }
  1675. /* .inner, .inner.bg_gray 등을 응용 */
  1676. .blockLyout{background-color:#f5f5f5;}
  1677. .blockLyout > .block{padding:30px 0; margin-top:1.5rem; background-color:#Fff;}
  1678. .blockLyout > .block:first-child{margin-top:0;}
  1679. .txC1{color:#222222!important;}
  1680. .txC2{color:#666666!important;}
  1681. .txC3{color:#888888!important;}
  1682. .txC4{color:#ffffff!important;}
  1683. .bgC1{background-color:#222222!important;}
  1684. .bgC2{background-color:#444444!important;}
  1685. .bgC3{background-color:#dddddd!important;}
  1686. .bgC4{background-color:#fff6f2!important;}
  1687. .bgC5{background-color:#f5f5f5!important;}
  1688. .bgC6{background-color:#f1f1f1!important;} /* <----풋터색상*/
  1689. /* 사용금지 */
  1690. .mgc {margin:0 auto;}
  1691. .mt0 {margin-top:0 !important;}
  1692. .ml0 {margin-left:0 !important;}
  1693. .ml5 {margin-left:5px !important;}
  1694. .ml10{margin-left:10px !important;}
  1695. .ml15 {margin-left:15px !important;}
  1696. .ml20 {margin-left:20px !important;}
  1697. .ml30 {margin-left:30px !important;}
  1698. .mr0{margin-right:0px !important;}
  1699. .mr20 {margin-right:20px !important;}
  1700. .mt5 {margin-top:5px !important;}
  1701. .mt10 {margin-top:10px !important;}
  1702. .mt15 {margin-top:15px !important;}
  1703. .mt20 {margin-top:20px !important;}
  1704. .mt30 {margin-top:30px !important;}
  1705. .mt35 {margin-top:35px !important;}
  1706. .mt40 {margin-top:40px !important;}
  1707. .mt45 {margin-top:45px !important;}
  1708. .mt50 {margin-top:50px !important;}
  1709. .mt60 {margin-top:60px !important;}
  1710. .mt100 {margin-top:100px !important;}
  1711. .mb0 {margin-bottom:0 !important}
  1712. .mb5 {margin-bottom:5px !important}
  1713. .mb10 {margin-bottom:10px !important;}
  1714. .mb15 {margin-bottom:15px !important;}
  1715. .mb20 {margin-bottom:20px !important;}
  1716. .mb30 {margin-bottom:30px !important;}
  1717. .mb40 {margin-bottom:40px !important;}
  1718. .mb50 {margin-bottom:50px !important;}
  1719. .mb60 {margin-bottom:60px !important;}
  1720. .mb100 {margin-bottom:100px !important;}
  1721. .mr5 {margin-right:5px !important;}
  1722. .mr10 {margin-right:10px !important;}
  1723. .mr15 {margin-right:15px !important;}
  1724. .ml10 {margin-left:10px !important;}
  1725. .ml35 {margin-left:35px !important;}
  1726. .mtm3 {margin-top:-3px !important;}
  1727. .mtm10 {margin-top:-10px !important;}
  1728. .mtm20 {margin-top:-20px !important;}
  1729. .mbm10 {margin-bottom:-10px !important;}
  1730. .mbm30{margin-bottom:-30px !important;}
  1731. .pt0 {padding-top:0 !important;}
  1732. .pt10 {padding-top:10px !important;}
  1733. .pt20 {padding-top:20px !important;}
  1734. .pt30 {padding-top:20px !important;}
  1735. .pt40 {padding-top:40px !important;}
  1736. .pt100 {padding-top:100px !important;}
  1737. .pl0 {padding-left:0 !important;}
  1738. .pl10 {padding-left:10px !important;}
  1739. .pr20 {padding-right:20px !important;}
  1740. .pb10 {padding-bottom:10px !important;}
  1741. .pb20 {padding-bottom:20px !important;}
  1742. .pb30 {padding-bottom:30px !important;}
  1743. .pb40 {padding-bottom:40px !important;}
  1744. .pb50 {padding-bottom:50px !important;}
  1745. .pb100 {padding-bottom:100px !important;}
  1746. .shape.ranker {background: #fd4802;}
  1747. .shape.ranker::after {
  1748. border-left:10px solid #fd4802 !important;
  1749. border-right:0px solid #fd4802 !important;
  1750. }
  1751. .shape{
  1752. background: #222222;width: 3rem;max-width: 3rem;min-height: 4rem;display: block;position: absolute;top: 0;left: 0;z-index: 9;
  1753. }
  1754. .shape:after{
  1755. content: "";top: 0;right: -10px;position: absolute;
  1756. border-left: 10px solid #222222;border-bottom: 10px solid transparent;border-right: 0px solid #0183fd;
  1757. height: 3rem;width: 0;padding: 0px 0px 0px 0px;
  1758. }
  1759. .shape span{
  1760. color: #ffffff;text-align: center;text-indent: 10px;font-size: 1.1rem;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 40px;z-index: 2;
  1761. /* line-height: 1; */
  1762. /* letter-spacing: -25em; */
  1763. /* display: -webkit-box; */
  1764. /* z-index: 99999; */
  1765. }
  1766. .shape.dealdetail{
  1767. width: 100%;max-width: 40px;
  1768. }
  1769. .shape.dealdetail span{
  1770. line-height: 1;text-align: center;width: 100%;display: inline-block;text-indent: 0;margin-left: 5px;
  1771. }
  1772. /* APP ONLY */
  1773. /* etc_goApp */
  1774. .adApp {width: 100%;height: 100%;z-index: 99999;overflow: hidden;position: fixed;left: 0;top: 0;background-color: rgba(0, 0, 0, 0.85);/* IE 5.5 - 7 */filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=rgb(255, 231, 204) ff, endColorstr=rgb(255, 229, 204) ff);/* IE 8 */-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=@filter_a, endColorstr=@filter_a)";}
  1775. .adApp .adWrap {display: table;width: 100%;height: 100%;}
  1776. .adApp .adWrap .cont {padding: 0px 2rem;display: table-cell;vertical-align: middle;}
  1777. .adApp .cont button {width: 100%;}
  1778. .adApp .viewWeb {margin-top: 10%;font-size: 1.4rem;font-weight: 100;line-height: 1.2;color: #ffffff;text-align: center;text-decoration: underline;}
  1779. .adApp .viewWeb a {color: #ffffff;}
  1780. /* etc_consentAlarm */
  1781. .etcApp {width: 100%;height: 100%;z-index: 99999;text-align: center;overflow: hidden;position: fixed;left: 0;top: 0;background-color: #ffffff;}
  1782. .etcApp .titWrap{margin-bottom: 2.0rem;}
  1783. .etcApp .titWrap h2{font-size: 2.0rem;color: #333333;}
  1784. .etcApp .alramWrap {display: table;width: 100%;height: 100%;padding-top: 4.0rem;}
  1785. .etcApp .alramWrap .inner {padding: 0rem;}
  1786. .etcApp .alramWrap .btn_group_flex {position: fixed;bottom: 0;}
  1787. .etcApp .alramWrap .btn_group_flex button{padding: 1.8rem 0;}
  1788. .etcApp .btn_group_flex > div > .btn.btn_primary {background-color: #fd4802;border-color: #fd4802;color: #ffffff;}
  1789. .etcApp .btn_group_flex > div > .btn.btn_primary{color: #ffffff;font-weight: 200;}
  1790. .etcApp .alramClose {margin-top: 0;font-size: 1.4rem;font-weight: 100;line-height: 1.4;color: #ffffff;text-align: center;text-decoration: underline;}
  1791. .etcApp .alramClose a {color: #888888;}
  1792. /* etc_accessApp */
  1793. .etcApp .accWrap {display: table;width: 100%;height: 100%;padding-top: 4.0rem;}
  1794. .etcApp .accWrap .inner {padding: 0rem;}
  1795. .etcApp .accWrap .btn_group_flex {position: fixed;bottom: 0;}
  1796. .etcApp .accWrap .btn_group_flex button{padding: 1.8rem 0;}
  1797. .etcApp .accClose {margin-top: 10%;font-size: 1.4rem;font-weight: 100;line-height: 1.4;color: #ffffff;text-align: center;text-decoration: underline;}
  1798. .etcApp .accClose a {color: #888888;}
  1799. /* etc_coachApp (Coach Marks) */
  1800. #coachHide {background: transparent;}
  1801. .etcApp .coach {position: relative;width: 100%;height: 100%;}
  1802. .etcApp .coach::after {content:'';display: block; width: 100%;height: 100%;background-color: black;opacity: 0.75;z-index: -1;}
  1803. .etcApp .coach span{position:absolute;width: 100%;height: 100%;background-repeat: no-repeat;z-index: 10;}
  1804. .etcApp .coach #coachmask01{top:1.4rem; bottom:auto; left:1.8rem; right:auto; background: url('/images/mo/coachmask01.png')no-repeat; background-size: 14.0666rem 12.0666rem; width: 14.0666rem; height: 12.0666rem;}
  1805. .etcApp .coach #coachmask02{top:5.2rem; bottom:auto; left:auto; right:0.15rem; background: url('/images/mo/coachmask02.png')no-repeat; background-size: 12.6666rem 13.3000rem; width: 12.6666rem; height: 13.3000rem;}
  1806. .etcApp .coach #coachmask03{top:auto; bottom:0.8rem; left:auto; right:1.8rem; background: url('/images/mo/coachmask03.png')no-repeat; background-size: 19.2666rem 10.5000rem; width: 19.2666rem; height: 10.5000rem;}
  1807. .etcApp .coach button{width: 100%; height: auto;}
  1808. /* etc_settingApp */
  1809. .app-only .sett {background: #f5f5f5;}
  1810. .app-only .sett .inner{background: #ffffff; margin-bottom: 2.0rem;}
  1811. .app-only .sett dl{width: 100%;}
  1812. .app-only .sett dl dd {border-bottom:1px solid #eeeeee;}
  1813. .app-only .sett dl dd:last-child {border-bottom:0}
  1814. .app-only .sett dl dd:first-child:nth-last-child(1) {border-bottom:1px solid #eeeeee;}
  1815. .app-only .sett dl dd .setItems {display: flex;align-items: center;padding: 1.0rem;}
  1816. .app-only .sett dl dd .setItems .set_opt {flex-grow: 1; padding: 0 0 0 0;}
  1817. .sett .form_field input[type="checkbox"] + label:before {content: 'OFF';background: none;color: #ffffff;left: auto;right: 0.4rem;font-size: 1.0rem;line-height: 2.0rem;}
  1818. .sett .form_field input[type="checkbox"]:checked + label:before {content: 'ON';background: none;color: #ffffff;left: 0.4rem;right: auto;font-size: 1.0rem;line-height: 2.0rem;}
  1819. .sett .switch {width: 4.8rem;position: relative;}
  1820. .sett .switch input[type="checkbox"] {visibility: hidden;}
  1821. .sett .switch label {width: 100%;height: 2.4rem;border-radius: 5.0rem;background-color: #dddddd;position: absolute;top: 0;left: 0;cursor: pointer;}
  1822. .sett .switch input[type="checkbox"]:checked + label {background-color: #fd4802;}
  1823. .sett .switch label::after {content: "";width: 2.0rem;height: 2.0rem;border-radius: 50%;background: white;position: absolute;top: 0.2rem;left: 0.2rem;transition: all 0.1s;}
  1824. .sett .switch input[type="checkbox"]:checked + label::after {background: #ffffff;position: absolute;top: 0.2rem;left: auto;right: 0.2rem;margin: 0;}
  1825. .sett .alink {display: inline-block;text-align: center;cursor: pointer;}
  1826. .sett .alink input[type="button"] {visibility: hidden;}
  1827. .sett .alink input[type="button"] + label::after {content: '업데이트';position: relative;top: 0;right: 0;color: #fd4802;font-size: 1.2rem;display: inline-block;background: url(/images/mo/ico_app_arr2.png)no-repeat;background-size: 0.7rem 1.3rem;width: auto;height: 1.4rem;line-height: 1.4rem;background-position: 5.5rem 0;padding-right: 2.0rem;}
  1828. .sett .alink input[type="button"]:disabled + label::after {content: '최신버전입니다';color: #888888;background: none;padding: 0;}
  1829. .sett .alink label {width: 0.2rem;height: 0.2rem;cursor: pointer;}
  1830. .sett .alink a {display: inline-block;width:5rem;height:1.2rem;}
  1831. .sett .alink a::after {content: '';display: inline-block;background: url(/images/mo/ico_app_arr.png)no-repeat;background-position: 4.2rem 0px;background-size: 0.7rem 1.3rem; width: 100%;height: 1.4rem;line-height: 1.4rem;}
  1832. .sett p {font-size: 1.2rem;color: #888888;width: calc(100% - 7rem);padding-left: 1rem;padding-bottom: 0.8rem;}
  1833. .sett p.pot {position: relative;padding-left: 1.8rem;margin: 0;font-size: 1.1rem;font-weight: 200;color: #888888;}
  1834. .sett p.pot::before {content: '';position: absolute;top: 0.7rem;left: 1rem;background: #888888;width: 0.3rem;height: 0.3rem;}
  1835. /* etc_noticeApp */
  1836. .app-only .notice {background: #f5f5f5;position: relative;}
  1837. .app-only .notice.nodata::after{content: '알림이 없습니다.';width: 100%;height: auto;display: inline-block;position: absolute;top:13.6rem;left: auto;text-align: center;color: #888888;font-size: 1.3rem;}
  1838. .app-only .notice .inner{background: #ffffff; margin-bottom: 0rem;padding-bottom:0;border-bottom:1px solid #eeeeee;}
  1839. .app-only .notice .inner:last-child{padding-bottom: 0rem;}
  1840. .app-only .notice dl {font-size: 1.3rem;padding: 2.3rem 0;}
  1841. .app-only .notice dt {color: #222222;}
  1842. .app-only .notice dd {font-size: 1.2rem;color: #666666;padding-bottom: 1.5333rem;}
  1843. .app-only .notice dt {line-height: 1.2;padding-bottom: 1.1rem;}
  1844. .app-only .notice dt.tit, .app-only .notice dd.cont_txt {word-wrap: break-word;word-break: keep-all;}
  1845. .app-only .notice dd.cont_data {font-size: 1.1rem; color: #888888;font-family: 'LATO';}
  1846. .app-only .notice dd.cont_img {width: 100%;height: auto;}
  1847. .app-only .notice dd:last-child {padding-bottom: 0;}
  1848. /* etc_closingApp */
  1849. .app-only .guidance{width: auto;}
  1850. .app-only .guidance{overflow: hidden;position: fixed;bottom: -4rem;left: 50%;z-index: 9;width: 88.888%;height: auto;margin-left: -44.444%;padding: 1.2rem 0 1.0rem;background-color: rgba(0,0,0,0.8);text-align: center;opacity: 0;}
  1851. .app-only .guidance:after{content: '';position: absolute;top: 0;bottom: 15px;left: 10px;width: 100%;height: 100%;z-index: -1;}
  1852. .app-only .guidance{
  1853. box-shadow: 0 0px 30px rgb(0 0 0 / 20%), 0 0px 30px rgb(0 0 0 / 20%);
  1854. /* 마스크 미사용
  1855. mask-image: linear-gradient(to top right, transparent 49.5%, white 50.5%), linear-gradient(to top left, transparent 49.5%, white 50.5%), linear-gradient(white, white), linear-gradient(white, white);
  1856. -webkit-mask-image: linear-gradient(to top right, transparent 49.5%, white 50.5%), linear-gradient(to top left, transparent 49.5%, white 50.5%), linear-gradient(white, white), linear-gradient(white, white);
  1857. mask-size: 100% 0%, 2vh 2vh, calc(100% - 1.9vh) 100%, 100% calc(100% - 1.9vh);
  1858. -webkit-mask-size: 100% 0%, 2vh 2vh, calc(100% - 1.9vh) 100%, 100% calc(100% - 1.9vh);
  1859. mask-position: bottom left, bottom right, top left, top right;
  1860. -webkit-mask-position: bottom left, bottom right, top left, top right;
  1861. mask-repeat: no-repeat;
  1862. -webkit-mask-repeat: no-repeat;
  1863. */
  1864. }
  1865. .app-only .guidance p{font-size:1.3rem;font-weight: 300;color: #fff;}
  1866. .app-only .guidance p.tit{font-size: 1.4rem;margin-bottom: 1.53rem;}
  1867. .app-only .guidance p.date{opacity: 0.7;font-size:1.1rem;margin-bottom: 1.2rem;}
  1868. .app-only .guidance p.tit + p.date + p {font-size:1.1rem;}
  1869. .app-only .guidance p:first-child {padding-top: 2.0rem;}
  1870. .app-only .guidance p:last-child {padding-bottom: 2.0rem;}
  1871. .app-only .guidance p:first-child:nth-last-child(1) { padding-top: 0;padding-bottom: 0; }
  1872. .app-only .guidance.ontoast {animation: onpop 6s .2s forwards; -webkit-animation: onpop 6s .2s forwards;}
  1873. @keyframes onpop {
  1874. 0% {bottom:0rem; opacity:1; z-index:99999;}
  1875. 10% {bottom:10.0rem;}
  1876. 20% {bottom:8.0rem;}
  1877. 80% {bottom:8.0rem; opacity:1; z-index:99999;}
  1878. 100% {opacity:0; z-index:0;}
  1879. }
  1880. /* mobile type */
  1881. /* etc_toastPopup */
  1882. .guidance{width: auto;}
  1883. .guidance{overflow: hidden;position: fixed;bottom: -4rem;left: 50%;z-index: 9;width: 88.888%;height: auto;margin-left: -44.444%;padding: 1.2rem 0 1.0rem;background-color: rgba(0,0,0,0.8);text-align: center;opacity: 0;}
  1884. .guidance:after{content: '';position: absolute;top: 0;bottom: 15px;left: 10px;width: 100%;height: 100%;z-index: -1;}
  1885. .guidance{box-shadow: 0 0px 30px rgb(0 0 0 / 20%), 0 0px 30px rgb(0 0 0 / 20%);}
  1886. .guidance p{font-size:1.3rem;font-weight: 300;color: #fff;}
  1887. .guidance p.tit{font-size: 1.4rem;margin-bottom: 1.53rem;}
  1888. .guidance p.date{opacity: 0.7;font-size:1.1rem;margin-bottom: 1.2rem;}
  1889. .guidance p.tit + p.date + p {font-size:1.1rem;}
  1890. .guidance p:first-child {padding-top: 2.0rem;}
  1891. .guidance p:last-child {padding-bottom: 2.0rem;}
  1892. .guidance p:first-child:nth-last-child(1) { padding-top: 0;padding-bottom: 0; }
  1893. .guidance.ontoast {animation: onpop 6s .2s forwards; -webkit-animation: onpop 6s .2s forwards;}
  1894. @keyframes onpop {
  1895. 0% {bottom:0rem; opacity:1; z-index:99999;}
  1896. 10% {bottom:10.0rem;}
  1897. 20% {bottom:8.0rem;}
  1898. 80% {bottom:8.0rem; opacity:1; z-index:99999;}
  1899. 100% {opacity:0; z-index:0;}
  1900. }