sub.scss 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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. .out--container{
  136. max-width:844px;
  137. .m--title{
  138. text-align: center;
  139. color:#1F2128;
  140. text-align: center;
  141. font-family: Pretendard;
  142. font-size: 48px;
  143. font-style: normal;
  144. font-weight: 700;
  145. display: flex;
  146. align-items: center;
  147. justify-content: center;
  148. margin-bottom:60px;
  149. }
  150. .form--contents--wrap {
  151. margin-top: 40px;
  152. border-top:1px solid #1F2128;
  153. padding-top:40px;
  154. display: flex;
  155. align-items: center;
  156. justify-content: center;
  157. gap:20px;
  158. .form--contents {
  159. margin-bottom: 30px;
  160. &.half--cont{
  161. max-width:100%;
  162. }
  163. }
  164. }
  165. .form--contents h3 {
  166. font-size: 16px;
  167. font-weight: 600;
  168. margin-bottom: 10px;
  169. }
  170. .form--contents h3 .required {
  171. color: #ff0000;
  172. margin-left: 4px;
  173. }
  174. .form--contents input[type="text"],
  175. .form--contents input[type="email"],
  176. .form--contents select,
  177. .form--contents textarea {
  178. width: 100%;
  179. padding: 10px;
  180. border: 1px solid #ddd;
  181. border-radius: 4px;
  182. font-size: 14px;
  183. }
  184. .tel-group {
  185. display: flex;
  186. align-items: center;
  187. gap: 10px;
  188. }
  189. .tel-group select {
  190. width: 100px;
  191. }
  192. .tel-group input {
  193. flex: 1;
  194. }
  195. .tel-group span {
  196. font-weight: 500;
  197. }
  198. .radio-group {
  199. display: flex;
  200. gap: 20px;
  201. align-items: center;
  202. }
  203. .radio-group label {
  204. display: flex;
  205. align-items: center;
  206. cursor: pointer;
  207. }
  208. .radio-group input[type="radio"] {
  209. width: auto;
  210. margin-right: 5px;
  211. }
  212. .privacy-box {
  213. border: 1px solid #ddd;
  214. border-radius: 4px;
  215. padding: 20px;
  216. background-color: #f9f9f9;
  217. }
  218. .privacy-content {
  219. height: 300px;
  220. overflow-y: auto;
  221. padding: 15px;
  222. background-color: #fff;
  223. border: 1px solid #e0e0e0;
  224. border-radius: 4px;
  225. margin-bottom: 20px;
  226. line-height: 1.8;
  227. }
  228. .agree-check {
  229. padding: 15px;
  230. background-color: #fff;
  231. border: 1px solid #e0e0e0;
  232. border-radius: 4px;
  233. }
  234. .agree-check h4 {
  235. font-size: 14px;
  236. font-weight: 600;
  237. margin-bottom: 10px;
  238. }
  239. .btn--wrap {
  240. text-align: center;
  241. margin-top: 40px;
  242. }
  243. .btn-submit {
  244. padding: 12px 40px;
  245. background-color: #00a651;
  246. color: #fff;
  247. border: none;
  248. border-radius: 4px;
  249. font-size: 16px;
  250. font-weight: 600;
  251. cursor: pointer;
  252. transition: background-color 0.3s;
  253. }
  254. .btn-submit:hover {
  255. background-color: #008840;
  256. }
  257. .btn-submit:disabled {
  258. background-color: #ccc;
  259. cursor: not-allowed;
  260. }
  261. .map-section {
  262. margin-top: 80px;
  263. padding-top: 40px;
  264. border-top: 1px solid #ddd;
  265. }
  266. .map-section h3 {
  267. font-size: 24px;
  268. font-weight: 600;
  269. margin-bottom: 20px;
  270. }
  271. .info-list,
  272. .contact-list {
  273. list-style: none;
  274. padding: 0;
  275. margin: 0 0 20px 0;
  276. }
  277. .info-list li,
  278. .contact-list li {
  279. font-size: 14px;
  280. line-height: 1.8;
  281. }
  282. .map-container {
  283. height: 450px;
  284. border: 1px solid #ddd;
  285. border-radius: 4px;
  286. overflow: hidden;
  287. }
  288. }
  289. }