sub.scss 9.8 KB

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