sub.scss 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. /** 탑 비쥬얼 공통 모듈 **/
  2. #top--visual{
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. height:100%;
  7. width: 100%;
  8. &.contact{
  9. background: url(/img/top_ban_contact.jpg) no-repeat top;
  10. background-attachment: fixed;
  11. background-size: contain;
  12. }
  13. .inner--content{
  14. max-height: 440px;
  15. min-height: 440px;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. position: relative;
  20. > h1{
  21. color:#FFF;
  22. text-align: center;
  23. font-size: 48px;
  24. font-weight: 800;
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. }
  29. nav{
  30. position: absolute;
  31. bottom:0px;
  32. left:50%;
  33. transform: translateX(-50%);
  34. >ul{
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. >li{
  39. position: relative;
  40. padding:24px 0px;
  41. margin-right:81px;
  42. &:last-child{
  43. margin-right:0px;
  44. &:after{
  45. display: none;
  46. }
  47. }
  48. &:after{
  49. content:'';
  50. display: block;
  51. width:1px;
  52. height:12px;
  53. opacity: .5;
  54. background: #fff;
  55. position: absolute;
  56. top:50%;
  57. transform: translateY(-50%);
  58. right:-41px;
  59. }
  60. a{
  61. color:#FFF;
  62. font-size: 14px;
  63. font-style: normal;
  64. font-weight: 700;
  65. white-space: nowrap;
  66. display: flex;
  67. align-items: center;
  68. justify-content: center;
  69. flex-wrap: nowrap;
  70. gap:4px;
  71. i{
  72. min-width:20px;
  73. height:20px;
  74. width:20px;
  75. svg{
  76. transition: transform 0.3s ease;
  77. }
  78. &.active svg {
  79. transform: rotate(180deg);
  80. transition: transform 0.3s ease;
  81. }
  82. }
  83. }
  84. > ul{
  85. position: absolute;
  86. top:60px;
  87. left:50%;
  88. transform: translateX(-50%);
  89. background: #fff;
  90. box-shadow: 0 8px 16px 0 rgba(31, 33, 40, 0.12);
  91. padding:16px;
  92. max-height: 0;
  93. overflow: hidden;
  94. opacity: 0;
  95. visibility: hidden;
  96. transition: all 0.3s ease;
  97. &.show {
  98. max-height: 200px;
  99. opacity: 1;
  100. visibility: visible;
  101. }
  102. li{
  103. display: flex;
  104. align-items: center;
  105. justify-content: flex-start;
  106. width:100%;
  107. margin-bottom:16px;
  108. &:last-child{
  109. margin-bottom:0px;
  110. }
  111. a{
  112. color:#515973;
  113. font-size: 14px;
  114. font-style: normal;
  115. font-weight: 700;
  116. text-align: left;
  117. &:hover{
  118. color:#00A654;
  119. }
  120. }
  121. }
  122. }
  123. }
  124. }
  125. }
  126. }
  127. }
  128. /** 중앙 컨텐츠 **/
  129. #out--container{
  130. width:100%;
  131. display: flex;
  132. align-items: center;
  133. justify-content: center;
  134. padding-top:100px;
  135. padding-bottom:120px;
  136. .out--container{
  137. max-width:844px;
  138. .m--title{
  139. text-align: center;
  140. color:#1F2128;
  141. text-align: center;
  142. font-family: Pretendard;
  143. font-size: 48px;
  144. font-style: normal;
  145. font-weight: 700;
  146. display: flex;
  147. align-items: center;
  148. justify-content: center;
  149. margin-bottom:60px;
  150. }
  151. .form--contents--wrap {
  152. margin-top: 40px;
  153. border-top:1px solid #1F2128;
  154. padding-top:40px;
  155. display: flex;
  156. align-items: center;
  157. justify-content: center;
  158. gap:20px;
  159. .contact-form{
  160. display: flex;
  161. align-items: flex-start;
  162. justify-content: space-between;
  163. flex-wrap: wrap;
  164. .btn--wrap{
  165. width:100%;
  166. display: flex;
  167. align-items: center;
  168. justify-content: center;
  169. padding-top:30px;
  170. button{
  171. display: flex;
  172. max-width:160px;
  173. width: 100%;
  174. height: 48px;
  175. border-radius: 24px;
  176. background: #1F2128!important;
  177. justify-content: center;
  178. align-items: center;
  179. gap: 8px;
  180. flex-shrink: 0;
  181. color:#FFF;
  182. font-size: 18px;
  183. font-style: normal;
  184. font-weight: 700;
  185. }
  186. }
  187. }
  188. .form--contents {
  189. margin-bottom: 28px;
  190. width:100%;
  191. input[type="text"],
  192. input[type="email"],
  193. select,
  194. textarea {
  195. width: 100%;
  196. padding: 10px;
  197. border-radius: 0px;
  198. font-size: 14px;
  199. }
  200. h3 {
  201. color:#1F2128;
  202. font-size: 16px;
  203. font-style: normal;
  204. font-weight: 500;
  205. margin-bottom:8px!important;
  206. &.privacy--title{
  207. color:#1F2128;
  208. font-size: 24px;
  209. font-style: normal;
  210. font-weight: 700;
  211. }
  212. .required {
  213. color: #ff0000;
  214. margin-left: 4px;
  215. }
  216. }
  217. > div{
  218. width:100%;
  219. }
  220. &.half--cont{
  221. width:100%;
  222. max-width:calc(50% - 10px);
  223. }
  224. .qna--radio--group{
  225. fieldset{
  226. background:#EFF1FB;
  227. padding:4px;
  228. display: flex;
  229. gap:0px;
  230. >div{
  231. display: flex;
  232. min-width:101px;
  233. height:36px;
  234. position: relative;
  235. >div{
  236. &:nth-of-type(1){
  237. position: absolute;
  238. top:0px;
  239. left:0px;
  240. width:100%;
  241. height:100%;
  242. pointer-events: none;
  243. button{
  244. width:100%;
  245. height:100%;
  246. border:0px!important;
  247. box-shadow: none;
  248. border-radius: 0px;
  249. &[data-state="checked"]{
  250. background: #fff;
  251. }
  252. >span{
  253. display: none;
  254. }
  255. }
  256. }
  257. &:nth-of-type(2){
  258. margin:0px;
  259. width:100%;
  260. height:36px;
  261. display: flex;
  262. align-items: center;
  263. justify-content: center;
  264. label{
  265. position: absolute;
  266. top:0px;
  267. border:0px!important;
  268. left:0px;
  269. width:100%;
  270. height:100%;
  271. margin:0px;
  272. display: flex;
  273. align-items: center;
  274. justify-content: center;
  275. cursor: pointer;
  276. color:#B6BBCC;
  277. font-size: 16px;
  278. font-style: normal;
  279. font-weight: 400;
  280. &.actv{
  281. color:#1F2128;
  282. }
  283. }
  284. }
  285. }
  286. }
  287. }
  288. }
  289. }
  290. }
  291. .tel-group {
  292. display: flex;
  293. align-items: center;
  294. gap: 10px;
  295. button{
  296. height:40px;
  297. width:100%;
  298. max-width:calc( (100% / 3) - 20px);
  299. }
  300. > div{
  301. width:100%;
  302. }
  303. select {
  304. width: 100px;
  305. }
  306. input {
  307. flex: 1;
  308. }
  309. span {
  310. font-weight: 500;
  311. }
  312. }
  313. .radio-group {
  314. display: flex;
  315. gap: 20px;
  316. align-items: center;
  317. }
  318. .radio-group label {
  319. display: flex;
  320. align-items: center;
  321. cursor: pointer;
  322. }
  323. .radio-group input[type="radio"] {
  324. width: auto;
  325. margin-right: 5px;
  326. }
  327. .privacy-box {
  328. .privacy-content {
  329. height: 300px;
  330. overflow-y: auto;
  331. padding: 15px;
  332. background-color: #fff;
  333. border: 1px solid #ddd;
  334. margin-bottom: 20px;
  335. line-height: 1.8;
  336. }
  337. .agree-check {
  338. background-color: #fff;
  339. display: flex;
  340. align-items: center;
  341. justify-content: space-between;
  342. > h4 {
  343. color: #1F2128;
  344. font-size: 16px;
  345. font-style: normal;
  346. font-weight: 700;
  347. line-height: 130%; /* 20.8px */
  348. }
  349. }
  350. }
  351. }
  352. }
  353. // 라디오 디자인 초기화
  354. .agree-radio-group{
  355. fieldset{
  356. gap:32px;
  357. }
  358. label{
  359. color:#1F2128;
  360. font-size: 16px;
  361. font-style: normal;
  362. font-weight: 500;
  363. }
  364. button{
  365. width:20px;
  366. height:20px;
  367. border-radius: 20px;
  368. > span{
  369. background-color:#00A654!important;
  370. &:after{
  371. width:10px;
  372. height:10px;
  373. }
  374. }
  375. }
  376. }
  377. .summernote-wrapper .btn {
  378. color: #333!important;
  379. background-color: #fff!important;
  380. border-color: #ccc!important;
  381. }