
+++ hosting_index.html
... | ... | @@ -0,0 +1,20 @@ |
1 | +<? | |
2 | + $hostname = exec("/home/bin/hostname"); | |
3 | +?> | |
4 | +<html> | |
5 | +<head> | |
6 | +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
7 | +<title>(주)테이큰소프트 홈페이지입니다.</title> | |
8 | +</head> | |
9 | +<body> | |
10 | +<!--<BR> | |
11 | +<BR> | |
12 | +<BR> | |
13 | +<center><h1>(주)테이큰소프트 홈페이지입니다.</h1></center>--> | |
14 | +<!--iframe frameborder=0 scrolling=no marginwidth=0 marginheight=0 width=100% height=100% src="//hostinfo.cafe24.com/index.php?hostname=<?=$hostname;?>"></iframe --> | |
15 | +</body> | |
16 | + | |
17 | +<script> | |
18 | +window.location.href = 'http://www.takensoft.co.kr/view/index.html'; | |
19 | +</script> | |
20 | +</html> |
+++ resources/css/common.css
... | ... | @@ -0,0 +1,910 @@ |
1 | +@charset "utf-8"; | |
2 | + | |
3 | +:root { | |
4 | + /* color */ | |
5 | + --color-black: #3f454d; | |
6 | + --color-gray: #c6c6c6; | |
7 | + --color-white: #ffffff; | |
8 | + --color-orange: #fbbe28; | |
9 | + --color-light-orange: #fff4d7; | |
10 | + --color-green: #13833b; | |
11 | + --color-red: #ff5d5d; | |
12 | + --color-blue: #213f99; | |
13 | + --color-darkG: #434343; | |
14 | + --color-blueE: #e3ecff; | |
15 | + --color-skyBlue: #f5f8ff; | |
16 | +} | |
17 | + | |
18 | +/* 정렬 */ | |
19 | +.flex { | |
20 | + display: flex; | |
21 | + flex-wrap: wrap; | |
22 | +} | |
23 | + | |
24 | +.flex-column { | |
25 | + display: flex; | |
26 | + flex-direction: column; | |
27 | + height: 100%; | |
28 | +} | |
29 | + | |
30 | + | |
31 | +.justify-start { | |
32 | + justify-content: flex-start; | |
33 | +} | |
34 | + | |
35 | +.justify-center { | |
36 | + justify-content: center; | |
37 | +} | |
38 | + | |
39 | +.justify-between { | |
40 | + justify-content: space-between; | |
41 | +} | |
42 | + | |
43 | +.justify-around { | |
44 | + justify-content: space-around; | |
45 | +} | |
46 | + | |
47 | +.justify-end { | |
48 | + justify-content: flex-end; | |
49 | +} | |
50 | + | |
51 | +.align-start { | |
52 | + align-items: flex-start; | |
53 | +} | |
54 | + | |
55 | +.align-center { | |
56 | + align-items: center; | |
57 | +} | |
58 | + | |
59 | +.align-end { | |
60 | + align-items: flex-end; | |
61 | +} | |
62 | + | |
63 | + | |
64 | +.flex5, | |
65 | +.flex10, | |
66 | +.flex15, | |
67 | +.flex20, | |
68 | +.flex25, | |
69 | +.flex30, | |
70 | +.flex35, | |
71 | +.flex40, | |
72 | +.flex45, | |
73 | +.flex50, | |
74 | +.flex55, | |
75 | +.flex60, | |
76 | +.flex65, | |
77 | +.flex70, | |
78 | +.flex75, | |
79 | +.flex80, | |
80 | +.flex85, | |
81 | +.flex90, | |
82 | +.flex95, | |
83 | +.flex100 { | |
84 | + padding-left: 10px; | |
85 | + padding-right: 10px; | |
86 | +} | |
87 | + | |
88 | +.no-gutter>.flex5, | |
89 | +.no-gutter>.flex10, | |
90 | +.no-gutter>.flex15, | |
91 | +.no-gutter>.flex20, | |
92 | +.no-gutter>.flex25, | |
93 | +.no-gutter>.flex30, | |
94 | +.no-gutter>.flex35, | |
95 | +.no-gutter>.flex40, | |
96 | +.no-gutter>.flex45, | |
97 | +.no-gutter>.flex50, | |
98 | +.no-gutter>.flex55, | |
99 | +.no-gutter>.flex60, | |
100 | +.no-gutter>.flex65, | |
101 | +.no-gutter>.flex70, | |
102 | +.no-gutter>.flex75, | |
103 | +.no-gutter>.flex80, | |
104 | +.no-gutter>.flex85, | |
105 | +.no-gutter>.flex90, | |
106 | +.no-gutter>.flex95, | |
107 | +.no-gutter>.flex100 { | |
108 | + padding-left: 0; | |
109 | + padding-right: 0; | |
110 | +} | |
111 | + | |
112 | +/* 정렬 배율 */ | |
113 | +.flex5 { | |
114 | + flex: 0 0 5% | |
115 | +} | |
116 | + | |
117 | +.flex10 { | |
118 | + flex: 0 0 10% | |
119 | +} | |
120 | + | |
121 | +.flex15 { | |
122 | + flex: 0 0 15% | |
123 | +} | |
124 | + | |
125 | +.flex20 { | |
126 | + flex: 0 0 20% | |
127 | +} | |
128 | + | |
129 | +.flex25 { | |
130 | + flex: 0 0 25% | |
131 | +} | |
132 | + | |
133 | +.flex30 { | |
134 | + flex: 0 0 30% | |
135 | +} | |
136 | + | |
137 | +.flex35 { | |
138 | + flex: 0 0 35% | |
139 | +} | |
140 | + | |
141 | +.flex40 { | |
142 | + flex: 0 0 40% | |
143 | +} | |
144 | + | |
145 | +.flex45 { | |
146 | + flex: 0 0 45% | |
147 | +} | |
148 | + | |
149 | +.flex50 { | |
150 | + flex: 0 0 50% | |
151 | +} | |
152 | + | |
153 | +.flex55 { | |
154 | + flex: 0 0 55% | |
155 | +} | |
156 | + | |
157 | +.flex60 { | |
158 | + flex: 0 0 60% | |
159 | +} | |
160 | + | |
161 | +.flex65 { | |
162 | + flex: 0 0 65% | |
163 | +} | |
164 | + | |
165 | +.flex70 { | |
166 | + flex: 0 0 70% | |
167 | +} | |
168 | + | |
169 | +.flex75 { | |
170 | + flex: 0 0 75% | |
171 | +} | |
172 | + | |
173 | +.flex80 { | |
174 | + flex: 0 0 80% | |
175 | +} | |
176 | + | |
177 | +.flex85 { | |
178 | + flex: 0 0 85% | |
179 | +} | |
180 | + | |
181 | + | |
182 | +.flex90 { | |
183 | + flex: 0 0 90% | |
184 | +} | |
185 | + | |
186 | +.flex95 { | |
187 | + flex: 0 0 95% | |
188 | +} | |
189 | + | |
190 | +.flex100 { | |
191 | + flex: 0 0 100%; | |
192 | +} | |
193 | + | |
194 | +/* 너비 */ | |
195 | +.w10 { | |
196 | + width: 10%; | |
197 | +} | |
198 | + | |
199 | +.w20 { | |
200 | + width: 20%; | |
201 | +} | |
202 | + | |
203 | +.w30 { | |
204 | + width: 30%; | |
205 | +} | |
206 | + | |
207 | +.w40 { | |
208 | + width: 40%; | |
209 | +} | |
210 | + | |
211 | +.w50 { | |
212 | + width: 50%; | |
213 | +} | |
214 | + | |
215 | +.w60 { | |
216 | + width: 60%; | |
217 | +} | |
218 | + | |
219 | +.w70 { | |
220 | + width: 70%; | |
221 | +} | |
222 | + | |
223 | +.w80 { | |
224 | + width: 80%; | |
225 | +} | |
226 | + | |
227 | +.w90 { | |
228 | + width: 90%; | |
229 | +} | |
230 | + | |
231 | +.w100 { | |
232 | + width: 100%; | |
233 | +} | |
234 | + | |
235 | + | |
236 | + | |
237 | +/* 마진 */ | |
238 | +.ml0 { | |
239 | + margin-left: 0rem; | |
240 | +} | |
241 | + | |
242 | +.ml5 { | |
243 | + margin-left: 0.5rem; | |
244 | +} | |
245 | + | |
246 | +.ml10 { | |
247 | + margin-left: 1rem; | |
248 | +} | |
249 | + | |
250 | +.ml20 { | |
251 | + margin-left: 2rem; | |
252 | +} | |
253 | + | |
254 | +.ml30 { | |
255 | + margin-left: 3rem; | |
256 | +} | |
257 | + | |
258 | +.ml40 { | |
259 | + margin-left: 4rem; | |
260 | +} | |
261 | + | |
262 | +.ml50 { | |
263 | + margin-left: 5rem; | |
264 | +} | |
265 | + | |
266 | +.ml60 { | |
267 | + margin-left: 6rem; | |
268 | +} | |
269 | + | |
270 | +.ml70 { | |
271 | + margin-left: 7rem; | |
272 | +} | |
273 | + | |
274 | +.ml80 { | |
275 | + margin-left: 8rem; | |
276 | +} | |
277 | + | |
278 | +.ml90 { | |
279 | + margin-left: 9rem; | |
280 | +} | |
281 | + | |
282 | +.ml100 { | |
283 | + margin-left: 10rem; | |
284 | +} | |
285 | + | |
286 | +.mr0 { | |
287 | + margin-right: 0rem; | |
288 | +} | |
289 | + | |
290 | +.mr5 { | |
291 | + margin-right: 0.5rem; | |
292 | +} | |
293 | + | |
294 | +.mr10 { | |
295 | + margin-right: 1rem; | |
296 | +} | |
297 | + | |
298 | +.mr20 { | |
299 | + margin-right: 2rem; | |
300 | +} | |
301 | + | |
302 | +.mr30 { | |
303 | + margin-right: 3rem; | |
304 | +} | |
305 | + | |
306 | +.mr40 { | |
307 | + margin-right: 4rem; | |
308 | +} | |
309 | + | |
310 | +.mr50 { | |
311 | + margin-right: 5rem; | |
312 | +} | |
313 | + | |
314 | +.mr60 { | |
315 | + margin-right: 6rem; | |
316 | +} | |
317 | + | |
318 | +.mr70 { | |
319 | + margin-right: 7rem; | |
320 | +} | |
321 | + | |
322 | +.mr80 { | |
323 | + margin-right: 8rem; | |
324 | +} | |
325 | + | |
326 | +.mr90 { | |
327 | + margin-right: 9rem; | |
328 | +} | |
329 | + | |
330 | +.mr100 { | |
331 | + margin-right: 10rem; | |
332 | +} | |
333 | + | |
334 | +.mt0 { | |
335 | + margin-top: 0rem; | |
336 | +} | |
337 | + | |
338 | +.mt5 { | |
339 | + margin-top: 0.5rem; | |
340 | +} | |
341 | + | |
342 | +.mt10 { | |
343 | + margin-top: 1rem; | |
344 | +} | |
345 | + | |
346 | +.mt20 { | |
347 | + margin-top: 2rem; | |
348 | +} | |
349 | + | |
350 | +.mt30 { | |
351 | + margin-top: 3rem; | |
352 | +} | |
353 | + | |
354 | +.mt40 { | |
355 | + margin-top: 4rem; | |
356 | +} | |
357 | + | |
358 | +.mt50 { | |
359 | + margin-top: 5rem; | |
360 | +} | |
361 | + | |
362 | +.mt60 { | |
363 | + margin-top: 6rem; | |
364 | +} | |
365 | + | |
366 | +.mt70 { | |
367 | + margin-top: 7rem; | |
368 | +} | |
369 | + | |
370 | +.mt80 { | |
371 | + margin-top: 8rem; | |
372 | +} | |
373 | + | |
374 | +.mt90 { | |
375 | + margin-top: 9rem; | |
376 | +} | |
377 | + | |
378 | +.mt100 { | |
379 | + margin-top: 10rem; | |
380 | +} | |
381 | + | |
382 | +.mb0 { | |
383 | + margin-bottom: 0rem; | |
384 | +} | |
385 | + | |
386 | +.mb5 { | |
387 | + margin-bottom: 0.5rem; | |
388 | +} | |
389 | + | |
390 | +.mb10 { | |
391 | + margin-bottom: 1rem; | |
392 | +} | |
393 | + | |
394 | +.mb20 { | |
395 | + margin-bottom: 2rem; | |
396 | +} | |
397 | + | |
398 | +.mb30 { | |
399 | + margin-bottom: 3rem; | |
400 | +} | |
401 | + | |
402 | +.mb40 { | |
403 | + margin-bottom: 4rem; | |
404 | +} | |
405 | + | |
406 | +.mb50 { | |
407 | + margin-bottom: 5rem; | |
408 | +} | |
409 | + | |
410 | +.mb60 { | |
411 | + margin-bottom: 6rem; | |
412 | +} | |
413 | + | |
414 | +.mb70 { | |
415 | + margin-bottom: 7rem; | |
416 | +} | |
417 | + | |
418 | +.mb80 { | |
419 | + margin-bottom: 8rem; | |
420 | +} | |
421 | + | |
422 | +.mb90 { | |
423 | + margin-bottom: 9rem; | |
424 | +} | |
425 | + | |
426 | +.mb100 { | |
427 | + margin-bottom: 10rem; | |
428 | +} | |
429 | + | |
430 | +/* 패딩 */ | |
431 | +.pd0 { | |
432 | + padding: 0; | |
433 | +} | |
434 | + | |
435 | +.pd5 { | |
436 | + padding: 0.5rem; | |
437 | +} | |
438 | + | |
439 | +.pd10 { | |
440 | + padding: 1rem; | |
441 | +} | |
442 | + | |
443 | +.pd20 { | |
444 | + padding: 2rem; | |
445 | +} | |
446 | + | |
447 | +.pd30 { | |
448 | + padding: 3rem; | |
449 | +} | |
450 | + | |
451 | +.pd40 { | |
452 | + padding: 4rem; | |
453 | +} | |
454 | + | |
455 | +.pd50 { | |
456 | + padding: 5rem; | |
457 | +} | |
458 | + | |
459 | +.pd60 { | |
460 | + padding: 6rem; | |
461 | +} | |
462 | + | |
463 | +.pd70 { | |
464 | + padding: 7rem; | |
465 | +} | |
466 | + | |
467 | +.pd80 { | |
468 | + padding: 8rem; | |
469 | +} | |
470 | + | |
471 | +.pd90 { | |
472 | + padding: 9rem; | |
473 | +} | |
474 | + | |
475 | +.pd100 { | |
476 | + padding: 10rem; | |
477 | +} | |
478 | + | |
479 | +/* 패딩 top */ | |
480 | + | |
481 | +.pt0 { | |
482 | + padding-top: 0; | |
483 | +} | |
484 | + | |
485 | +.pt5 { | |
486 | + padding-top: 0.5rem; | |
487 | +} | |
488 | + | |
489 | +.pt10 { | |
490 | + padding-top: 1rem; | |
491 | +} | |
492 | + | |
493 | +.pt20 { | |
494 | + padding-top: 2rem; | |
495 | +} | |
496 | + | |
497 | +.pt30 { | |
498 | + padding-top: 3rem; | |
499 | +} | |
500 | + | |
501 | +.pt40 { | |
502 | + padding-top: 4rem; | |
503 | +} | |
504 | + | |
505 | +.pt50 { | |
506 | + padding-top: 5rem; | |
507 | +} | |
508 | + | |
509 | +.pt60 { | |
510 | + padding-top: 6rem; | |
511 | +} | |
512 | + | |
513 | +.pt70 { | |
514 | + padding-top: 7rem; | |
515 | +} | |
516 | + | |
517 | +.pt80 { | |
518 | + padding-top: 8rem; | |
519 | +} | |
520 | + | |
521 | +.pt90 { | |
522 | + padding-top: 9rem; | |
523 | +} | |
524 | + | |
525 | +.pt100 { | |
526 | + padding-top: 10rem; | |
527 | +} | |
528 | +.pt120 { | |
529 | + padding-top: 12rem; | |
530 | +} | |
531 | + | |
532 | +.pb0 { | |
533 | + padding-bottom: 0; | |
534 | +} | |
535 | + | |
536 | +/* 패딩 bottom */ | |
537 | +.pb5 { | |
538 | + padding-bottom: 0.5rem; | |
539 | +} | |
540 | + | |
541 | +.pb10 { | |
542 | + padding-bottom: 1rem; | |
543 | +} | |
544 | + | |
545 | +.pb20 { | |
546 | + padding-bottom: 2rem; | |
547 | +} | |
548 | + | |
549 | +.pb30 { | |
550 | + padding-bottom: 3rem; | |
551 | +} | |
552 | + | |
553 | +.pb40 { | |
554 | + padding-bottom: 4rem; | |
555 | +} | |
556 | + | |
557 | +.pb50 { | |
558 | + padding-bottom: 5rem; | |
559 | +} | |
560 | + | |
561 | +.pb60 { | |
562 | + padding-bottom: 6rem; | |
563 | +} | |
564 | + | |
565 | +.pb70 { | |
566 | + padding-bottom: 7rem; | |
567 | +} | |
568 | + | |
569 | +.pb80 { | |
570 | + padding-bottom: 8rem; | |
571 | +} | |
572 | + | |
573 | +.pb90 { | |
574 | + padding-bottom: 9rem; | |
575 | +} | |
576 | + | |
577 | +.pb100 { | |
578 | + padding-bottom: 10rem; | |
579 | +} | |
580 | +.pb120 { | |
581 | + padding-bottom: 12rem; | |
582 | +} | |
583 | + | |
584 | +/* 패딩 left */ | |
585 | +.pl0 { | |
586 | + padding-left: 0rem; | |
587 | +} | |
588 | +.pl5 { | |
589 | + padding-left: 0.5rem; | |
590 | +} | |
591 | + | |
592 | +.pl10 { | |
593 | + padding-left: 1rem; | |
594 | +} | |
595 | + | |
596 | +.pl20 { | |
597 | + padding-left: 2rem; | |
598 | +} | |
599 | + | |
600 | +.pl30 { | |
601 | + padding-left: 3rem; | |
602 | +} | |
603 | + | |
604 | +.pl40 { | |
605 | + padding-left: 4rem; | |
606 | +} | |
607 | + | |
608 | +.pl50 { | |
609 | + padding-left: 5rem; | |
610 | +} | |
611 | + | |
612 | +.pl60 { | |
613 | + padding-left: 6rem; | |
614 | +} | |
615 | + | |
616 | +.pl70 { | |
617 | + padding-left: 7rem; | |
618 | +} | |
619 | + | |
620 | +.pl80 { | |
621 | + padding-left: 8rem; | |
622 | +} | |
623 | + | |
624 | +.pl90 { | |
625 | + padding-left: 9rem; | |
626 | +} | |
627 | + | |
628 | +.pl100 { | |
629 | + padding-left: 10rem; | |
630 | +} | |
631 | + | |
632 | +/* 패딩 right */ | |
633 | +.pr0 { | |
634 | + padding-right: 0rem; | |
635 | +} | |
636 | +.pr5 { | |
637 | + padding-right: 0.5rem; | |
638 | +} | |
639 | + | |
640 | +.pr10 { | |
641 | + padding-right: 1rem; | |
642 | +} | |
643 | + | |
644 | +.pr20 { | |
645 | + padding-right: 2rem; | |
646 | +} | |
647 | + | |
648 | +.pr30 { | |
649 | + padding-right: 3rem; | |
650 | +} | |
651 | + | |
652 | +.pr40 { | |
653 | + padding-right: 4rem; | |
654 | +} | |
655 | + | |
656 | +.pr50 { | |
657 | + padding-right: 5rem; | |
658 | +} | |
659 | + | |
660 | +.pr60 { | |
661 | + padding-right: 6rem; | |
662 | +} | |
663 | + | |
664 | +.pr70 { | |
665 | + padding-right: 7rem; | |
666 | +} | |
667 | + | |
668 | +.pr80 { | |
669 | + padding-right: 8rem; | |
670 | +} | |
671 | + | |
672 | +.pr90 { | |
673 | + padding-right: 9rem; | |
674 | +} | |
675 | + | |
676 | +.pr100 { | |
677 | + padding-right: 10rem; | |
678 | +} | |
679 | + | |
680 | +/* btn */ | |
681 | +.small-btn { | |
682 | + width: 120px; | |
683 | + padding: 5px 10px; | |
684 | + border-radius: 5px; | |
685 | +} | |
686 | + | |
687 | +.set-btn { | |
688 | + width: 50px; | |
689 | + padding: 5px 10px; | |
690 | + border-radius: 5px; | |
691 | +} | |
692 | + | |
693 | +.large-btn { | |
694 | + width: 100%; | |
695 | + padding: 5px 15px; | |
696 | + border-radius: 5px; | |
697 | +} | |
698 | + | |
699 | +.icon-btn { | |
700 | + padding: 5px; | |
701 | + border-radius: 50%; | |
702 | + | |
703 | +} | |
704 | + | |
705 | +.custom-toggle { | |
706 | + position: absolute; | |
707 | + bottom: 0; | |
708 | + background-color: var(--color-skyBlue); | |
709 | + margin-left: 0; | |
710 | + border: 1px solid #eee; | |
711 | + border-left: 0; | |
712 | +} | |
713 | + | |
714 | +.custom-toggle::after { | |
715 | + content: ""; | |
716 | + position: absolute; | |
717 | + left: 0; | |
718 | + width: 5px; | |
719 | + height: 5px; | |
720 | + background-color: var(--color-skyBlue); | |
721 | + bottom: 0; | |
722 | +} | |
723 | + | |
724 | +.logout-btn { | |
725 | + padding: 5px 10px; | |
726 | + color: #aaa; | |
727 | + position: relative; | |
728 | +} | |
729 | + | |
730 | +.logout-btn::before { | |
731 | + content: ""; | |
732 | + width: 1px; | |
733 | + height: 10px; | |
734 | + position: absolute; | |
735 | + top: 50%; | |
736 | + left: 0; | |
737 | + transform: translateY(-50%); | |
738 | + background-color: #aaa; | |
739 | +} | |
740 | + | |
741 | +.close-btn { | |
742 | + color: #d6def6; | |
743 | +} | |
744 | + | |
745 | +.style-btn { | |
746 | + border: 1px solid #eee; | |
747 | + border-radius: 3px; | |
748 | + background-color: var(--color-white); | |
749 | +} | |
750 | + | |
751 | +.style-btn>svg { | |
752 | + color: #aaa; | |
753 | +} | |
754 | + | |
755 | +.btn-active { | |
756 | + border: 1px solid var(--color-blue); | |
757 | +} | |
758 | + | |
759 | +.btn-active>svg { | |
760 | + color: var(--color-blue); | |
761 | +} | |
762 | + | |
763 | +.attribute-btn { | |
764 | + position: relative; | |
765 | +} | |
766 | + | |
767 | +.blue-btn, | |
768 | +.blue-border-btn:hover { | |
769 | + background-color: var(--color-blue); | |
770 | + color: var(--color-white); | |
771 | + transition: all 0.3s ease-in-out; | |
772 | +} | |
773 | + | |
774 | +.red-btn, | |
775 | +.red-border-btn:hover { | |
776 | + background-color: var(--color-red); | |
777 | + color: var(--color-white); | |
778 | + transition: all 0.3s ease-in-out; | |
779 | +} | |
780 | + | |
781 | +.green-btn, | |
782 | +.green-border-btn:hover { | |
783 | + background-color: var(--color-green); | |
784 | + color: var(--color-white); | |
785 | + transition: all 0.3s ease-in-out; | |
786 | +} | |
787 | + | |
788 | +.orange-btn, | |
789 | +.orange-border-btn:hover { | |
790 | + background-color: var(--color-orange); | |
791 | + color: var(--color-white); | |
792 | + transition: all 0.3s ease-in-out; | |
793 | +} | |
794 | + | |
795 | +.darkg-btn, | |
796 | +.darkg-border-btn:hover { | |
797 | + background-color: var(--color-darkG); | |
798 | + color: var(--color-white); | |
799 | + transition: all 0.3s ease-in-out; | |
800 | +} | |
801 | + | |
802 | +.gray-btn, | |
803 | +.gray-border-btn:hover { | |
804 | + background-color: #eee; | |
805 | + color: #333; | |
806 | + transition: all 0.3s ease-in-out; | |
807 | +} | |
808 | + | |
809 | + | |
810 | +.blue-border-btn { | |
811 | + border: 1px solid var(--color-blue); | |
812 | + color: var(--color-blue); | |
813 | + background-color: var(--color-white); | |
814 | +} | |
815 | + | |
816 | +.red-border-btn { | |
817 | + border: 1px solid var(--color-red); | |
818 | + color: var(--color-red); | |
819 | + background-color: var(--color-white); | |
820 | +} | |
821 | + | |
822 | +.green-border-btn { | |
823 | + border: 1px solid var(--color-green); | |
824 | + color: var(--color-green); | |
825 | + background-color: var(--color-white); | |
826 | +} | |
827 | + | |
828 | +.orange-border-btn { | |
829 | + border: 1px solid var(--color-orange); | |
830 | + color: var(--color-orange); | |
831 | + background-color: #fff; | |
832 | +} | |
833 | + | |
834 | +.darkg-border-btn { | |
835 | + border: 1px solid #434343; | |
836 | + color: #434343; | |
837 | + background-color: var(--color-white); | |
838 | +} | |
839 | + | |
840 | +.gray-border-btn { | |
841 | + border: 1px solid #aaa; | |
842 | + color: #aaa; | |
843 | + background-color: var(--color-white); | |
844 | +} | |
845 | + | |
846 | +.tp-btn { | |
847 | + background-color: transparent; | |
848 | + width: 15px; | |
849 | + height: 15px; | |
850 | + margin-left: 10px; | |
851 | +} | |
852 | + | |
853 | +button:disabled { | |
854 | + background-color: #eee; | |
855 | + color: #333; | |
856 | +} | |
857 | + | |
858 | +/* .del-icon-btn{ | |
859 | + width: 25px; | |
860 | + height: 25px; | |
861 | + padding: 5px; | |
862 | + background-color: var(--color-red); | |
863 | + color: var(--color-white); | |
864 | + border-radius: 50%; | |
865 | +} | |
866 | + | |
867 | +.set-icon-btn{ | |
868 | + width: 25px; | |
869 | + height: 25px; | |
870 | + padding: 5px; | |
871 | + background-color: var(--color-darkG); | |
872 | + color: var(--color-white); | |
873 | + border-radius: 50%; | |
874 | +} */ | |
875 | + | |
876 | + | |
877 | + | |
878 | +/* text 정렬 */ | |
879 | +.text-lf { | |
880 | + text-align: left; | |
881 | +} | |
882 | + | |
883 | +.text-ct { | |
884 | + text-align: center; | |
885 | +} | |
886 | + | |
887 | +.text-rg { | |
888 | + text-align: right; | |
889 | +} | |
890 | + | |
891 | +/* text color */ | |
892 | +.orange { | |
893 | + color: var(--color-orange); | |
894 | +} | |
895 | + | |
896 | +.green { | |
897 | + color: var(--color-green); | |
898 | +} | |
899 | + | |
900 | +.blue { | |
901 | + color: var(--color-blue); | |
902 | +} | |
903 | + | |
904 | +.red { | |
905 | + color: var(--color-red); | |
906 | +} | |
907 | + | |
908 | +.cursor { | |
909 | + cursor: pointer; | |
910 | +}(파일 끝에 줄바꿈 문자 없음) |
+++ resources/css/component.css
... | ... | @@ -0,0 +1,640 @@ |
1 | +@charset "utf-8"; | |
2 | + | |
3 | +/* box 공통 */ | |
4 | +.container { | |
5 | + width: 100%; | |
6 | + height: 100%; | |
7 | +} | |
8 | + | |
9 | +.content-box { | |
10 | + width: 100%; | |
11 | + height: 100%; | |
12 | +} | |
13 | + | |
14 | +.left-content, | |
15 | +.right-content { | |
16 | + height: 100%; | |
17 | +} | |
18 | + | |
19 | +.content-wrap { | |
20 | + height: calc(100% - 47px); | |
21 | +} | |
22 | + | |
23 | +/* .content { | |
24 | + width: 100%; | |
25 | + overflow-y: auto; | |
26 | +} */ | |
27 | + | |
28 | +.content:last-child { | |
29 | + margin-bottom: 0; | |
30 | +} | |
31 | + | |
32 | +.content-zone { | |
33 | + height: calc(100% - 57px); | |
34 | +} | |
35 | + | |
36 | +.left-content, | |
37 | +.right-content, | |
38 | +.row | |
39 | +{ | |
40 | + padding: 15px 0; | |
41 | + border-radius: 10px; | |
42 | + background-color: #fff; | |
43 | + | |
44 | + position: relative; | |
45 | +} | |
46 | + | |
47 | +.row { | |
48 | + padding: 0; | |
49 | +} | |
50 | + | |
51 | +.form-box { | |
52 | + background-color: #edf0ff; | |
53 | + border: 1px solid #dbe3fb; | |
54 | + padding: 15px; | |
55 | +} | |
56 | + | |
57 | + | |
58 | +.border { | |
59 | + border: 1px solid #eee; | |
60 | + border-radius: 5px; | |
61 | +} | |
62 | + | |
63 | +.border.active { | |
64 | + border: 1px solid var(--color-blue); | |
65 | + border-radius: 5px; | |
66 | +} | |
67 | + | |
68 | +.overflow-y { | |
69 | + overflow-y: auto; | |
70 | +} | |
71 | + | |
72 | +/* title 공통 */ | |
73 | +.page-titleZone { | |
74 | + margin-bottom: 10px; | |
75 | +} | |
76 | + | |
77 | +.main-title { | |
78 | + font-family: 'GmarketSansB'; | |
79 | + font-size: 2rem; | |
80 | + color: #213f99; | |
81 | +} | |
82 | + | |
83 | +.content-titleZone { | |
84 | + padding-bottom: 10px; | |
85 | + border-bottom: 1px solid #aaa; | |
86 | + margin-bottom: 10px; | |
87 | +} | |
88 | + | |
89 | +.box-title { | |
90 | + font-size: 1.6rem; | |
91 | + font-weight: bold; | |
92 | +} | |
93 | + | |
94 | +.object-title { | |
95 | + font-size: 1.4rem; | |
96 | + font-weight: bold; | |
97 | + color: var(--color-blue); | |
98 | +} | |
99 | + | |
100 | +/* 테이블 공통 */ | |
101 | +.table-zone { | |
102 | + padding: 15px 0; | |
103 | +} | |
104 | + | |
105 | + | |
106 | +.form-table { | |
107 | + border-bottom: 1px solid #aaa; | |
108 | +} | |
109 | +.sticky-table th, | |
110 | +.sticky-table td, | |
111 | +.list-table th, | |
112 | +.list-table td, | |
113 | +.form-table th { | |
114 | + text-align: center; | |
115 | +} | |
116 | + | |
117 | +.form-table th, | |
118 | +.form-table td { | |
119 | + border-top: 1px solid #aaa; | |
120 | +} | |
121 | +.sticky-table thead th, | |
122 | +.list-table thead th { | |
123 | + background-color: #dbe3fb; | |
124 | + color: #213f99; | |
125 | +} | |
126 | + | |
127 | +.list-table.orange thead tr, | |
128 | +.sticky-table.orange thead tr { | |
129 | + background-color: #f29600; | |
130 | + color: #fff; | |
131 | +} | |
132 | + | |
133 | +.list-table tbody tr, | |
134 | +.sticky-table tbody tr { | |
135 | + cursor: pointer; | |
136 | +} | |
137 | + | |
138 | +.list-table tbody tr:nth-child(even), | |
139 | +.sticky-table tbody tr:nth-child(even) { | |
140 | + background-color: #f4f6ff; | |
141 | +} | |
142 | + | |
143 | +.list-table.orange tbody tr:nth-child(even), | |
144 | +.sticky-table.orange tbody tr:nth-child(even) { | |
145 | + background-color: #fff2de; | |
146 | +} | |
147 | + | |
148 | +.form-table th { | |
149 | + color: #213f99; | |
150 | + text-align: center; | |
151 | + background-color: #dbe3fb; | |
152 | +} | |
153 | + | |
154 | +.sticky-table thead th{ | |
155 | + position: sticky; | |
156 | + top: 0; | |
157 | +} | |
158 | + | |
159 | +.form-table2 th, | |
160 | +.custom-subtitle { | |
161 | + color: #213f99; | |
162 | + /* text-align: center; */ | |
163 | + font-weight: 800; | |
164 | +} | |
165 | + | |
166 | +.option-table th { | |
167 | + color: #213f99; | |
168 | +} | |
169 | + | |
170 | +.list-info { | |
171 | + margin-bottom: 10px; | |
172 | +} | |
173 | + | |
174 | +.no-list { | |
175 | + text-align: center; | |
176 | + font-size: 1.3rem; | |
177 | + line-height: 120px; | |
178 | +} | |
179 | + | |
180 | +.modal-table { | |
181 | + border-bottom: 0; | |
182 | +} | |
183 | + | |
184 | +.modal-table td { | |
185 | + border-top: 0; | |
186 | +} | |
187 | + | |
188 | + | |
189 | + | |
190 | + | |
191 | +/* 서치바 공통 */ | |
192 | +/* .table-zone */ | |
193 | +.searchbar-zone { | |
194 | + margin-bottom: 10px; | |
195 | +} | |
196 | + | |
197 | +/* 기본 서치바 */ | |
198 | +.search-square { | |
199 | + position: relative; | |
200 | + margin-left: 5px; | |
201 | +} | |
202 | + | |
203 | +.square-date, | |
204 | +.square-select { | |
205 | + width: 150px; | |
206 | +} | |
207 | + | |
208 | +.square-input { | |
209 | + color: #646464; | |
210 | + padding: 6px 10px; | |
211 | + border-radius: 5px; | |
212 | + width: 300px; | |
213 | + transition: all ease-in-out .5s; | |
214 | +} | |
215 | + | |
216 | +.square-input:hover, | |
217 | +.square-input:focus { | |
218 | + box-shadow: 0 0 1em #00000013; | |
219 | +} | |
220 | + | |
221 | +.square-input:focus { | |
222 | + outline: none; | |
223 | + background-color: #f0eeee; | |
224 | +} | |
225 | + | |
226 | +.square-input::-webkit-input-placeholder { | |
227 | + font-weight: 100; | |
228 | + color: #ccc; | |
229 | +} | |
230 | + | |
231 | +.square-input:focus { | |
232 | + background-color: #f0eeee; | |
233 | +} | |
234 | + | |
235 | +.square-button { | |
236 | + border: none; | |
237 | + margin-left: 0; | |
238 | + position: absolute; | |
239 | + right: 5px; | |
240 | + top: 50%; | |
241 | + transform: translateY(-50%); | |
242 | +} | |
243 | + | |
244 | +.square-button:hover { | |
245 | + cursor: pointer; | |
246 | +} | |
247 | + | |
248 | +.square-icon { | |
249 | + color: #b4b4b4; | |
250 | +} | |
251 | + | |
252 | +input[type="text"].full-input, | |
253 | +.full-select { | |
254 | + width: 100%; | |
255 | +} | |
256 | + | |
257 | +input[type="text"].half-input, | |
258 | +.half-select { | |
259 | + width: 50%; | |
260 | +} | |
261 | + | |
262 | +/* 상세 서치바 */ | |
263 | +.search-bottom { | |
264 | + padding: 10px 0; | |
265 | +} | |
266 | + | |
267 | +.option-searchbar { | |
268 | + width: 75%; | |
269 | + margin: 0 auto; | |
270 | + padding: 15px; | |
271 | + background-color: #f8f9fe; | |
272 | + border-radius: 10px; | |
273 | +} | |
274 | + | |
275 | +/* 기타 공통 */ | |
276 | +.coupler { | |
277 | + font-size: 1.3rem; | |
278 | + margin-left: 5px; | |
279 | +} | |
280 | + | |
281 | +.option-title { | |
282 | + padding: 0 5px; | |
283 | + font-size: 1.3rem; | |
284 | + color: #213f99; | |
285 | + margin-left: 5px; | |
286 | +} | |
287 | + | |
288 | +.count-zone { | |
289 | + font-size: 1.3rem; | |
290 | +} | |
291 | + | |
292 | +.count-zone span { | |
293 | + font-weight: 900; | |
294 | + color: #213f99; | |
295 | +} | |
296 | + | |
297 | + | |
298 | +/* 모달 */ | |
299 | +.modal-wrapper { | |
300 | + background-color: rgba(0, 0, 0, 0.5); | |
301 | + position: fixed; | |
302 | + width: 100%; | |
303 | + height: 100%; | |
304 | + top: 0; | |
305 | + left: 0; | |
306 | + display: flex; | |
307 | + justify-content: center; | |
308 | + align-items: center; | |
309 | + z-index: 100000; | |
310 | +} | |
311 | + | |
312 | +.modal-container { | |
313 | + background: #fff; | |
314 | + min-width: 500px; | |
315 | + width: 50%; | |
316 | + height: 90%; | |
317 | + border-radius: 5px; | |
318 | + display: grid; | |
319 | + grid-template-rows: auto 1fr auto; | |
320 | + padding: 20px; | |
321 | + box-sizing: border-box; | |
322 | + max-height: 95%; | |
323 | + min-height: 500px; | |
324 | +} | |
325 | + | |
326 | +.modal-title { | |
327 | + width: 100%; | |
328 | + border-bottom: 1px solid #d4cccc; | |
329 | + padding: 10px 0; | |
330 | +} | |
331 | + | |
332 | +.modal-subtitle { | |
333 | + font-size: 1.3rem; | |
334 | + font-weight: 600; | |
335 | +} | |
336 | + | |
337 | +.modal-content-monthly { | |
338 | + width: 100%; | |
339 | + padding: 20px 0; | |
340 | + overflow-y: auto; | |
341 | +} | |
342 | + | |
343 | +.large-modal { | |
344 | + width: 90%; | |
345 | +} | |
346 | + | |
347 | +.small-modal { | |
348 | + min-width: 200px; | |
349 | + min-height: 200px; | |
350 | + max-width: 450px; | |
351 | + height: auto; | |
352 | + max-height: 50%; | |
353 | +} | |
354 | + | |
355 | +.list-modal { | |
356 | + width: 80%; | |
357 | + height: 80%; | |
358 | +} | |
359 | + | |
360 | +.alert-write { | |
361 | + font-size: 1.6rem; | |
362 | + line-height: 180%; | |
363 | +} | |
364 | + | |
365 | + | |
366 | +.modal-content-monthly::-webkit-scrollbar { | |
367 | + width: 10px; | |
368 | +} | |
369 | + | |
370 | +.modal-content-monthly::-webkit-scrollbar-thumb { | |
371 | + background-color: #6b6b6b; | |
372 | + border-radius: 10px; | |
373 | + background-clip: padding-box; | |
374 | + border: 2px solid transparent; | |
375 | +} | |
376 | + | |
377 | +.modal-content-monthly::-webkit-scrollbar-track { | |
378 | + background-color: #eee; | |
379 | + border-radius: 10px; | |
380 | + box-shadow: inset 0px 0px 5px white; | |
381 | +} | |
382 | + | |
383 | +.modal-end { | |
384 | + width: 100%; | |
385 | + padding: 15px 0; | |
386 | + border-top: 1px solid #eee; | |
387 | +} | |
388 | + | |
389 | +.alert-modal .modal-end button, | |
390 | +.small-modal .modal-end button { | |
391 | + margin-left: 0; | |
392 | +} | |
393 | + | |
394 | + | |
395 | +/* 탭 */ | |
396 | +.tab-nav { | |
397 | + border-top: 1px solid #eee; | |
398 | + border-bottom: 1px solid #eee; | |
399 | + padding: 10px 0; | |
400 | +} | |
401 | + | |
402 | +.tab-nav li a { | |
403 | + display: block; | |
404 | + font-size: 1.6rem; | |
405 | + text-align: center; | |
406 | + border-right: 1px solid #eee; | |
407 | + padding: 0 10px; | |
408 | +} | |
409 | + | |
410 | +.tab-nav li a.activeTab { | |
411 | + color: #213f99; | |
412 | + font-weight: 600; | |
413 | +} | |
414 | + | |
415 | +.tab-nav li:last-child a { | |
416 | + border-right: 0; | |
417 | +} | |
418 | + | |
419 | +.tab-nav2 { | |
420 | + border-bottom: 1px solid #eee; | |
421 | +} | |
422 | + | |
423 | +.tab-nav2 li a { | |
424 | + display: block; | |
425 | + font-size: 1.6rem; | |
426 | + text-align: center; | |
427 | + border: 1px solid #eee; | |
428 | + padding: 0 10px; | |
429 | + background-color: #f8f8f8; | |
430 | + padding: 10px; | |
431 | + border-radius: 5px 5px 0 0; | |
432 | + border-bottom: 5px solid #f8f8f8; | |
433 | +} | |
434 | + | |
435 | +.tab-nav2 li a.activeTab { | |
436 | + color: var(--color-blue); | |
437 | + font-weight: 600; | |
438 | + background-color: #fff; | |
439 | + border-bottom: 5px solid var(--color-blue); | |
440 | +} | |
441 | + | |
442 | +.column-nav { | |
443 | + height: 100%; | |
444 | + background-color: var(--color-blue); | |
445 | + padding: 10px 0; | |
446 | +} | |
447 | + | |
448 | +.column-nav ul li a { | |
449 | + display: block; | |
450 | + font-size: 1.1rem; | |
451 | + text-align: center; | |
452 | + padding: 10px; | |
453 | + color: var(--color-gray); | |
454 | +} | |
455 | + | |
456 | +.column-nav ul li a.activeTab { | |
457 | + color: var(--color-white); | |
458 | + font-weight: bold; | |
459 | +} | |
460 | + | |
461 | +.tab-content { | |
462 | + height: 100%; | |
463 | + overflow-y: auto; | |
464 | +} | |
465 | + | |
466 | +.tab-content2 { | |
467 | + height: calc(100% - 46px); | |
468 | +} | |
469 | + | |
470 | +.tab-content2 .content-box { | |
471 | + padding: 10px; | |
472 | +} | |
473 | + | |
474 | +/* 라벨 css(상세 조회랑 다름) */ | |
475 | +.chekck-type { | |
476 | + display: none; | |
477 | +} | |
478 | + | |
479 | +.chekcktype-label { | |
480 | + border-radius: 5px; | |
481 | + padding: 5px 10px; | |
482 | + background-color: #d6def6; | |
483 | + color: #213f99; | |
484 | +} | |
485 | + | |
486 | +.chekck-type:checked+label { | |
487 | + background-color: #213f99; | |
488 | + color: #fff; | |
489 | +} | |
490 | + | |
491 | + | |
492 | +/* file tree */ | |
493 | +.file-list { | |
494 | + display: block; | |
495 | + padding: 5px; | |
496 | + font-size: 1.3rem; | |
497 | +} | |
498 | + | |
499 | +.selected { | |
500 | + background-color: rgb(255, 249, 239); | |
501 | + border: 1px solid var(--color-orange); | |
502 | + color: var(--color-orange); | |
503 | + border-radius: 5px; | |
504 | +} | |
505 | + | |
506 | +.item { | |
507 | + background-color: var(--color-white); | |
508 | + border-radius: 5px; | |
509 | + padding: 5px; | |
510 | + width: 100%; | |
511 | + border: 1px solid #eee; | |
512 | +} | |
513 | + | |
514 | +.item>p { | |
515 | + font-size: 1.3rem; | |
516 | +} | |
517 | + | |
518 | +.color-picker { | |
519 | + width: 40px; | |
520 | + height: 40px; | |
521 | + background-color: #fff; | |
522 | + border-radius: 5px; | |
523 | + padding: 0 2px; | |
524 | + position: relative; | |
525 | +} | |
526 | + | |
527 | +.color-picker::after { | |
528 | + content: "+"; | |
529 | + position: absolute; | |
530 | + width: 20px; | |
531 | + height: 20px; | |
532 | + background-color: var(--color-white); | |
533 | + color: #6b6b6b; | |
534 | + border-radius: 20px; | |
535 | + top: 50%; | |
536 | + left: 50%; | |
537 | + transform: translate(-50%, -50%); | |
538 | + text-align: center; | |
539 | + font-size: 2rem; | |
540 | + line-height: 20px; | |
541 | +} | |
542 | + | |
543 | +.up, | |
544 | +.down { | |
545 | + border: 1px solid #aaa; | |
546 | + text-align: center; | |
547 | + padding: 1.5px 0; | |
548 | + background-color: var(--color-white); | |
549 | +} | |
550 | + | |
551 | +.up { | |
552 | + border-radius: 0 5px 5px 0; | |
553 | + border-left: none; | |
554 | +} | |
555 | + | |
556 | +.down { | |
557 | + border-radius: 5px 0 0 5px; | |
558 | + border-right: none; | |
559 | +} | |
560 | + | |
561 | +.up button, | |
562 | +.down button { | |
563 | + font-size: 2rem; | |
564 | +} | |
565 | + | |
566 | +input[type="text"].size-input { | |
567 | + border-radius: 0; | |
568 | + text-align: center; | |
569 | +} | |
570 | + | |
571 | +.color-list { | |
572 | + width: 30px; | |
573 | + height: 30px; | |
574 | + border-radius: 5px; | |
575 | +} | |
576 | + | |
577 | + | |
578 | +.tabnav2>ul>li { | |
579 | + border: 1px solid var(--color-blue); | |
580 | + border-radius: 5px; | |
581 | + color: var(--color-blue); | |
582 | + background-color: var(--color-white); | |
583 | +} | |
584 | + | |
585 | +.tabnav2>ul>li p { | |
586 | + font-size: 1.3rem; | |
587 | + padding: 8px 10px; | |
588 | +} | |
589 | + | |
590 | +.tabnav2>ul>li p.activeTab2 { | |
591 | + background-color: var(--color-blue); | |
592 | + color: var(--color-white); | |
593 | +} | |
594 | + | |
595 | +.tab-content2 { | |
596 | + padding: 10px 0; | |
597 | +} | |
598 | + | |
599 | +/* 투명도 */ | |
600 | +.slider-container { | |
601 | + position: relative; | |
602 | +} | |
603 | + | |
604 | +.slider { | |
605 | + width: 100%; | |
606 | + background: linear-gradient(to right, red var(--slider-percentage), transparent var(--slider-percentage)); | |
607 | +} | |
608 | + | |
609 | +.slider::-webkit-slider-runnable-track { | |
610 | + background: linear-gradient(to right, red var(--slider-percentage), transparent var(--slider-percentage)); | |
611 | +} | |
612 | + | |
613 | +.component-title-zone { | |
614 | + display: table; | |
615 | +} | |
616 | + | |
617 | +.component-maintitle { | |
618 | + font-size: 1.8rem; | |
619 | + font-weight: bold; | |
620 | + position: relative; | |
621 | + padding-left: 10px; | |
622 | + margin-right: 10px; | |
623 | + | |
624 | +} | |
625 | + | |
626 | +.component-maintitle::before { | |
627 | + content: ""; | |
628 | + position: absolute; | |
629 | + width: 3px; | |
630 | + height: 100%; | |
631 | + background-color: var(--color-blue); | |
632 | + left: 0px; | |
633 | +} | |
634 | + | |
635 | +.component-subtitle { | |
636 | + font-size: 1.4rem; | |
637 | + color: #aaa; | |
638 | + display: table-cell; | |
639 | + vertical-align: middle; | |
640 | +}(파일 끝에 줄바꿈 문자 없음) |
+++ resources/css/reset.css
... | ... | @@ -0,0 +1,205 @@ |
1 | +@charset "utf-8"; | |
2 | +@font-face { | |
3 | + font-family: 'Pretendard'; | |
4 | + font-weight: 900; | |
5 | + font-display: swap; | |
6 | + src: local('Pretendard Black'), url(../font/Pretendard-Black.woff2) format('woff2'), url(../font/Pretendard-Black.woff) format('woff'); | |
7 | +} | |
8 | + | |
9 | +@font-face { | |
10 | + font-family: 'Pretendard'; | |
11 | + font-weight: 800; | |
12 | + font-display: swap; | |
13 | + src: local('Pretendard ExtraBold'), url(../font/Pretendard-ExtraBold.woff2) format('woff2'), url(../font/Pretendard-ExtraBold.woff) format('woff'); | |
14 | +} | |
15 | + | |
16 | +@font-face { | |
17 | + font-family: 'Pretendard'; | |
18 | + font-weight: 700; | |
19 | + font-display: swap; | |
20 | + src: local('Pretendard Bold'), url(../font/Pretendard-Bold.woff2) format('woff2'), url(../font/Pretendard-Bold.woff) format('woff'); | |
21 | +} | |
22 | + | |
23 | +@font-face { | |
24 | + font-family: 'Pretendard'; | |
25 | + font-weight: 600; | |
26 | + font-display: swap; | |
27 | + src: local('Pretendard SemiBold'), url(../font/Pretendard-SemiBold.woff2) format('woff2'), url(../font/Pretendard-SemiBold.woff) format('woff'); | |
28 | +} | |
29 | + | |
30 | +@font-face { | |
31 | + font-family: 'Pretendard'; | |
32 | + font-weight: 500; | |
33 | + font-display: swap; | |
34 | + src: local('Pretendard Medium'), url(../font/Pretendard-Medium.woff2) format('woff2'), url(../font/Pretendard-Medium.woff) format('woff'); | |
35 | +} | |
36 | + | |
37 | +@font-face { | |
38 | + font-family: 'Pretendard'; | |
39 | + font-weight: 400; | |
40 | + font-display: swap; | |
41 | + src: local('Pretendard Regular'), url(../font/Pretendard-Regular.woff2) format('woff2'), url(../font/Pretendard-Regular.woff) format('woff'); | |
42 | +} | |
43 | + | |
44 | +@font-face { | |
45 | + font-family: 'Pretendard'; | |
46 | + font-weight: 300; | |
47 | + font-display: swap; | |
48 | + src: local('Pretendard Light'), url(../font/Pretendard-Light.woff2) format('woff2'), url(../font/Pretendard-Light.woff) format('woff'); | |
49 | +} | |
50 | + | |
51 | +@font-face { | |
52 | + font-family: 'Pretendard'; | |
53 | + font-weight: 200; | |
54 | + font-display: swap; | |
55 | + src: local('Pretendard ExtraLight'), url(../font/Pretendard-ExtraLight.woff2) format('woff2'), url(../font/Pretendard-ExtraLight.woff) format('woff'); | |
56 | +} | |
57 | + | |
58 | +@font-face { | |
59 | + font-family: 'Pretendard'; | |
60 | + font-weight: 100; | |
61 | + font-display: swap; | |
62 | + src: local('Pretendard Thin'), url(../font/Pretendard-Thin.woff2) format('woff2'), url(../font/Pretendard-Thin.woff) format('woff'); | |
63 | +} | |
64 | +@font-face { | |
65 | + font-family: 'MontserratBlack'; | |
66 | + src: url('../font/Montserrat-Black.ttf') format('truetype'); | |
67 | +} | |
68 | +@font-face { | |
69 | + font-family: 'MontserratBolde'; | |
70 | + src: url('../font/Montserrat-Bold.ttf') format('truetype'); | |
71 | +} | |
72 | + | |
73 | + | |
74 | +* { | |
75 | + padding: 0; | |
76 | + margin: 0; | |
77 | + box-sizing: border-box; | |
78 | +} | |
79 | + | |
80 | +html, | |
81 | +body, | |
82 | +#root { | |
83 | + width: 100%; | |
84 | + min-height: 100vh; | |
85 | + font-size: 10px; | |
86 | + color: var(--color-black); | |
87 | + font-family: 'Pretendard'; | |
88 | +} | |
89 | + | |
90 | +body { | |
91 | + min-width: 1200px; | |
92 | + background-color: #f7f6fb; | |
93 | + user-select: none; | |
94 | + | |
95 | +} | |
96 | + | |
97 | + | |
98 | +a { | |
99 | + color: #333; | |
100 | + text-decoration: none; | |
101 | +} | |
102 | + | |
103 | +ol, | |
104 | +ul, | |
105 | +li { | |
106 | + list-style: none; | |
107 | +} | |
108 | + | |
109 | +img, | |
110 | +svg { | |
111 | + vertical-align: middle; | |
112 | +} | |
113 | +table { | |
114 | + min-width: 100%; | |
115 | + border-collapse: collapse; | |
116 | + table-layout: fixed; | |
117 | +} | |
118 | + | |
119 | +table th, | |
120 | +table td { | |
121 | + padding: 8px; | |
122 | + font-size: 1.3rem; | |
123 | +} | |
124 | + | |
125 | +button { | |
126 | + border: none; | |
127 | + background-color: transparent; | |
128 | + font-size: 1.3rem; | |
129 | + margin-left: 5px; | |
130 | + cursor: pointer; | |
131 | +} | |
132 | + | |
133 | +label { | |
134 | + display: block; | |
135 | + font-size: 1.3rem; | |
136 | +} | |
137 | + | |
138 | +select, | |
139 | +textarea, | |
140 | +input[type="text"], | |
141 | +input[type="password"], | |
142 | +input[type="date"], | |
143 | +input[type="number"] { | |
144 | + padding: 5px 10px; | |
145 | + border: 1px solid #aaa; | |
146 | + border-radius: 5px; | |
147 | + font-size: 1.3rem; | |
148 | +} | |
149 | + | |
150 | +input:focus, | |
151 | +select:focus { | |
152 | + outline: none; | |
153 | +} | |
154 | + | |
155 | +input:disabled { | |
156 | + background: #aaa; | |
157 | + border: none; | |
158 | +} | |
159 | + | |
160 | +input[type="checkbox"], | |
161 | +input[type="radio"] { | |
162 | + vertical-align: sub; | |
163 | +} | |
164 | + | |
165 | +input[type='date'] { | |
166 | + max-width: 240px; | |
167 | + padding: 5px; | |
168 | +} | |
169 | + | |
170 | +input[type='date'].date-placeholder::before { | |
171 | + content: attr(data-placeholder); | |
172 | + width: 100%; | |
173 | + color: #ddd; | |
174 | +} | |
175 | + | |
176 | +button:first-child, | |
177 | +select:first-child, | |
178 | +input:first-child, | |
179 | +button.only, | |
180 | +select.only, | |
181 | +input.only { | |
182 | + margin-left: 0; | |
183 | +} | |
184 | + | |
185 | +textarea { | |
186 | + width: 100%; | |
187 | + height: 100%; | |
188 | +} | |
189 | + | |
190 | + | |
191 | +/* 스크롤바 디자인 */ | |
192 | +::-webkit-scrollbar { | |
193 | + width: 8px; | |
194 | + height: 8px; | |
195 | +} | |
196 | + | |
197 | +::-webkit-scrollbar-thumb { | |
198 | + background-color: #ededed; | |
199 | + border-radius: 10px; | |
200 | +} | |
201 | + | |
202 | +::-webkit-scrollbar-track { | |
203 | + background-color: #fff; | |
204 | + border-radius: 10px; | |
205 | +}(파일 끝에 줄바꿈 문자 없음) |
+++ resources/css/responsive.css
... | ... | @@ -0,0 +1,2925 @@ |
1 | +/* 테블릿 가로 (해상도 768px ~ 1023px)*/ | |
2 | +@media all and (min-width:279px) and (max-width:480px) { | |
3 | + | |
4 | + * { | |
5 | + padding: 0; | |
6 | + margin: 0; | |
7 | + box-sizing: border-box; | |
8 | + } | |
9 | + .swiper-wrapper,.swiper ,body,html{-ms-overflow-style:none; }body::-webkit-scrollbar { display:none; } | |
10 | + | |
11 | + | |
12 | + .swiper-wrapper,.swiper ,body,html{ | |
13 | + -ms-overflow-style: none; | |
14 | + /* 인터넷 익스플로러 */ | |
15 | + scrollbar-width: none; | |
16 | + /* 파이어폭스 */ | |
17 | + } | |
18 | + .swiper-slide { | |
19 | + -ms-overflow-style: none; | |
20 | + /* 인터넷 익스플로러 */ | |
21 | + scrollbar-width: none; | |
22 | + /* 파이어폭스 */ | |
23 | + } | |
24 | + | |
25 | + html, | |
26 | + body, | |
27 | + #root { | |
28 | + width: 100%; | |
29 | + /* min-height: 100vh; */ | |
30 | + font-size: 7px; | |
31 | + color: var(--color-black); | |
32 | + font-family: 'Pretendard'; | |
33 | + } | |
34 | + .main-wrap .text-area p{ | |
35 | + font-size: 4.5rem !important; | |
36 | + } | |
37 | + body { | |
38 | + min-width: 100%; | |
39 | + | |
40 | + | |
41 | + } | |
42 | + .main-text img { | |
43 | + width: 7% !important; | |
44 | + } | |
45 | + .logo { | |
46 | + width: 50% !important; | |
47 | + background-size: cover; | |
48 | + } | |
49 | + | |
50 | + .mobil-wrap { | |
51 | + width: 50%; | |
52 | + height: 50%; | |
53 | + } | |
54 | + | |
55 | + .mobil-wrap button { | |
56 | + width: 100%; | |
57 | + height: 50%; | |
58 | + text-align: right; | |
59 | + margin-left: 0px !important; | |
60 | + } | |
61 | + | |
62 | + summary::-webkit-details-marker { | |
63 | + display: none; | |
64 | + } | |
65 | + | |
66 | + .header-area { | |
67 | + width: 100%; | |
68 | + } | |
69 | + | |
70 | + .mobile-menu-button, | |
71 | + .mobil-wrap { | |
72 | + display: block; | |
73 | + } | |
74 | + | |
75 | + .web-menu { | |
76 | + display: none; | |
77 | + } | |
78 | + | |
79 | + .mobil-btn { | |
80 | + display: block; | |
81 | + } | |
82 | + | |
83 | + .mobil-menu { | |
84 | + width: 100%; | |
85 | + height: 100%; | |
86 | + position: absolute; | |
87 | + top: 54px; | |
88 | + left: 0; | |
89 | + z-index: 100000; | |
90 | + } | |
91 | + | |
92 | + .mobil-menu ul { | |
93 | + list-style: none; | |
94 | + padding: 2rem 0; | |
95 | + margin: 0; | |
96 | + background-color: #fff; | |
97 | + } | |
98 | + | |
99 | + nav ul li a { | |
100 | + font-size: 2.5rem !important; | |
101 | + } | |
102 | + | |
103 | + .clicked { | |
104 | + margin: 0 auto; | |
105 | + width: 100px; | |
106 | + } | |
107 | + | |
108 | + .mobil-menu ul li ul li a { | |
109 | + | |
110 | + font-weight: 300; | |
111 | + color: #333; | |
112 | + font-size: 2.4rem !important; | |
113 | + } | |
114 | + | |
115 | + nav>ul { | |
116 | + background-color: #fff; | |
117 | + border-bottom: 1px solid #333; | |
118 | + } | |
119 | + | |
120 | + nav ul li { | |
121 | + color: #333 !important; | |
122 | + width: 100% !important; | |
123 | + } | |
124 | + | |
125 | + | |
126 | + | |
127 | + .mobile-menu-button, | |
128 | + .mobile-menu-button-close { | |
129 | + font-size: 4.5rem; | |
130 | + color: #333; | |
131 | + height: 29px; | |
132 | + width: 29px; | |
133 | + } | |
134 | + | |
135 | + .swiper { | |
136 | + width: 50%; | |
137 | + height: 100%; | |
138 | + padding: 2rem; | |
139 | + } | |
140 | + | |
141 | + .swiper-slide { | |
142 | + width: 100%; | |
143 | + | |
144 | + } | |
145 | + | |
146 | + .slide-wrap { | |
147 | + width: 100%; | |
148 | + } | |
149 | + | |
150 | + #header.active { | |
151 | + border-bottom: 1px solid #ced4da; | |
152 | + background-color: white; | |
153 | + } | |
154 | + | |
155 | + #header.active .header nav li a { | |
156 | + color: #333; | |
157 | + | |
158 | + } | |
159 | + | |
160 | + #header.active .header nav ul li ul.dropdown { | |
161 | + background-color: #fff; | |
162 | + } | |
163 | + | |
164 | + #header.active .header .logo { | |
165 | + background: url(../img/component/logo-color.png) no-repeat; | |
166 | + width: 200px; | |
167 | + background-size: contain; | |
168 | + height: 25px; | |
169 | + | |
170 | + } | |
171 | + | |
172 | + #header.active .header .mobile-menu-button, | |
173 | + .mobile-menu-button-close { | |
174 | + color: #333; | |
175 | + } | |
176 | + | |
177 | + #header.active .header .mobile-menu-button-close { | |
178 | + color: #333; | |
179 | + display: block; | |
180 | + } | |
181 | + | |
182 | + #header.active .header .mobil-menu ul { | |
183 | + background-color: #fff; | |
184 | + } | |
185 | + | |
186 | + #header { | |
187 | + position: fixed !important; | |
188 | + top: 0; | |
189 | + } | |
190 | + | |
191 | + .solution-text, | |
192 | + .portfolio-text, | |
193 | + .map-text, | |
194 | + .about-title p:nth-child(1) { | |
195 | + font-size: 4.5rem !important; | |
196 | + padding-bottom: 1rem; | |
197 | + } | |
198 | + | |
199 | + .text-main { | |
200 | + font-size: 4.2rem !important; | |
201 | + margin-bottom: 2rem; | |
202 | + } | |
203 | + | |
204 | + .solution-title p, | |
205 | + .traffic-title p, | |
206 | + .ai-title p, | |
207 | + .meta-title p, | |
208 | + .smart-title p { | |
209 | + font-size: 3.8rem; | |
210 | + margin: 1rem; | |
211 | + word-break: keep-all; | |
212 | + } | |
213 | + | |
214 | + .sub-text, | |
215 | + .solution-sub-text { | |
216 | + font-size: 2.3rem !important; | |
217 | + margin-bottom: 0rem; | |
218 | + } | |
219 | + | |
220 | + .marketing-area p span { | |
221 | + font-size: 2rem; | |
222 | + } | |
223 | + | |
224 | + .marketing-area p { | |
225 | + font-size: 2rem; | |
226 | + } | |
227 | + | |
228 | + .marketing-wrap-title h1 { | |
229 | + font-size: 4rem; | |
230 | + } | |
231 | + | |
232 | + .accordion.active .accordion-num, | |
233 | + .accordion.active .accordion-num span { | |
234 | + font-size: 4rem; | |
235 | + margin-bottom: 0rem !important; | |
236 | + text-align: center; | |
237 | + margin-bottom: 10px; | |
238 | + } | |
239 | + | |
240 | + .history-box { | |
241 | + -ms-overflow-style: none; | |
242 | + /* 인터넷 익스플로러 */ | |
243 | + scrollbar-width: none; | |
244 | + height: 80% !important; | |
245 | + margin: 20px 10px; | |
246 | + width: 100% !important; | |
247 | + } | |
248 | + | |
249 | + .history-area { | |
250 | + gap: 0px !important; | |
251 | + flex-wrap: wrap !important; | |
252 | + | |
253 | + } | |
254 | + | |
255 | + .slideTextDtail p { | |
256 | + display: none; | |
257 | + } | |
258 | + | |
259 | + .solution-box { | |
260 | + width: 100%; | |
261 | + height: calc(100% - 182px) !important; | |
262 | + flex-direction: column; | |
263 | + flex-wrap: wrap !important; | |
264 | + align-items: center; | |
265 | + justify-content: space-between; | |
266 | + } | |
267 | + | |
268 | + .slide-solution .text-area { | |
269 | + padding: 12rem 2rem 6rem 2rem; | |
270 | + } | |
271 | + | |
272 | + | |
273 | + | |
274 | + #map1, | |
275 | + #map2 { | |
276 | + width: 100% !important; | |
277 | + } | |
278 | + | |
279 | + .box:hover { | |
280 | + transform: scale(1); | |
281 | + } | |
282 | + | |
283 | + .box-wrap-title { | |
284 | + font-size: 1.5rem !important; | |
285 | + font-weight: 800; | |
286 | + margin-bottom: 0px; | |
287 | + } | |
288 | + | |
289 | + .box p:nth-child(1) { | |
290 | + font-size: 2.5rem; | |
291 | + font-weight: 600; | |
292 | + } | |
293 | + | |
294 | + .box p { | |
295 | + font-weight: 300; | |
296 | + font-size: 2rem; | |
297 | + } | |
298 | + | |
299 | + | |
300 | + #solution { | |
301 | + | |
302 | + padding: 0rem !important; | |
303 | + } | |
304 | + | |
305 | + #solution .swiper-wrapper { | |
306 | + background: linear-gradient(#f8f9fa, #fff, #fff) !important; | |
307 | + | |
308 | + } | |
309 | + | |
310 | + #solution .swiper-slide { | |
311 | + height: 100% !important; | |
312 | + background: #fff !important; | |
313 | + } | |
314 | + | |
315 | + #solution .taken-area { | |
316 | + width: 100% !important; | |
317 | + } | |
318 | + | |
319 | + #solution .text-area { | |
320 | + width: 100% !important; | |
321 | + height: 100%; | |
322 | + padding: 12rem 2rem 6rem 2rem !important; | |
323 | + } | |
324 | + | |
325 | + .text-area { | |
326 | + width: 100% !important; | |
327 | + height: 100% !important; | |
328 | + padding: 6rem 2rem; | |
329 | + } | |
330 | + | |
331 | + .year span { | |
332 | + display: none; | |
333 | + } | |
334 | + | |
335 | + .innerSwiper-title { | |
336 | + font-size: 2.7rem; | |
337 | + } | |
338 | + | |
339 | + .innerSwiper-text { | |
340 | + font-size: 2.3rem; | |
341 | + } | |
342 | + | |
343 | + .innerSwiper .swiper-slide { | |
344 | + width: 100% !important; | |
345 | + padding: 10px; | |
346 | + } | |
347 | + | |
348 | + .sub-text-area { | |
349 | + margin-bottom: 1rem !important; | |
350 | + } | |
351 | + | |
352 | + .marketing-wrapper { | |
353 | + width: 100%; | |
354 | + padding: 1rem 2rem 2rem 2rem; | |
355 | + margin: 0 auto; | |
356 | + } | |
357 | + | |
358 | + .portfolio-text { | |
359 | + margin-bottom: 1rem; | |
360 | + } | |
361 | + | |
362 | + .marketing-wrap-title h1::after { | |
363 | + width: 20px; | |
364 | + height: 20px; | |
365 | + background-size: 20px; | |
366 | + transform: translateX(-50%); | |
367 | + } | |
368 | + | |
369 | + .marketing-area { | |
370 | + width: 100%; | |
371 | + grid-template-columns: 1fr; | |
372 | + } | |
373 | + | |
374 | + .marketing-title { | |
375 | + font-size: 2.8rem !important; | |
376 | + } | |
377 | + | |
378 | + .gradient-bottom { | |
379 | + padding-top: 60px !important; | |
380 | + } | |
381 | + | |
382 | + .slide-solution { | |
383 | + height: 100%; | |
384 | + } | |
385 | + | |
386 | + .root_daum_roughmap_landing { | |
387 | + width: 100% !important; | |
388 | + height: 50% !important; | |
389 | + } | |
390 | + | |
391 | + .root_daum_roughmap .wrap_map { | |
392 | + height: 200px !important; | |
393 | + } | |
394 | + | |
395 | + .secen-map { | |
396 | + width: 100% !important; | |
397 | + height: 50% !important; | |
398 | + } | |
399 | + | |
400 | + .secen-map div { | |
401 | + height: 100% !important; | |
402 | + } | |
403 | + | |
404 | + .secen-map .map { | |
405 | + width: 100% !important; | |
406 | + height: 100% !important; | |
407 | + object-fit: cover; | |
408 | + | |
409 | + } | |
410 | + | |
411 | + | |
412 | + | |
413 | + .address-tile { | |
414 | + width: 100%; | |
415 | + text-align: center; | |
416 | + font-size: 2.4rem; | |
417 | + padding-left: 0px; | |
418 | + } | |
419 | + | |
420 | + .address-subtitle { | |
421 | + font-size: 1.8rem !important; | |
422 | + } | |
423 | + | |
424 | + .address-tile::after { | |
425 | + display: none; | |
426 | + } | |
427 | + | |
428 | + .map-btn { | |
429 | + justify-content: center; | |
430 | + } | |
431 | + | |
432 | + .map-btn button { | |
433 | + /* width: 40%; */ | |
434 | + font-size: 2.2rem; | |
435 | + font-weight: 500; | |
436 | + } | |
437 | + | |
438 | + .address-box { | |
439 | + width: 100%; | |
440 | + } | |
441 | + | |
442 | + footer { | |
443 | + width: 100%; | |
444 | + padding: 20px !important; | |
445 | + } | |
446 | + | |
447 | + .footer-wrap { | |
448 | + width: 100%; | |
449 | + } | |
450 | + | |
451 | + .footer-text div { | |
452 | + flex-wrap: wrap; | |
453 | + } | |
454 | + | |
455 | + .footer-text div p, | |
456 | + .footer-text p { | |
457 | + width: 100% !important; | |
458 | + font-size: 2rem !important; | |
459 | + padding-left: 0px !important; | |
460 | + } | |
461 | + | |
462 | + .copyright { | |
463 | + font-size: 2rem !important; | |
464 | + } | |
465 | + | |
466 | + .about-wrap { | |
467 | + width: 100%; | |
468 | + padding: 9rem 2rem; | |
469 | + } | |
470 | + | |
471 | + footer img { | |
472 | + width: 50% !important; | |
473 | + height: 50%; | |
474 | + } | |
475 | + | |
476 | + .container { | |
477 | + width: 100%; | |
478 | + height: 70% !important; | |
479 | + } | |
480 | + | |
481 | + .about-title-sub { | |
482 | + font-size: 2.5rem; | |
483 | + margin-bottom: 0px; | |
484 | + } | |
485 | + | |
486 | + .about-area { | |
487 | + flex-wrap: nowrap; | |
488 | + width: 100%; | |
489 | + height: 10%; | |
490 | + margin-bottom: 10px !important; | |
491 | + flex-direction: column; | |
492 | + gap: 10px !important; | |
493 | + } | |
494 | + | |
495 | + .about-area p { | |
496 | + font-size: 2.2rem; | |
497 | + } | |
498 | + | |
499 | + .month { | |
500 | + font-size: 2.5rem; | |
501 | + } | |
502 | + | |
503 | + .month-text p { | |
504 | + font-size: 2.2rem; | |
505 | + margin-bottom: 0rem; | |
506 | + } | |
507 | + | |
508 | + .about-radius, | |
509 | + .about-radius-bottom, | |
510 | + .about-radius-right, | |
511 | + .about-radius-left, | |
512 | + .about-radius-bottom-left, | |
513 | + .about-radius-bottom-right { | |
514 | + width: 100%; | |
515 | + height: 100%; | |
516 | + padding: 0.5rem; | |
517 | + border-radius: 5px !important; | |
518 | + } | |
519 | + | |
520 | + .about-radius-left::after, | |
521 | + .about-radius-bottom-right::after, | |
522 | + .about-radius-bottom-left::after, | |
523 | + .about-radius::after, | |
524 | + .about-radius-right::after { | |
525 | + display: none; | |
526 | + } | |
527 | + | |
528 | + | |
529 | + .about-text { | |
530 | + font-size: 1.5rem; | |
531 | + } | |
532 | + | |
533 | + .silde-box { | |
534 | + height: 75%; | |
535 | + display: flex; | |
536 | + flex-direction: column; | |
537 | + } | |
538 | + | |
539 | + .silde-box .accordion { | |
540 | + height: 10px; | |
541 | + padding: 1.5rem; | |
542 | + } | |
543 | + | |
544 | + .silde-box .slideImg { | |
545 | + display: none; | |
546 | + } | |
547 | + | |
548 | + .accordion2, | |
549 | + .accordion1, | |
550 | + .accordion3 { | |
551 | + display: flex; | |
552 | + flex-direction: column; | |
553 | + align-content: center; | |
554 | + justify-content: center; | |
555 | + | |
556 | + background-position: center; | |
557 | + border-top-left-radius: 0px; | |
558 | + border-bottom-left-radius: 0px; | |
559 | + border-top-right-radius: 0px; | |
560 | + border-bottom-right-radius: 0px; | |
561 | + } | |
562 | + | |
563 | + .accordion1{ | |
564 | + border-top-left-radius: 20px; | |
565 | + border-top-right-radius: 20px; | |
566 | + | |
567 | + } | |
568 | + .accordion3{ | |
569 | + | |
570 | + border-bottom-left-radius: 20px; | |
571 | + border-bottom-right-radius: 20px; | |
572 | + } | |
573 | + | |
574 | + .accordion2::after, | |
575 | + .accordion1::after, | |
576 | + .accordion3::after { | |
577 | + font-size: 3.4rem; | |
578 | + top: 8px; | |
579 | + left: 15px; | |
580 | + } | |
581 | + | |
582 | + .accordion2::before, | |
583 | + .accordion1::before, | |
584 | + .accordion3::before { | |
585 | + font-size: 3.4rem; | |
586 | + top: 8px; | |
587 | + left: 60px; | |
588 | + } | |
589 | + | |
590 | + .about .about-title p { | |
591 | + margin-bottom: 0rem !important; | |
592 | + } | |
593 | + | |
594 | + | |
595 | + | |
596 | + .slideText p:last-child, | |
597 | + .slideTextDtail p { | |
598 | + font-size: 3rem; | |
599 | + text-align: center; | |
600 | + } | |
601 | + | |
602 | + .slideText p:first-child { | |
603 | + font-size: 4rem; | |
604 | + } | |
605 | + | |
606 | + .month-text p::after { | |
607 | + left: -6%; | |
608 | + } | |
609 | + | |
610 | + .month-text p { | |
611 | + margin-left: 15px; | |
612 | + margin-bottom: 10px; | |
613 | + } | |
614 | + | |
615 | + .slideTextDtail p:nth-child(1) { | |
616 | + display: block !important; | |
617 | + font-size: 2.3rem; | |
618 | + border-bottom: 0px !important; | |
619 | + margin-bottom: 0rem !important; | |
620 | + } | |
621 | + | |
622 | + .slideTextDtail-box p { | |
623 | + padding-left: 0px; | |
624 | + } | |
625 | + | |
626 | + .section .flex { | |
627 | + width: 100%; | |
628 | + } | |
629 | + | |
630 | + .month-text { | |
631 | + width: 100%; | |
632 | + } | |
633 | + | |
634 | + .slideTextDtail { | |
635 | + padding: 0 1rem; | |
636 | + } | |
637 | + | |
638 | + .slideTextDtail div div { | |
639 | + display: none; | |
640 | + } | |
641 | + | |
642 | + .about-title { | |
643 | + margin-top: 60px; | |
644 | + margin-bottom: 1rem !important; | |
645 | + } | |
646 | + | |
647 | + .solution-web-box img { | |
648 | + width: 100%; | |
649 | + object-fit: contain !important; | |
650 | + height: 200px !important; | |
651 | + } | |
652 | + | |
653 | + | |
654 | + .month-text img { | |
655 | + width: 100px !important; | |
656 | + height: 150px; | |
657 | + margin: 1rem; | |
658 | + } | |
659 | + | |
660 | + .text-section { | |
661 | + width: 100%; | |
662 | + } | |
663 | + | |
664 | + .about-vision-box img { | |
665 | + width: 100%; | |
666 | + height: 150px; | |
667 | + display: block; | |
668 | + object-fit: contain; | |
669 | + } | |
670 | + | |
671 | + .timeline { | |
672 | + width: 100%; | |
673 | + } | |
674 | + | |
675 | + .years { | |
676 | + display: flex; | |
677 | + width: 100% !important; | |
678 | + border-bottom: 1px solid #333; | |
679 | + } | |
680 | + | |
681 | + .active-year { | |
682 | + font-size: 3rem; | |
683 | + } | |
684 | + | |
685 | + .contents { | |
686 | + text-align: center; | |
687 | + | |
688 | + } | |
689 | + | |
690 | + .month { | |
691 | + width: 100%; | |
692 | + text-align: left !important; | |
693 | + margin-bottom: 5px; | |
694 | + } | |
695 | + | |
696 | + .month-text div { | |
697 | + width: 100%; | |
698 | + } | |
699 | + | |
700 | + .taken-wrap-box { | |
701 | + width: 100% !important; | |
702 | + gap: 10px !important; | |
703 | + flex-direction: column; | |
704 | + } | |
705 | + | |
706 | + .taken-area { | |
707 | + width: 100%; | |
708 | + height: 0% !important; | |
709 | + align-items: start; | |
710 | + gap: 10px !important; | |
711 | + } | |
712 | + | |
713 | + .solution-area { | |
714 | + gap: 10px !important; | |
715 | + } | |
716 | + | |
717 | + .about .content .flex { | |
718 | + margin-bottom: 0rem !important; | |
719 | + } | |
720 | + | |
721 | + .taken-area img, | |
722 | + .traffic-area img, | |
723 | + .ai-area img { | |
724 | + width: 100%; | |
725 | + object-fit: contain !important; | |
726 | + } | |
727 | + | |
728 | + | |
729 | + .taken-box { | |
730 | + width: 100%; | |
731 | + /* margin-bottom: 2rem; */ | |
732 | + flex-direction: column; | |
733 | + gap: 5px; | |
734 | + } | |
735 | + | |
736 | + | |
737 | + | |
738 | + .taken-box p { | |
739 | + margin-top: 0px; | |
740 | + font-size: 2.2rem; | |
741 | + } | |
742 | + | |
743 | + | |
744 | + | |
745 | + .text-box-title { | |
746 | + font-weight: 600; | |
747 | + margin-top: 1rem; | |
748 | + text-align: center; | |
749 | + font-size: 2.9rem; | |
750 | + margin-left: 0rem; | |
751 | + } | |
752 | + | |
753 | + .solution-after { | |
754 | + justify-content: start; | |
755 | + } | |
756 | + | |
757 | + | |
758 | + .solution-title::after, | |
759 | + .traffic-title::after, | |
760 | + .ai-title::after, | |
761 | + .meta-title::after, | |
762 | + .smart-title::after { | |
763 | + display: none; | |
764 | + } | |
765 | + | |
766 | + #Data, | |
767 | + #smart, | |
768 | + #visuali, | |
769 | + #dataanalysis { | |
770 | + height: 100% !important; | |
771 | + overflow-y: scroll !important; | |
772 | + padding-top: 120px; | |
773 | + } | |
774 | + | |
775 | + #customized, | |
776 | + #etc { | |
777 | + height: 100% !important; | |
778 | + overflow-y: scroll !important; | |
779 | + padding-top: 120px; | |
780 | + } | |
781 | + | |
782 | + | |
783 | + | |
784 | + .meta-wrap::before { | |
785 | + width: 100%; | |
786 | + display: none; | |
787 | + } | |
788 | + | |
789 | + #visuali .etc-wrap-text, | |
790 | + #dataanalysis .etc-wrap-text, | |
791 | + #customized .box-wrap { | |
792 | + width: 100%; | |
793 | + } | |
794 | + | |
795 | + #Data img, | |
796 | + #visuali img, | |
797 | + #dataanalysis img, | |
798 | + #customized img { | |
799 | + width: 100%; | |
800 | + } | |
801 | + | |
802 | + #smart img { | |
803 | + width: 100%; | |
804 | + } | |
805 | + | |
806 | + #customized .box-wrap p { | |
807 | + font-size: 2.6rem; | |
808 | + margin: 2rem 0; | |
809 | + } | |
810 | + | |
811 | + #smart .box-wrap-title { | |
812 | + font-size: 2.6rem !important; | |
813 | + font-weight: 600 !important; | |
814 | + word-break: keep-all; | |
815 | + | |
816 | + } | |
817 | + | |
818 | + #etc .etc-box-title { | |
819 | + font-weight: 600 !important; | |
820 | + width: 100%; | |
821 | + } | |
822 | + | |
823 | + #smart .etc-wrap-text div p, | |
824 | + #etc .etc-box p { | |
825 | + font-size: 2.2rem; | |
826 | + padding: 0px; | |
827 | + text-align: center; | |
828 | + font-weight: 400; | |
829 | + word-break: keep-all; | |
830 | + } | |
831 | + | |
832 | + #map .text-area { | |
833 | + padding: 1rem 2rem 6rem 2rem; | |
834 | + } | |
835 | + | |
836 | + .solution-area { | |
837 | + width: 100%; | |
838 | + grid-template-columns: 1fr; | |
839 | + } | |
840 | + | |
841 | + .solution-text-box { | |
842 | + padding: 10px 15px 20px 15px !important; | |
843 | + } | |
844 | + | |
845 | + .solution-text-box p { | |
846 | + padding-left: 12px; | |
847 | + } | |
848 | + | |
849 | + .solution-text-box div { | |
850 | + gap: 0px !important; | |
851 | + flex-direction: column; | |
852 | + margin-left: 0px !important; | |
853 | + } | |
854 | + | |
855 | + .solution-text-box div div p { | |
856 | + width: 100%; | |
857 | + margin-left: 3px; | |
858 | + padding-left: 1.2rem; | |
859 | + } | |
860 | + | |
861 | + .etc-wrap-text, | |
862 | + .box-wrap { | |
863 | + width: 100%; | |
864 | + flex-direction: column; | |
865 | + } | |
866 | + | |
867 | + .box-wrap { | |
868 | + gap: 5px; | |
869 | + } | |
870 | + | |
871 | + .etc-wrap-text div, | |
872 | + .box-wrap div { | |
873 | + width: 100%; | |
874 | + border-radius: 5px; | |
875 | + margin-bottom: 5px; | |
876 | + flex-wrap: wrap !important; | |
877 | + } | |
878 | + | |
879 | + #Data .box-wrap p { | |
880 | + font-size: 2.6rem; | |
881 | + font-weight: 600 !important; | |
882 | + margin: 2rem 0; | |
883 | + } | |
884 | + | |
885 | + | |
886 | + .traffic-video { | |
887 | + width: 90%; | |
888 | + padding: 1rem 2rem 2rem 2rem; | |
889 | + } | |
890 | + | |
891 | + .traffic-video p { | |
892 | + font-size: 3.5rem; | |
893 | + word-break: keep-all; | |
894 | + } | |
895 | + | |
896 | + .traffic-button button { | |
897 | + padding: 7px 46px; | |
898 | + font-size: 2.2rem; | |
899 | + } | |
900 | + | |
901 | + .taken-area p { | |
902 | + font-size: 2.4rem; | |
903 | + } | |
904 | + | |
905 | + .text-after p::after { | |
906 | + top: 0; | |
907 | + } | |
908 | + | |
909 | + .traffic-button { | |
910 | + justify-content: center; | |
911 | + } | |
912 | + | |
913 | + .etc-wrap-text p, | |
914 | + .box-wrap p { | |
915 | + font-size: 2.6rem; | |
916 | + margin-bottom: 2rem; | |
917 | + font-weight: 500; | |
918 | + } | |
919 | + | |
920 | + .analysis-text p { | |
921 | + height: 100%; | |
922 | + padding: 0px; | |
923 | + margin-top: 2rem; | |
924 | + } | |
925 | + | |
926 | + .solution .swiper-slide img { | |
927 | + width: 100%; | |
928 | + height: 100px !important; | |
929 | + | |
930 | + } | |
931 | + | |
932 | + .text-box-title::after { | |
933 | + display: none; | |
934 | + } | |
935 | + | |
936 | + | |
937 | + .traffic-video { | |
938 | + top: 25%; | |
939 | + } | |
940 | + | |
941 | + .viedeo-text-box { | |
942 | + width: 100%; | |
943 | + margin: 1rem 0; | |
944 | + flex-wrap: nowrap; | |
945 | + | |
946 | + /* border: 1px solid red; */ | |
947 | + } | |
948 | + | |
949 | + .viedeo-text-box p:nth-child(1) { | |
950 | + text-align: left; | |
951 | + } | |
952 | + | |
953 | + #etc .etc-box-title { | |
954 | + margin: 2rem 0; | |
955 | + } | |
956 | + | |
957 | + .visual-grid { | |
958 | + display: grid; | |
959 | + grid-template-columns: 1fr 1fr; | |
960 | + } | |
961 | + | |
962 | + | |
963 | + .customized-wrap-title { | |
964 | + margin-top: 50px; | |
965 | + margin-bottom: 1rem; | |
966 | + } | |
967 | + | |
968 | + .etc-wrap-title h1 { | |
969 | + padding-top: 0rem; | |
970 | + } | |
971 | + | |
972 | + | |
973 | + .etc-box p { | |
974 | + text-align: left; | |
975 | + } | |
976 | + | |
977 | + .box-grid { | |
978 | + grid-template-columns: 1fr 1fr 1fr !important; | |
979 | + } | |
980 | + | |
981 | + .etc-box { | |
982 | + margin-left: 0px !important; | |
983 | + margin-right: 0px !important; | |
984 | + } | |
985 | + | |
986 | + .box-wrap img { | |
987 | + width: 100%; | |
988 | + padding-bottom: 0rem !important; | |
989 | + object-fit: contain; | |
990 | + } | |
991 | + | |
992 | + .solution-title, | |
993 | + .traffic-title, | |
994 | + .ai-title, | |
995 | + .meta-title, | |
996 | + .smart-title { | |
997 | + margin-bottom: 10px !important; | |
998 | + } | |
999 | + | |
1000 | + .year { | |
1001 | + font-size: 3rem; | |
1002 | + } | |
1003 | + | |
1004 | + .box-wrap div p { | |
1005 | + text-align: center; | |
1006 | + margin: 0 auto; | |
1007 | + word-break: keep-all; | |
1008 | + | |
1009 | + } | |
1010 | + | |
1011 | + .etc-text-deco p::after { | |
1012 | + display: none; | |
1013 | + } | |
1014 | + | |
1015 | + .solution-deco p { | |
1016 | + margin-left: 0.4rem; | |
1017 | + word-break: keep-all; | |
1018 | + } | |
1019 | + | |
1020 | + .traffic-img-box { | |
1021 | + width: 100% !important; | |
1022 | + } | |
1023 | + | |
1024 | + .traffic-img-box img { | |
1025 | + width: 100% !important; | |
1026 | + object-fit: cover !important; | |
1027 | + } | |
1028 | + | |
1029 | + .etc-box-title { | |
1030 | + font-weight: 700; | |
1031 | + text-align: center !important; | |
1032 | + font-size: 3rem !important; | |
1033 | + } | |
1034 | + | |
1035 | + .solution-deco p::after { | |
1036 | + left: 0%; | |
1037 | + } | |
1038 | + | |
1039 | + .box-wrap div div { | |
1040 | + height: 37% !important; | |
1041 | + } | |
1042 | + | |
1043 | + .etc-wrap-title h1, | |
1044 | + .customized-wrap-title h1 { | |
1045 | + font-size: 3.3rem !important; | |
1046 | + word-break: keep-all; | |
1047 | + } | |
1048 | + | |
1049 | + .etc-wrap-title p, | |
1050 | + .customized-wrap-title p { | |
1051 | + font-size: 2.5rem !important; | |
1052 | + margin-bottom: 2rem; | |
1053 | + } | |
1054 | + | |
1055 | + .etc-wrap-title { | |
1056 | + /* height: 100%; */ | |
1057 | + padding-bottom: 10px !important; | |
1058 | + margin-bottom: 0px !important; | |
1059 | + padding-top: 0rem !important; | |
1060 | + } | |
1061 | + | |
1062 | + | |
1063 | + .customized-box { | |
1064 | + width: 100%; | |
1065 | + display: grid; | |
1066 | + gap: 10px; | |
1067 | + grid-template-columns: 1fr 1fr; | |
1068 | + } | |
1069 | + | |
1070 | + .customized-box div { | |
1071 | + width: 100%; | |
1072 | + | |
1073 | + margin-bottom: 10px; | |
1074 | + } | |
1075 | + | |
1076 | + .customized-box p { | |
1077 | + font-size: 2.1rem !important; | |
1078 | + } | |
1079 | + | |
1080 | + .customized-box div img { | |
1081 | + width: 79%; | |
1082 | + } | |
1083 | + | |
1084 | + .Portfolio { | |
1085 | + width: 100%; | |
1086 | + height: 100%; | |
1087 | + } | |
1088 | + | |
1089 | + .innerSwiper { | |
1090 | + height: 100%; | |
1091 | + } | |
1092 | + | |
1093 | + .innerSwiper .swiper-slide { | |
1094 | + height: 40%; | |
1095 | + } | |
1096 | + | |
1097 | + .etc-box-title { | |
1098 | + margin-bottom: 0px; | |
1099 | + } | |
1100 | + | |
1101 | + .etc-box-title p { | |
1102 | + padding-left: 0px; | |
1103 | + } | |
1104 | + | |
1105 | + .etc-box p { | |
1106 | + padding-left: 0px; | |
1107 | + } | |
1108 | + | |
1109 | + .solution-box { | |
1110 | + width: 100%; | |
1111 | + height: calc(100% - 182px) !important; | |
1112 | + display: grid; | |
1113 | + grid-template-columns: 1fr; | |
1114 | + justify-content: center; | |
1115 | + text-shadow: 2px 2px 5px #33333354; | |
1116 | + gap: 10px; | |
1117 | + } | |
1118 | + | |
1119 | + .box1, | |
1120 | + .box2, | |
1121 | + .box3, | |
1122 | + .box4, | |
1123 | + .box5, | |
1124 | + .box6 { | |
1125 | + width: 100%; | |
1126 | + font-size: 1.5rem; | |
1127 | + background-size: cover; | |
1128 | + border-radius: 10px; | |
1129 | + background-position: center; | |
1130 | + padding: 10px !important; | |
1131 | + } | |
1132 | + | |
1133 | + .box2, | |
1134 | + .box4 { | |
1135 | + transform: translateY(0px); | |
1136 | + } | |
1137 | + | |
1138 | +} | |
1139 | + | |
1140 | +@media all and (min-width:480px) and (max-width:768px) { | |
1141 | + .swiper-wrapper,.swiper ,body,html{-ms-overflow-style:none; }body::-webkit-scrollbar { display:none; } | |
1142 | + | |
1143 | + | |
1144 | + .swiper-wrapper,.swiper ,body,html{ | |
1145 | + -ms-overflow-style: none; | |
1146 | + /* 인터넷 익스플로러 */ | |
1147 | + scrollbar-width: none; | |
1148 | + /* 파이어폭스 */ | |
1149 | + } | |
1150 | + | |
1151 | + body { | |
1152 | + min-width: 100%; | |
1153 | + | |
1154 | + | |
1155 | + } | |
1156 | + | |
1157 | + .logo { | |
1158 | + width: 50% !important; | |
1159 | + background-size: cover; | |
1160 | + } | |
1161 | + | |
1162 | + .mobil-wrap { | |
1163 | + width: 50%; | |
1164 | + } | |
1165 | + | |
1166 | + .mobil-wrap button { | |
1167 | + width: 100%; | |
1168 | + text-align: right; | |
1169 | + } | |
1170 | + .main-wrap .text-area p{ | |
1171 | + font-size: 5rem !important; | |
1172 | + } | |
1173 | + .traffic-img-box { | |
1174 | + width: 100% !important; | |
1175 | + } | |
1176 | + | |
1177 | + .traffic-img-box img { | |
1178 | + width: 100% !important; | |
1179 | + object-fit: cover !important; | |
1180 | + } | |
1181 | + | |
1182 | + summary::-webkit-details-marker { | |
1183 | + display: none; | |
1184 | + } | |
1185 | + | |
1186 | + .header-area { | |
1187 | + width: 100%; | |
1188 | + height: 100%; | |
1189 | + } | |
1190 | + | |
1191 | + .mobile-menu-button, | |
1192 | + .mobil-wrap { | |
1193 | + display: block; | |
1194 | + } | |
1195 | + | |
1196 | + .web-menu { | |
1197 | + display: none; | |
1198 | + } | |
1199 | + | |
1200 | + .mobil-btn { | |
1201 | + display: block; | |
1202 | + } | |
1203 | +#header{ | |
1204 | + height: 75px; | |
1205 | +} | |
1206 | + .mobil-menu { | |
1207 | + width: 100%; | |
1208 | + height: 100%; | |
1209 | + position: absolute; | |
1210 | + top: 54px; left: 0; | |
1211 | + z-index: 100000; | |
1212 | + } | |
1213 | + | |
1214 | + .mobil-menu ul { | |
1215 | + list-style: none; | |
1216 | + padding: 2rem 0; | |
1217 | + margin: 0; | |
1218 | + background-color: #fff; | |
1219 | + } | |
1220 | + | |
1221 | + nav ul li a { | |
1222 | + font-size: 2.5rem !important; | |
1223 | + } | |
1224 | + | |
1225 | + .mobil-menu ul li ul li a { | |
1226 | + | |
1227 | + font-weight: 300; | |
1228 | + color: #333; | |
1229 | + font-size: 1.5rem !important; | |
1230 | + } | |
1231 | + | |
1232 | + .clicked { | |
1233 | + margin: 0 auto; | |
1234 | + width: 120px; | |
1235 | + } | |
1236 | + | |
1237 | + nav>ul { | |
1238 | + background-color: #fff; | |
1239 | + border-bottom: 1px solid #333; | |
1240 | + } | |
1241 | + | |
1242 | + nav ul li { | |
1243 | + color: #333 !important; | |
1244 | + width: 100% !important; | |
1245 | + } | |
1246 | + | |
1247 | + .mobile-menu-button { | |
1248 | + transform: translateX(10px); | |
1249 | + } | |
1250 | + | |
1251 | + .mobile-menu-button, | |
1252 | + .mobile-menu-button-close { | |
1253 | + font-size: 3rem !important; | |
1254 | + color: #333; | |
1255 | + width: 29px; | |
1256 | + } | |
1257 | + | |
1258 | + .swiper { | |
1259 | + width: 50%; | |
1260 | + height: 100%; | |
1261 | + padding: 2rem; | |
1262 | + } | |
1263 | + | |
1264 | + .swiper-slide { | |
1265 | + width: 100%; | |
1266 | + | |
1267 | + } | |
1268 | + | |
1269 | + .slide-wrap { | |
1270 | + width: 100%; | |
1271 | + } | |
1272 | + | |
1273 | + #header.active { | |
1274 | + border-bottom: 1px solid #ced4da; | |
1275 | + background-color: white; | |
1276 | + } | |
1277 | + | |
1278 | + #header.active .header nav li a { | |
1279 | + color: #333; | |
1280 | + | |
1281 | + } | |
1282 | + | |
1283 | + #header.active .header nav ul li ul.dropdown { | |
1284 | + background-color: #fff; | |
1285 | + } | |
1286 | + | |
1287 | + #header.active .header .logo { | |
1288 | + background: url(../img/component/logo-color.png) no-repeat; | |
1289 | + width: 200px; | |
1290 | + background-size: contain; | |
1291 | + height: 25px; | |
1292 | + | |
1293 | + } | |
1294 | + | |
1295 | + #header.active .header .mobile-menu-button, | |
1296 | + .mobile-menu-button-close { | |
1297 | + color: #333; | |
1298 | + } | |
1299 | + | |
1300 | + #header.active .header .mobile-menu-button-close { | |
1301 | + color: #333; | |
1302 | + display: block; | |
1303 | + } | |
1304 | + | |
1305 | + #header.active .header .mobil-menu ul { | |
1306 | + background-color: #fff; | |
1307 | + } | |
1308 | + | |
1309 | + .traffic-img-box img { | |
1310 | + width: 100% !important; | |
1311 | + object-fit: cover !important; | |
1312 | + } | |
1313 | + | |
1314 | + .solution-text, | |
1315 | + .portfolio-text, | |
1316 | + .map-text, | |
1317 | + .about-title p:nth-child(1) { | |
1318 | + font-size: 3rem !important; | |
1319 | + padding-bottom: 1rem; | |
1320 | + } | |
1321 | + | |
1322 | + .text-main { | |
1323 | + font-size: 2.4rem !important; | |
1324 | + margin-bottom: 2rem; | |
1325 | + } | |
1326 | + | |
1327 | + .solution-title p, | |
1328 | + .traffic-title p, | |
1329 | + .ai-title p, | |
1330 | + .meta-title p, | |
1331 | + .smart-title p { | |
1332 | + font-size: 2.5rem; | |
1333 | + margin: 1rem; | |
1334 | + word-break: keep-all; | |
1335 | + } | |
1336 | + | |
1337 | + .sub-text, | |
1338 | + .solution-sub-text { | |
1339 | + font-size: 1.8rem !important; | |
1340 | + margin-bottom: 0rem; | |
1341 | + word-break: keep-all; | |
1342 | + } | |
1343 | + | |
1344 | + .accordion-sub-text { | |
1345 | + font-size: 2.6rem !important; | |
1346 | + } | |
1347 | + | |
1348 | + .marketing-wrap-title h1 { | |
1349 | + font-size: 3rem; | |
1350 | + } | |
1351 | + | |
1352 | + .accordion.active .accordion-num, | |
1353 | + .accordion.active .accordion-num span { | |
1354 | + font-size: 3.5rem; | |
1355 | + } | |
1356 | + | |
1357 | + .history-box { | |
1358 | + -ms-overflow-style: none; | |
1359 | + /* 인터넷 익스플로러 */ | |
1360 | + scrollbar-width: none; | |
1361 | + height: 80% !important; | |
1362 | + width: 100% !important; | |
1363 | + | |
1364 | + } | |
1365 | + .month-text{ | |
1366 | + width: 100%; | |
1367 | + } | |
1368 | + | |
1369 | + .slideTextDtail p { | |
1370 | + border-bottom: 0px !important; | |
1371 | + } | |
1372 | + | |
1373 | + .business-box { | |
1374 | + display: none; | |
1375 | + } | |
1376 | + | |
1377 | + .solution-box { | |
1378 | + width: 100%; | |
1379 | + height: calc(100% - 182px) !important; | |
1380 | + flex-direction: column; | |
1381 | + flex-wrap: wrap !important; | |
1382 | + align-items: center; | |
1383 | + justify-content: space-between; | |
1384 | + } | |
1385 | + | |
1386 | + .slide-solution .text-area { | |
1387 | + padding: 6rem 2rem; | |
1388 | + } | |
1389 | + | |
1390 | + | |
1391 | + | |
1392 | + #map1, | |
1393 | + #map2 { | |
1394 | + width: 100% !important; | |
1395 | + } | |
1396 | + | |
1397 | + .box:hover { | |
1398 | + transform: scale(1); | |
1399 | + } | |
1400 | + | |
1401 | + .box-wrap-title { | |
1402 | + font-size: 1.3rem !important; | |
1403 | + font-weight: 800; | |
1404 | + margin-bottom: 0px; | |
1405 | + } | |
1406 | + | |
1407 | + .box p:nth-child(1) { | |
1408 | + font-size: 1.8rem; | |
1409 | + font-weight: 600; | |
1410 | + } | |
1411 | + | |
1412 | + .box p { | |
1413 | + font-weight: 300; | |
1414 | + font-size: 1.5rem; | |
1415 | + } | |
1416 | + | |
1417 | + | |
1418 | + #solution { | |
1419 | + | |
1420 | + padding: 0rem !important; | |
1421 | + } | |
1422 | + | |
1423 | + #solution .swiper-wrapper { | |
1424 | + background: linear-gradient(#f8f9fa, #fff, #fff) !important; | |
1425 | + | |
1426 | + } | |
1427 | + | |
1428 | + #solution .swiper-slide { | |
1429 | + height: 100% !important; | |
1430 | + background: #fff !important; | |
1431 | + } | |
1432 | + | |
1433 | + #solution .taken-area { | |
1434 | + width: 100% !important; | |
1435 | + } | |
1436 | + | |
1437 | + #solution .text-area { | |
1438 | + width: 100% !important; | |
1439 | + height: 100%; | |
1440 | + padding: 6rem 2rem !important; | |
1441 | + } | |
1442 | + | |
1443 | + .text-area { | |
1444 | + width: 100% !important; | |
1445 | + height: 100% !important; | |
1446 | + padding: 6rem 2rem; | |
1447 | + } | |
1448 | + | |
1449 | + .innerSwiper-title { | |
1450 | + font-size: 1.9rem; | |
1451 | + } | |
1452 | + | |
1453 | + .innerSwiper-text { | |
1454 | + word-break: keep-all; | |
1455 | + font-size: 1.5rem; | |
1456 | + } | |
1457 | + | |
1458 | + .innerSwiper .swiper-slide { | |
1459 | + width: 100% !important; | |
1460 | + padding: 10px; | |
1461 | + } | |
1462 | + | |
1463 | + .sub-text-area { | |
1464 | + margin-bottom: 1rem !important; | |
1465 | + } | |
1466 | + | |
1467 | + .marketing-wrapper { | |
1468 | + width: 100%; | |
1469 | + padding: 1rem 1rem 2rem 1rem; | |
1470 | + margin: 0 auto; | |
1471 | + } | |
1472 | + | |
1473 | + .portfolio-text { | |
1474 | + padding-left: 2rem; | |
1475 | + } | |
1476 | + | |
1477 | + .marketing-wrap-title h1::after { | |
1478 | + width: 20px; | |
1479 | + height: 20px; | |
1480 | + background-size: 20px; | |
1481 | + transform: translateX(-50%); | |
1482 | + } | |
1483 | + | |
1484 | + .marketing-area { | |
1485 | + width: 100%; | |
1486 | + grid-template-columns: 1fr; | |
1487 | + } | |
1488 | + | |
1489 | + .month { | |
1490 | + width: 100%; | |
1491 | + } | |
1492 | + | |
1493 | + .marketing-title { | |
1494 | + font-size: 1.8rem; | |
1495 | + } | |
1496 | + | |
1497 | + .gradient-bottom { | |
1498 | + padding-top: 60px !important; | |
1499 | + } | |
1500 | + | |
1501 | + .slide-solution { | |
1502 | + height: 100%; | |
1503 | + } | |
1504 | + | |
1505 | + .root_daum_roughmap_landing { | |
1506 | + width: 100% !important; | |
1507 | + height: 50% !important; | |
1508 | + } | |
1509 | + | |
1510 | + .root_daum_roughmap .wrap_map { | |
1511 | + height: 200px !important; | |
1512 | + } | |
1513 | + | |
1514 | + .secen-map { | |
1515 | + width: 100% !important; | |
1516 | + height: 50% !important; | |
1517 | + } | |
1518 | + | |
1519 | + .secen-map div { | |
1520 | + height: 100% !important; | |
1521 | + } | |
1522 | + | |
1523 | + .secen-map .map { | |
1524 | + width: 100% !important; | |
1525 | + height: 100% !important; | |
1526 | + object-fit: cover; | |
1527 | + | |
1528 | + } | |
1529 | + | |
1530 | + | |
1531 | + | |
1532 | + .address-tile { | |
1533 | + width: 100%; | |
1534 | + text-align: center; | |
1535 | + font-size: 1.5rem; | |
1536 | + padding-left: 0px; | |
1537 | + } | |
1538 | + | |
1539 | + .address-subtitle { | |
1540 | + font-size: 1.4rem !important; | |
1541 | + } | |
1542 | + | |
1543 | + .address-tile::after { | |
1544 | + display: none; | |
1545 | + } | |
1546 | + | |
1547 | + .map-btn { | |
1548 | + justify-content: center; | |
1549 | + } | |
1550 | + | |
1551 | + .map-btn button { | |
1552 | + /* width: 40%; */ | |
1553 | + font-size: 1.5rem; | |
1554 | + font-weight: 500; | |
1555 | + } | |
1556 | + | |
1557 | + .address-box { | |
1558 | + width: 100%; | |
1559 | + } | |
1560 | + | |
1561 | + #footer { | |
1562 | + width: 100%; | |
1563 | + } | |
1564 | + | |
1565 | + .footer-wrap { | |
1566 | + width: 100%; | |
1567 | + } | |
1568 | + | |
1569 | + .footer-text div { | |
1570 | + flex-wrap: wrap; | |
1571 | + } | |
1572 | + | |
1573 | + .footer-text div p, | |
1574 | + .footer-text p { | |
1575 | + width: 100% !important; | |
1576 | + font-size: 1.3rem !important; | |
1577 | + padding-left: 0px !important; | |
1578 | + } | |
1579 | + | |
1580 | + .copyright { | |
1581 | + font-size: 1.3rem !important; | |
1582 | + } | |
1583 | + | |
1584 | + .about-wrap { | |
1585 | + width: 100%; | |
1586 | + padding: 9rem 2rem; | |
1587 | + } | |
1588 | + | |
1589 | + .etc-box { | |
1590 | + margin-left: 0px !important; | |
1591 | + margin-right: 0px !important; | |
1592 | + } | |
1593 | + | |
1594 | + /* footer img { | |
1595 | + width: 100px !important; | |
1596 | + } */ | |
1597 | + | |
1598 | + .container { | |
1599 | + width: 100%; | |
1600 | + } | |
1601 | + | |
1602 | + .about-title-sub { | |
1603 | + font-size: 1.8rem; | |
1604 | + margin-bottom: 0px; | |
1605 | + } | |
1606 | + | |
1607 | + .about-area { | |
1608 | + flex-wrap: nowrap; | |
1609 | + width: 100%; | |
1610 | + height: 10%; | |
1611 | + margin-bottom: 10px !important; | |
1612 | + flex-direction: column; | |
1613 | + gap: 10px !important; | |
1614 | + } | |
1615 | + | |
1616 | + .about-area p { | |
1617 | + font-size: 2rem; | |
1618 | + } | |
1619 | + | |
1620 | + .month-text p { | |
1621 | + font-size: 1.6rem; | |
1622 | + } | |
1623 | + | |
1624 | + .about-radius, | |
1625 | + .about-radius-bottom, | |
1626 | + .about-radius-right, | |
1627 | + .about-radius-left, | |
1628 | + .about-radius-bottom-left, | |
1629 | + .about-radius-bottom-right { | |
1630 | + width: 100%; | |
1631 | + height: 100%; | |
1632 | + padding: 0.5rem; | |
1633 | + border-radius: 5px !important; | |
1634 | + } | |
1635 | + | |
1636 | + .about-radius-left::after, | |
1637 | + .about-radius-bottom-right::after, | |
1638 | + .about-radius-bottom-left::after, | |
1639 | + .about-radius::after, | |
1640 | + .about-radius-right::after { | |
1641 | + display: none; | |
1642 | + } | |
1643 | + | |
1644 | + | |
1645 | + .about-text { | |
1646 | + font-size: 1.5rem; | |
1647 | + } | |
1648 | + | |
1649 | + .silde-box { | |
1650 | + height: 75%; | |
1651 | + display: flex; | |
1652 | + flex-direction: column; | |
1653 | + } | |
1654 | + | |
1655 | + .silde-box .accordion { | |
1656 | + height: 10px; | |
1657 | + padding: 0.5rem; | |
1658 | + } | |
1659 | + | |
1660 | + .silde-box .slideImg { | |
1661 | + display: none; | |
1662 | + } | |
1663 | + | |
1664 | + .slideText { | |
1665 | + padding: 10px; | |
1666 | + } | |
1667 | + | |
1668 | + | |
1669 | + .slideTextDtail p { | |
1670 | + font-size: 1.5rem; | |
1671 | + } | |
1672 | + | |
1673 | + .slideText p:first-child { | |
1674 | + font-size: 2rem; | |
1675 | + } | |
1676 | + | |
1677 | + | |
1678 | + .slideTextDtail { | |
1679 | + padding: 0 1rem; | |
1680 | + } | |
1681 | + | |
1682 | + .address-subtitle { | |
1683 | + font-size: 1.4rem !important; | |
1684 | + margin: 0 auto; | |
1685 | + } | |
1686 | + | |
1687 | + .about-title { | |
1688 | + margin-top: 60px; | |
1689 | + margin-bottom: 1rem !important; | |
1690 | + } | |
1691 | + | |
1692 | + .solution-web-box img { | |
1693 | + width: 100%; | |
1694 | + | |
1695 | + object-fit: contain !important; | |
1696 | + height: 200px !important; | |
1697 | + margin-bottom: 20px !important; | |
1698 | + } | |
1699 | + | |
1700 | + .history-area { | |
1701 | + gap: 0px !important; | |
1702 | + } | |
1703 | + | |
1704 | + .month-text img { | |
1705 | + width: 100px !important; | |
1706 | + height: 215px; | |
1707 | + } | |
1708 | + | |
1709 | + | |
1710 | + .about-vision-box img { | |
1711 | + display: block; | |
1712 | + object-fit: contain; | |
1713 | + } | |
1714 | + | |
1715 | + .timeline { | |
1716 | + width: 100%; | |
1717 | + } | |
1718 | +.history-area{ | |
1719 | + | |
1720 | + flex-wrap: wrap !important; | |
1721 | +} | |
1722 | + .years { | |
1723 | + display: flex; | |
1724 | + width: 100% !important; | |
1725 | + border-bottom: 1px solid #333; | |
1726 | + } | |
1727 | + | |
1728 | + | |
1729 | + .year { | |
1730 | + justify-content: center; | |
1731 | + display: flex; | |
1732 | + align-items: center; | |
1733 | + height: 100%; | |
1734 | + } | |
1735 | + | |
1736 | + .active-year { | |
1737 | + font-weight: 900; | |
1738 | + font-size: 4rem; | |
1739 | + } | |
1740 | + | |
1741 | + .contents { | |
1742 | + | |
1743 | + text-align: center; | |
1744 | + | |
1745 | + } | |
1746 | + | |
1747 | + .month { | |
1748 | + text-align: left !important; | |
1749 | + } | |
1750 | + | |
1751 | + .month-text div { | |
1752 | + width: 100% !important; | |
1753 | + flex-wrap: nowrap; | |
1754 | + } | |
1755 | + | |
1756 | + .taken-wrap-box { | |
1757 | + width: 100% !important; | |
1758 | + gap: 40px !important; | |
1759 | + flex-direction: column; | |
1760 | + } | |
1761 | + | |
1762 | + .taken-area { | |
1763 | + width: 100%; | |
1764 | + height: 0% !important; | |
1765 | + align-items: start; | |
1766 | + gap: 10px !important; | |
1767 | + } | |
1768 | + | |
1769 | + .solution-area { | |
1770 | + gap: 10px !important; | |
1771 | + } | |
1772 | + | |
1773 | + .taken-area img, | |
1774 | + .traffic-area img, | |
1775 | + .ai-area img { | |
1776 | + width: 100%; | |
1777 | + object-fit: contain !important; | |
1778 | + margin-bottom: 2rem; | |
1779 | + } | |
1780 | + | |
1781 | + | |
1782 | + .taken-box { | |
1783 | + width: 100%; | |
1784 | + /* margin-bottom: 2rem; */ | |
1785 | + flex-direction: column; | |
1786 | + gap: 5px; | |
1787 | + } | |
1788 | + | |
1789 | + | |
1790 | + | |
1791 | + .taken-box p { | |
1792 | + margin-top: 0px; | |
1793 | + font-size: 1.2rem; | |
1794 | + } | |
1795 | + | |
1796 | + | |
1797 | + | |
1798 | + .text-box-title { | |
1799 | + font-weight: 600; | |
1800 | + margin-top: 1rem; | |
1801 | + text-align: center; | |
1802 | + font-size: 1.6rem; | |
1803 | + margin-left: 0rem; | |
1804 | + } | |
1805 | + | |
1806 | + .solution-after { | |
1807 | + justify-content: start; | |
1808 | + } | |
1809 | + | |
1810 | + | |
1811 | + .solution-title::after, | |
1812 | + .traffic-title::after, | |
1813 | + .ai-title::after, | |
1814 | + .meta-title::after, | |
1815 | + .smart-title::after { | |
1816 | + display: none; | |
1817 | + } | |
1818 | + | |
1819 | + #Data, | |
1820 | + #smart, | |
1821 | + #visuali, | |
1822 | + #dataanalysis { | |
1823 | + height: 100% !important; | |
1824 | + overflow-y: scroll !important; | |
1825 | + } | |
1826 | + | |
1827 | + #customized, | |
1828 | + #etc { | |
1829 | + height: 100% !important; | |
1830 | + overflow-y: scroll !important; | |
1831 | + padding-top: 60px; | |
1832 | + } | |
1833 | + | |
1834 | + | |
1835 | + | |
1836 | + .meta-wrap::before { | |
1837 | + width: 100%; | |
1838 | + display: none; | |
1839 | + } | |
1840 | + | |
1841 | + #visuali .etc-wrap-text, | |
1842 | + #dataanalysis .etc-wrap-text, | |
1843 | + #customized .box-wrap { | |
1844 | + width: 100%; | |
1845 | + } | |
1846 | + | |
1847 | + #Data img, | |
1848 | + #visuali img, | |
1849 | + #dataanalysis img, | |
1850 | + #customized img { | |
1851 | + width: 100%; | |
1852 | + } | |
1853 | + | |
1854 | + #smart img { | |
1855 | + width: 100%; | |
1856 | + } | |
1857 | + | |
1858 | + #smart .box-wrap-title { | |
1859 | + font-size: 2rem !important; | |
1860 | + display: block !important; | |
1861 | + font-weight: 600 !important; | |
1862 | + } | |
1863 | + | |
1864 | + #etc .etc-box-title { | |
1865 | + display: block !important; | |
1866 | + font-weight: 600 !important; | |
1867 | + width: 100%; | |
1868 | + } | |
1869 | + | |
1870 | + #etc .etc-box p { | |
1871 | + font-size: 1.6rem !important; | |
1872 | + padding: 0px; | |
1873 | + font-weight: 200; | |
1874 | + } | |
1875 | + | |
1876 | + .solution-area { | |
1877 | + width: 100%; | |
1878 | + grid-template-columns: 1fr; | |
1879 | + } | |
1880 | + | |
1881 | + .solution-text-box { | |
1882 | + padding: 10px 15px 20px 15px !important; | |
1883 | + } | |
1884 | + | |
1885 | + .solution-text-box p { | |
1886 | + padding-left: 5px; | |
1887 | + } | |
1888 | + | |
1889 | + .solution-text-box div { | |
1890 | + gap: 0px !important; | |
1891 | + flex-direction: column; | |
1892 | + } | |
1893 | + | |
1894 | + .solution-text-box div div p { | |
1895 | + width: 100%; | |
1896 | + } | |
1897 | + | |
1898 | + .etc-wrap-text, | |
1899 | + .box-wrap { | |
1900 | + width: 100%; | |
1901 | + flex-direction: column; | |
1902 | + } | |
1903 | + | |
1904 | + .box-wrap { | |
1905 | + gap: 5px; | |
1906 | + } | |
1907 | + | |
1908 | + .etc-wrap-text div, | |
1909 | + .box-wrap div { | |
1910 | + width: 100%; | |
1911 | + border-radius: 5px; | |
1912 | + margin-bottom: 5px; | |
1913 | + } | |
1914 | + | |
1915 | + .etc-wrap-text div { | |
1916 | + flex-wrap: wrap !important; | |
1917 | + } | |
1918 | + | |
1919 | + | |
1920 | + .traffic-video { | |
1921 | + width: 90%; | |
1922 | + padding: 1rem 1rem 2rem 1rem; | |
1923 | + } | |
1924 | + | |
1925 | + .traffic-video p { | |
1926 | + font-size: 1.6rem; | |
1927 | + word-break: keep-all; | |
1928 | + } | |
1929 | + | |
1930 | + .traffic-button button { | |
1931 | + padding: 7px 46px; | |
1932 | + font-size: 1.5rem; | |
1933 | + } | |
1934 | + | |
1935 | + .taken-area p { | |
1936 | + font-size: 1.4rem; | |
1937 | + } | |
1938 | + | |
1939 | + .traffic-button { | |
1940 | + justify-content: center; | |
1941 | + } | |
1942 | + | |
1943 | + .etc-wrap-text p, | |
1944 | + .box-wrap p { | |
1945 | + font-size: 1.6rem !important; | |
1946 | + margin-bottom: 2rem; | |
1947 | + } | |
1948 | + | |
1949 | + .etc-text-deco p::after { | |
1950 | + display: none; | |
1951 | + } | |
1952 | + | |
1953 | + .solution .swiper-slide img { | |
1954 | + width: 100%; | |
1955 | + height: 100px !important; | |
1956 | + | |
1957 | + } | |
1958 | + | |
1959 | + .text-box-title::after { | |
1960 | + display: none; | |
1961 | + } | |
1962 | + | |
1963 | + | |
1964 | + .traffic-video { | |
1965 | + top: 25%; | |
1966 | + } | |
1967 | + | |
1968 | + .viedeo-text-box { | |
1969 | + width: 100%; | |
1970 | + margin: 1rem 0; | |
1971 | + flex-wrap: nowrap; | |
1972 | + | |
1973 | + /* border: 1px solid red; */ | |
1974 | + } | |
1975 | + | |
1976 | + .viedeo-text-box p:nth-child(1) { | |
1977 | + text-align: left; | |
1978 | + } | |
1979 | + | |
1980 | + | |
1981 | + .box:hover, | |
1982 | + .box-wrap div img:hover { | |
1983 | + transform: scale(1); | |
1984 | + } | |
1985 | + | |
1986 | + .visual-grid { | |
1987 | + display: grid; | |
1988 | + grid-template-columns: 1fr 1fr; | |
1989 | + } | |
1990 | + | |
1991 | + | |
1992 | + .customized-wrap-title { | |
1993 | + margin-top: 50px; | |
1994 | + margin-bottom: 1rem; | |
1995 | + } | |
1996 | + | |
1997 | + .etc-wrap-title h1 { | |
1998 | + padding-top: 0rem; | |
1999 | + } | |
2000 | + | |
2001 | + .etc-box-title { | |
2002 | + font-weight: 900; | |
2003 | + text-align: center !important; | |
2004 | + font-size: 2.2rem !important; | |
2005 | + } | |
2006 | + | |
2007 | + .etc-box p { | |
2008 | + text-align: left; | |
2009 | + } | |
2010 | + | |
2011 | + .box-grid { | |
2012 | + grid-template-columns: 1fr 1fr 1fr !important; | |
2013 | + } | |
2014 | + | |
2015 | + | |
2016 | + .box-wrap img { | |
2017 | + width: 100%; | |
2018 | + padding-bottom: 0rem !important; | |
2019 | + object-fit: contain; | |
2020 | + } | |
2021 | + | |
2022 | + .solution-title, | |
2023 | + .traffic-title, | |
2024 | + .ai-title, | |
2025 | + .meta-title, | |
2026 | + .smart-title { | |
2027 | + margin-bottom: 40px !important; | |
2028 | + } | |
2029 | + | |
2030 | + .box-wrap div p { | |
2031 | + text-align: center; | |
2032 | + margin: 0 auto; | |
2033 | + padding: 10px 0; | |
2034 | + margin-bottom: 0rem !important; | |
2035 | + font-size: 2rem !important; | |
2036 | + } | |
2037 | + | |
2038 | + .etc-box-title { | |
2039 | + font-weight: 700; | |
2040 | + text-align: center !important; | |
2041 | + font-size: 2.2rem !important; | |
2042 | + } | |
2043 | + | |
2044 | + .box-wrap div div { | |
2045 | + display: none; | |
2046 | + height: 37% !important; | |
2047 | + } | |
2048 | + | |
2049 | + .etc-wrap-title h1, | |
2050 | + .customized-wrap-title h1 { | |
2051 | + padding: 3rem 0 0 0; | |
2052 | + font-size: 2.8rem !important; | |
2053 | + word-break: keep-all; | |
2054 | + } | |
2055 | + | |
2056 | + .etc-wrap-title p, | |
2057 | + .customized-wrap-title p { | |
2058 | + font-size: 2rem !important; | |
2059 | + margin-bottom: 2rem; | |
2060 | + } | |
2061 | + | |
2062 | + .etc-wrap-title { | |
2063 | + /* height: 100%; */ | |
2064 | + padding-bottom: 10px !important; | |
2065 | + margin-bottom: 0px !important; | |
2066 | + } | |
2067 | + | |
2068 | + .customized-box { | |
2069 | + width: 100%; | |
2070 | + display: grid; | |
2071 | + gap: 10px; | |
2072 | + grid-template-columns: 1fr 1fr; | |
2073 | + } | |
2074 | + | |
2075 | + .customized-box div { | |
2076 | + width: 100%; | |
2077 | + | |
2078 | + margin-bottom: 10px; | |
2079 | + } | |
2080 | + | |
2081 | + .customized-box p { | |
2082 | + font-size: 1.1rem !important; | |
2083 | + } | |
2084 | + | |
2085 | + .customized-box div img { | |
2086 | + width: 79%; | |
2087 | + } | |
2088 | + | |
2089 | + .Portfolio { | |
2090 | + width: 100%; | |
2091 | + height: 100%; | |
2092 | + } | |
2093 | + | |
2094 | + .innerSwiper { | |
2095 | + height: 100%; | |
2096 | + } | |
2097 | + | |
2098 | + .innerSwiper .swiper-slide { | |
2099 | + height: 40%; | |
2100 | + } | |
2101 | + | |
2102 | + .etc-box-title { | |
2103 | + margin-bottom: 0px; | |
2104 | + } | |
2105 | + | |
2106 | + .etc-box-title p { | |
2107 | + padding-left: 0px; | |
2108 | + } | |
2109 | + | |
2110 | + .etc-box p { | |
2111 | + padding-left: 0px; | |
2112 | + } | |
2113 | + | |
2114 | + .solution-box { | |
2115 | + width: 100%; | |
2116 | + height: calc(100% - 182px) !important; | |
2117 | + display: grid; | |
2118 | + grid-template-columns: 1fr; | |
2119 | + justify-content: center; | |
2120 | + text-shadow: 2px 2px 5px #33333354; | |
2121 | + gap: 5px; | |
2122 | + } | |
2123 | + | |
2124 | + .box1, | |
2125 | + .box2, | |
2126 | + .box3, | |
2127 | + .box4, | |
2128 | + .box5, | |
2129 | + .box6 { | |
2130 | + width: 100%; | |
2131 | + font-size: 1.5rem; | |
2132 | + background-size: cover; | |
2133 | + background-position: center; | |
2134 | + padding: 15px !important; | |
2135 | + } | |
2136 | + | |
2137 | + .box2, | |
2138 | + .box4 { | |
2139 | + transform: translateY(0px); | |
2140 | + } | |
2141 | + | |
2142 | + .innerSwiper .swiper-slide img { | |
2143 | + height: 100%; | |
2144 | + } | |
2145 | + | |
2146 | + .accordion2, | |
2147 | + .accordion1, | |
2148 | + .accordion3 { | |
2149 | + display: flex; | |
2150 | + flex-direction: column; | |
2151 | + align-content: center; | |
2152 | + justify-content: center; | |
2153 | + | |
2154 | + background-position: center; | |
2155 | + border-top-left-radius: 0px; | |
2156 | + border-bottom-left-radius: 0px; | |
2157 | + border-top-right-radius: 0px; | |
2158 | + border-bottom-right-radius: 0px; | |
2159 | + } | |
2160 | + | |
2161 | + .accordion1{ | |
2162 | + border-top-left-radius: 20px; | |
2163 | + border-top-right-radius: 20px; | |
2164 | + | |
2165 | + } | |
2166 | + .accordion3{ | |
2167 | + | |
2168 | + border-bottom-left-radius: 20px; | |
2169 | + border-bottom-right-radius: 20px; | |
2170 | + } | |
2171 | + | |
2172 | + | |
2173 | + .accordion2::after, | |
2174 | + .accordion1::after, | |
2175 | + .accordion3::after { | |
2176 | + font-size: 3.4rem; | |
2177 | + top: 8px; | |
2178 | + left: 15px; | |
2179 | + } | |
2180 | + | |
2181 | + .accordion2::before, | |
2182 | + .accordion1::before, | |
2183 | + .accordion3::before { | |
2184 | + font-size: 3.4rem; | |
2185 | + top: 8px; | |
2186 | + left: 60px; | |
2187 | + } | |
2188 | + | |
2189 | + | |
2190 | + | |
2191 | +} | |
2192 | + | |
2193 | +@media all and (min-width:768px) and (max-width:1366px) { | |
2194 | + | |
2195 | + | |
2196 | + | |
2197 | + body { | |
2198 | + min-width: 100%; | |
2199 | + | |
2200 | + | |
2201 | + } | |
2202 | + | |
2203 | + .history-box { | |
2204 | + width: 65% !important; | |
2205 | + margin: 0 auto; | |
2206 | + } | |
2207 | + | |
2208 | + .box-wrap { | |
2209 | + flex-wrap: wrap; | |
2210 | + } | |
2211 | + | |
2212 | + .solution-title p, | |
2213 | + .traffic-title p, | |
2214 | + .ai-title p, | |
2215 | + .meta-title p, | |
2216 | + .smart-title p, | |
2217 | + .etc-wrap-title p { | |
2218 | +word-break: keep-all; } | |
2219 | +.taken-box p{ | |
2220 | + word-break: keep-all; | |
2221 | +} | |
2222 | + .sub-text, | |
2223 | + .solution-sub-text { | |
2224 | + font-size: 2rem !important; | |
2225 | + } | |
2226 | + | |
2227 | + .clicked { | |
2228 | + margin: 0 auto; | |
2229 | + width: 100px; | |
2230 | + } | |
2231 | + | |
2232 | + .slide-solution .text-area { | |
2233 | + padding: 6rem 2rem; | |
2234 | + } | |
2235 | + | |
2236 | + .slide-solution .portfolio-text { | |
2237 | + padding: 0rem 1rem; | |
2238 | + } | |
2239 | + | |
2240 | + #contentHeadquarter { | |
2241 | + width: 100%; | |
2242 | + height: 350px; | |
2243 | + } | |
2244 | + | |
2245 | + #map1, | |
2246 | + #map2 { | |
2247 | + width: 100% !important; | |
2248 | + } | |
2249 | + | |
2250 | + .box:hover { | |
2251 | + transform: scale(1); | |
2252 | + } | |
2253 | + | |
2254 | + .box-wrap-title { | |
2255 | + font-size: 1.3rem !important; | |
2256 | + font-weight: 600; | |
2257 | + margin-bottom: 0px; | |
2258 | + } | |
2259 | + | |
2260 | + | |
2261 | + .etc-wrap-text p { | |
2262 | + text-align: center; | |
2263 | + font-size: 1.7rem; | |
2264 | + } | |
2265 | + | |
2266 | + .header-area { | |
2267 | + width: 100%; | |
2268 | + } | |
2269 | + | |
2270 | + .mobile-menu-button, | |
2271 | + .mobil-wrap { | |
2272 | + display: block; | |
2273 | + } | |
2274 | + | |
2275 | + .etc-text-deco p::after { | |
2276 | + display: none; | |
2277 | + } | |
2278 | + | |
2279 | + .web-menu { | |
2280 | + display: none; | |
2281 | + } | |
2282 | + | |
2283 | + .mobil-btn { | |
2284 | + display: block; | |
2285 | + } | |
2286 | + | |
2287 | + .mobil-menu { | |
2288 | + width: 100%; | |
2289 | + height: 100%; | |
2290 | + position: absolute; | |
2291 | + top: 36px; | |
2292 | + left: 0; | |
2293 | + z-index: 100000; | |
2294 | + } | |
2295 | + | |
2296 | + .mobil-menu ul { | |
2297 | + list-style: none; | |
2298 | + padding: 2rem 0; | |
2299 | + margin: 0; | |
2300 | + background-color: #fff; | |
2301 | + } | |
2302 | + | |
2303 | + .mobil-menu ul li ul li a { | |
2304 | + font-weight: 500; | |
2305 | + color: #333; | |
2306 | + font-size: 1.2rem !important; | |
2307 | + } | |
2308 | + | |
2309 | + nav>ul { | |
2310 | + background-color: #fff; | |
2311 | + border-bottom: 1px solid #333; | |
2312 | + } | |
2313 | + | |
2314 | + nav ul li { | |
2315 | + color: #333 !important; | |
2316 | + width: 100% !important; | |
2317 | + } | |
2318 | + | |
2319 | + .mobile-menu-button { | |
2320 | + transform: translateX(10px); | |
2321 | + } | |
2322 | + | |
2323 | + .mobile-menu-button, | |
2324 | + .mobile-menu-button-close { | |
2325 | + font-size: 3rem !important; | |
2326 | + color: #333; | |
2327 | + height: 29px; | |
2328 | + width: 29px; | |
2329 | + } | |
2330 | + | |
2331 | + summary::-webkit-details-marker { | |
2332 | + display: none; | |
2333 | + } | |
2334 | + | |
2335 | + .swiper { | |
2336 | + width: 50%; | |
2337 | + height: 100%; | |
2338 | + } | |
2339 | + | |
2340 | + .swiper-slide { | |
2341 | + width: 100%; | |
2342 | + | |
2343 | + } | |
2344 | + | |
2345 | + .text-main, | |
2346 | + .solution-text { | |
2347 | + font-size: 4rem !important; | |
2348 | + } | |
2349 | + | |
2350 | + | |
2351 | + | |
2352 | + | |
2353 | + .address-subtitle { | |
2354 | + font-size: 1.4rem !important; | |
2355 | + } | |
2356 | + | |
2357 | + .slide-wrap { | |
2358 | + width: 100%; | |
2359 | + height: 100% !important; | |
2360 | + } | |
2361 | + | |
2362 | + .text-area { | |
2363 | + width: 100% !important; | |
2364 | + padding: 6rem 2rem; | |
2365 | + } | |
2366 | + | |
2367 | + .innerSwiper-title { | |
2368 | + font-size: 3rem; | |
2369 | + } | |
2370 | + | |
2371 | + .history .text-area { | |
2372 | + padding-top: 120px; | |
2373 | + } | |
2374 | + | |
2375 | + .innerSwiper .swiper-slide { | |
2376 | + padding: 10px; | |
2377 | + } | |
2378 | + | |
2379 | + .history-area { | |
2380 | + gap: 0px !important; | |
2381 | + } | |
2382 | + | |
2383 | + .sub-text-area { | |
2384 | + margin-bottom: 1rem !important; | |
2385 | + } | |
2386 | + | |
2387 | + .marketing-wrapper { | |
2388 | + width: 100%; | |
2389 | + padding: 2rem; | |
2390 | + margin: 0 auto; | |
2391 | + } | |
2392 | + | |
2393 | + .marketing-wrap-title h1::after { | |
2394 | + width: 20px; | |
2395 | + height: 20px; | |
2396 | + background-size: 20px; | |
2397 | + transform: translateX(-50%); | |
2398 | + } | |
2399 | + | |
2400 | + .marketing-area { | |
2401 | + width: 100%; | |
2402 | + grid-template-columns: 1fr 1fr; | |
2403 | + } | |
2404 | + | |
2405 | + .marketing-title { | |
2406 | + font-size: 1.8rem; | |
2407 | + } | |
2408 | + | |
2409 | + | |
2410 | + | |
2411 | + .root_daum_roughmap_landing { | |
2412 | + width: 100% !important; | |
2413 | + height: 50% !important; | |
2414 | + } | |
2415 | + | |
2416 | + .root_daum_roughmap .wrap_map { | |
2417 | + height: 200px !important; | |
2418 | + } | |
2419 | + | |
2420 | + .secen-map { | |
2421 | + width: 100% !important; | |
2422 | + height: 50% !important; | |
2423 | + } | |
2424 | + | |
2425 | + .secen-map div { | |
2426 | + height: 100% !important; | |
2427 | + } | |
2428 | + | |
2429 | + .secen-map .map { | |
2430 | + width: 100% !important; | |
2431 | + height: 100% !important; | |
2432 | + object-fit: cover; | |
2433 | + | |
2434 | + } | |
2435 | + | |
2436 | + | |
2437 | + | |
2438 | + .address-tile { | |
2439 | + width: 100%; | |
2440 | + font-size: 1.5rem; | |
2441 | + } | |
2442 | + | |
2443 | + .address-subtitle { | |
2444 | + font-size: 1.6rem !important; | |
2445 | + } | |
2446 | + | |
2447 | + .address-tile::after { | |
2448 | + left: 1%; | |
2449 | + } | |
2450 | + | |
2451 | + .map-btn { | |
2452 | + justify-content: center; | |
2453 | + } | |
2454 | + | |
2455 | + .map-btn button { | |
2456 | + /* width: 40%; */ | |
2457 | + font-size: 1.2rem; | |
2458 | + } | |
2459 | + | |
2460 | + .address-box { | |
2461 | + width: 100%; | |
2462 | + } | |
2463 | + | |
2464 | + #footer { | |
2465 | + width: 100%; | |
2466 | + } | |
2467 | + | |
2468 | + .footer-wrap { | |
2469 | + width: 100%; | |
2470 | + } | |
2471 | + | |
2472 | + .footer-text div { | |
2473 | + flex-wrap: wrap; | |
2474 | + } | |
2475 | + | |
2476 | + .footer-text div p, | |
2477 | + .footer-text p { | |
2478 | + width: 100%; | |
2479 | + font-size: 1.2rem !important; | |
2480 | + padding-left: 0px !important; | |
2481 | + } | |
2482 | + | |
2483 | + .about-wrap { | |
2484 | + width: 100%; | |
2485 | + padding: 9rem 2rem; | |
2486 | + } | |
2487 | + | |
2488 | + .container { | |
2489 | + width: 100%; | |
2490 | + height: 40% !important; | |
2491 | + } | |
2492 | + | |
2493 | + .about-title-sub { | |
2494 | + font-size: 1.2rem; | |
2495 | + } | |
2496 | + | |
2497 | + .about-area { | |
2498 | + flex-wrap: nowrap; | |
2499 | + width: 100%; | |
2500 | + /* height: 10%; */ | |
2501 | + margin-bottom: 10px !important; | |
2502 | + /* flex-direction: column; */ | |
2503 | + gap: 10px !important; | |
2504 | + } | |
2505 | + | |
2506 | + .about-radius-left::after, | |
2507 | + .about-radius-bottom-right::after, | |
2508 | + .about-radius-bottom-left::after, | |
2509 | + .about-radius::after, | |
2510 | + .about-radius-right::after { | |
2511 | + display: none; | |
2512 | + } | |
2513 | + | |
2514 | + .about-area p { | |
2515 | + font-size: 1.2rem; | |
2516 | + } | |
2517 | + | |
2518 | + .month-text p { | |
2519 | + font-size: 1.2rem; | |
2520 | + } | |
2521 | + | |
2522 | + | |
2523 | + | |
2524 | + | |
2525 | + .about-text { | |
2526 | + font-size: 1.5rem; | |
2527 | + } | |
2528 | + | |
2529 | + | |
2530 | + .about-vision-box { | |
2531 | + flex-wrap: nowrap; | |
2532 | + } | |
2533 | + | |
2534 | + summary::-webkit-details-marker { | |
2535 | + display: none; | |
2536 | + } | |
2537 | + | |
2538 | + .slideText { | |
2539 | + padding: 10px; | |
2540 | + } | |
2541 | + | |
2542 | + .slideText p:last-child, | |
2543 | + .slideTextDtail p { | |
2544 | + font-size: 1.5rem; | |
2545 | + } | |
2546 | + | |
2547 | + .slideText p:first-child { | |
2548 | + font-size: 1.2rem; | |
2549 | + } | |
2550 | + | |
2551 | + .content img { | |
2552 | + width: 38%; | |
2553 | + } | |
2554 | + | |
2555 | + .slideTextDtail p { | |
2556 | + font-size: 1.3rem; | |
2557 | + border-bottom: 0px !important; | |
2558 | + margin-bottom: 0.5rem; | |
2559 | + } | |
2560 | + | |
2561 | + .slideTextDtail div div { | |
2562 | + display: none; | |
2563 | + } | |
2564 | + | |
2565 | + | |
2566 | + .about img { | |
2567 | + width: 100%; | |
2568 | + /* height: 300px !important; */ | |
2569 | + } | |
2570 | + | |
2571 | + .about-vision-box img { | |
2572 | + height: 300px; | |
2573 | + } | |
2574 | + | |
2575 | + .about-vision-box { | |
2576 | + height: 200px; | |
2577 | + } | |
2578 | + | |
2579 | + | |
2580 | + .timeline { | |
2581 | + width: 100%; | |
2582 | + } | |
2583 | + | |
2584 | + .years { | |
2585 | + display: flex; | |
2586 | + justify-content: space-between; | |
2587 | + width: 100% !important; | |
2588 | + } | |
2589 | + | |
2590 | + .active-year { | |
2591 | + font-size: 2rem; | |
2592 | + } | |
2593 | +.history-area{ | |
2594 | + flex-wrap: wrap !important; | |
2595 | +} | |
2596 | + .contents { | |
2597 | + text-align: center; | |
2598 | + | |
2599 | + } | |
2600 | + | |
2601 | + .month { | |
2602 | + text-align: left !important; | |
2603 | + } | |
2604 | + | |
2605 | + .month-text div { | |
2606 | + width: 100% !important; | |
2607 | + flex-wrap: nowrap; | |
2608 | + } | |
2609 | + | |
2610 | + .taken-wrap-box { | |
2611 | + width: 100% !important; | |
2612 | + gap: 10px !important; | |
2613 | + } | |
2614 | + | |
2615 | + .taken-area { | |
2616 | + width: 100%; | |
2617 | + height: 0% !important; | |
2618 | + align-items: start; | |
2619 | + gap: 5px !important; | |
2620 | + } | |
2621 | + | |
2622 | + | |
2623 | + .taken-box { | |
2624 | + width: 100%; | |
2625 | + /* flex-direction: column; */ | |
2626 | + gap: 5px; | |
2627 | + } | |
2628 | + | |
2629 | + | |
2630 | + .text-box-title { | |
2631 | + margin-bottom: 0px; | |
2632 | + margin-left: 20px; | |
2633 | + } | |
2634 | + | |
2635 | + .solution-after { | |
2636 | + justify-content: start; | |
2637 | + } | |
2638 | + | |
2639 | + | |
2640 | + .solution-title::after, | |
2641 | + .traffic-title::after, | |
2642 | + .ai-title::after, | |
2643 | + .meta-title::after, | |
2644 | + .smart-title::after { | |
2645 | + display: none; | |
2646 | + } | |
2647 | + | |
2648 | + .traffic-video { | |
2649 | + width: 90%; | |
2650 | + } | |
2651 | + .text-after p{ | |
2652 | + word-break: keep-all; | |
2653 | + } | |
2654 | + /* .solution-area { | |
2655 | + | |
2656 | + gap: 40px !important; | |
2657 | + height: calc(100% - 141.61px) !important; | |
2658 | + } */ | |
2659 | + .solution-area { | |
2660 | + width: 100%; | |
2661 | + grid-template-columns: 1fr; | |
2662 | + } | |
2663 | + | |
2664 | + .solution-text-box { | |
2665 | + padding: 10px 15px !important; | |
2666 | + } | |
2667 | + | |
2668 | + .solution-text-box p { | |
2669 | + padding-left: 5px; | |
2670 | + word-break: keep-all; | |
2671 | + } | |
2672 | + | |
2673 | + .solution-text-box div { | |
2674 | + gap: 0px !important; | |
2675 | + } | |
2676 | + | |
2677 | + .solution-text-box div div p { | |
2678 | + width: 100%; | |
2679 | + } | |
2680 | + | |
2681 | + | |
2682 | + | |
2683 | + | |
2684 | + | |
2685 | + .etc-grid-box { | |
2686 | + flex-wrap: nowrap; | |
2687 | + } | |
2688 | + | |
2689 | + .smart .etc-wrap-text .smart-img { | |
2690 | + width: 50%; | |
2691 | + } | |
2692 | + | |
2693 | + | |
2694 | + | |
2695 | + .box-wrap p { | |
2696 | + padding: 10px !important; | |
2697 | + font-size: 1.2rem !important; | |
2698 | + } | |
2699 | + | |
2700 | + .box-wrap-title { | |
2701 | + font-size: 2rem !important; | |
2702 | + } | |
2703 | + | |
2704 | + .text-box-title::after { | |
2705 | + left: -17px; | |
2706 | + top: 0px; | |
2707 | + } | |
2708 | + | |
2709 | + .solution .swiper-slide img { | |
2710 | + height: 130px !important; | |
2711 | + | |
2712 | + } | |
2713 | + | |
2714 | + .swiper-slide img { | |
2715 | + object-fit: contain; | |
2716 | + } | |
2717 | + | |
2718 | + .traffic-button { | |
2719 | + padding: 2rem 0; | |
2720 | + justify-content: center; | |
2721 | + } | |
2722 | + | |
2723 | + | |
2724 | + .logo { | |
2725 | + width: 50% !important; | |
2726 | + background-size: cover; | |
2727 | + } | |
2728 | + | |
2729 | + .accordion { | |
2730 | + padding: 1rem 3rem; | |
2731 | + } | |
2732 | + | |
2733 | + .accordion1::before, | |
2734 | + .accordion2::before, | |
2735 | + .accordion3::before { | |
2736 | + left: 11px; | |
2737 | + } | |
2738 | + | |
2739 | + .mobil-wrap { | |
2740 | + width: 50%; | |
2741 | + } | |
2742 | + | |
2743 | + .mobil-wrap button { | |
2744 | + width: 100%; | |
2745 | + text-align: right; | |
2746 | + } | |
2747 | + | |
2748 | + .box:hover, | |
2749 | + .box-wrap div img:hover { | |
2750 | + transform: scale(1); | |
2751 | + } | |
2752 | + | |
2753 | + .visual-grid { | |
2754 | + display: grid; | |
2755 | + grid-template-columns: 1fr 1fr; | |
2756 | + } | |
2757 | + | |
2758 | + | |
2759 | + | |
2760 | + .customized-wrap-title { | |
2761 | + margin-top: 50px; | |
2762 | + margin-bottom: 1rem; | |
2763 | + } | |
2764 | + | |
2765 | + .etc-wrap-title h1 { | |
2766 | + padding-top: 0rem; | |
2767 | + } | |
2768 | + | |
2769 | + .etc-box-title { | |
2770 | + font-weight: 900; | |
2771 | + text-align: center !important; | |
2772 | + font-size: 2.2rem !important; | |
2773 | + } | |
2774 | + | |
2775 | + .etc-box p { | |
2776 | + text-align: left; | |
2777 | + } | |
2778 | + | |
2779 | + .box-grid { | |
2780 | + grid-template-columns: 1fr 1fr 1fr !important; | |
2781 | + } | |
2782 | + | |
2783 | + | |
2784 | + .box-wrap img { | |
2785 | + padding-bottom: 0rem !important; | |
2786 | + object-fit: contain; | |
2787 | + } | |
2788 | + | |
2789 | + | |
2790 | + .box-wrap div p { | |
2791 | + padding: 1px; | |
2792 | + margin-bottom: 0rem !important; | |
2793 | + font-size: 1.4rem !important; | |
2794 | + } | |
2795 | + | |
2796 | + .etc-box-title { | |
2797 | + font-weight: 700; | |
2798 | + text-align: center !important; | |
2799 | + font-size: 1.6rem !important; | |
2800 | + } | |
2801 | + | |
2802 | + .box-wrap div div { | |
2803 | + height: 37% !important; | |
2804 | + } | |
2805 | + | |
2806 | + .etc-wrap-title h1, | |
2807 | + .customized-wrap-title h1 { | |
2808 | + font-size: 3rem !important; | |
2809 | + } | |
2810 | + | |
2811 | + .etc-wrap-title p, | |
2812 | + .customized-wrap-title p { | |
2813 | + font-size: 1.5rem !important; | |
2814 | + } | |
2815 | + | |
2816 | + | |
2817 | + | |
2818 | + .customized-box div { | |
2819 | + width: 100%; | |
2820 | + | |
2821 | + margin-bottom: 10px; | |
2822 | + } | |
2823 | + | |
2824 | + .customized-box p { | |
2825 | + font-size: 1.1rem !important; | |
2826 | + } | |
2827 | + | |
2828 | + .customized-box div img { | |
2829 | + width: 79%; | |
2830 | + } | |
2831 | + | |
2832 | + .etc-box-title { | |
2833 | + margin-bottom: 0px; | |
2834 | + } | |
2835 | + | |
2836 | + .etc-box-title p { | |
2837 | + padding-left: 0px; | |
2838 | + } | |
2839 | + | |
2840 | + .etc-box p { | |
2841 | + padding-left: 0px; | |
2842 | + } | |
2843 | + | |
2844 | + .solution-box { | |
2845 | + gap: 10px; | |
2846 | + } | |
2847 | + | |
2848 | + .box1, | |
2849 | + .box2, | |
2850 | + .box3, | |
2851 | + .box4, | |
2852 | + .box5, | |
2853 | + .box6 { | |
2854 | + width: 100%; | |
2855 | + background-size: cover; | |
2856 | + background-position: center; | |
2857 | + padding: 177px 26px 10px 10px; | |
2858 | + } | |
2859 | + | |
2860 | + .innerSwiper { | |
2861 | + height: 90% !important; | |
2862 | + } | |
2863 | + | |
2864 | + .box2, | |
2865 | + .box4 { | |
2866 | + transform: translateY(0px); | |
2867 | + } | |
2868 | + | |
2869 | + | |
2870 | + | |
2871 | + .etc-box { | |
2872 | + width: 100%; | |
2873 | + } | |
2874 | + | |
2875 | + .swiper-slide { | |
2876 | + -ms-overflow-style: none; | |
2877 | + /* 인터넷 익스플로러 */ | |
2878 | + scrollbar-width: none; | |
2879 | + /* 파이어폭스 */ | |
2880 | + } | |
2881 | + | |
2882 | + | |
2883 | + #Data, | |
2884 | + #smart, | |
2885 | + #visuali, | |
2886 | + #customized, | |
2887 | + #dataanalysis { | |
2888 | + height: 100% !important; | |
2889 | + overflow-y: scroll !important; | |
2890 | + padding-top: 120px; | |
2891 | + } | |
2892 | + | |
2893 | + .etc-wrap-text { | |
2894 | + width: 100%; | |
2895 | + } | |
2896 | + | |
2897 | + .visuali-text { | |
2898 | + width: 100%; | |
2899 | + flex-direction: column; | |
2900 | + } | |
2901 | + | |
2902 | + #smart .etc-wrap-text { | |
2903 | + flex-direction: column; | |
2904 | + | |
2905 | + } | |
2906 | + | |
2907 | + #dataanalysis .etc-wrap-text div { | |
2908 | + width: 48%; | |
2909 | + margin: 0 auto; | |
2910 | + flex-wrap: wrap !important; | |
2911 | + } | |
2912 | + | |
2913 | + #etc .etc-box-title { | |
2914 | + font-size: 1.7rem !important; | |
2915 | + padding: 0px; | |
2916 | + text-align: center; | |
2917 | + font-weight: 600; | |
2918 | + word-break: keep-all; | |
2919 | + } | |
2920 | + | |
2921 | + #customized .box-wrap { | |
2922 | + flex-direction: column; | |
2923 | + | |
2924 | + } | |
2925 | +}(파일 끝에 줄바꿈 문자 없음) |
+++ resources/css/style.css
... | ... | @@ -0,0 +1,1887 @@ |
1 | +@charset "utf-8"; | |
2 | + | |
3 | +.text-area { | |
4 | + width: 1200px; | |
5 | + height: 100%; | |
6 | + margin: auto; | |
7 | + | |
8 | + text-align: center; | |
9 | +} | |
10 | + | |
11 | +.content { | |
12 | + -ms-overflow-style: none; | |
13 | + scrollbar-width: none; | |
14 | +} | |
15 | + | |
16 | +.month { | |
17 | + margin-right: 3rem; | |
18 | +} | |
19 | + | |
20 | +.mobil-wrap { | |
21 | + display: flex; | |
22 | + width: 50%; | |
23 | +} | |
24 | + | |
25 | +.mobil-menu { | |
26 | + display: none; | |
27 | +} | |
28 | + | |
29 | +.mobil-wrap { | |
30 | + display: none; | |
31 | + | |
32 | +} | |
33 | + | |
34 | +#header.active { | |
35 | + border-bottom: 1px solid #ced4da; | |
36 | + background-color: white; | |
37 | +} | |
38 | + | |
39 | +#header.active .header nav li a { | |
40 | + color: #333; | |
41 | + | |
42 | +} | |
43 | + | |
44 | +#header.active .header nav ul li ul.dropdown { | |
45 | + background-color: #fff; | |
46 | +} | |
47 | + | |
48 | +#header.active .header .logo { | |
49 | + background: url(../img/component/logo-color.png) no-repeat; | |
50 | + width: 200px; | |
51 | + background-size: contain; | |
52 | + height: 25px; | |
53 | + | |
54 | +} | |
55 | + | |
56 | +#header.active .header .mobile-menu-button, | |
57 | +.mobile-menu-button-close { | |
58 | + color: #333; | |
59 | +} | |
60 | + | |
61 | +#header.active .header .mobile-menu-button-close { | |
62 | + color: #333; | |
63 | + display: block; | |
64 | +} | |
65 | + | |
66 | +#header.active .header .mobil-menu ul { | |
67 | + background-color: #fff; | |
68 | +} | |
69 | + | |
70 | +.slide-back { | |
71 | + background: url(../img/common/main-2.png)no-repeat; | |
72 | + width: 0; | |
73 | + height: 100%; | |
74 | + background-position: center; | |
75 | + background-size: cover; | |
76 | + opacity: 0; | |
77 | +} | |
78 | + | |
79 | +.slide-back.active { | |
80 | + animation: slideIn 0.5s forwards; | |
81 | + overflow: hidden; | |
82 | + | |
83 | +} | |
84 | + | |
85 | +@keyframes slideIn { | |
86 | + from { | |
87 | + width: 0; | |
88 | + opacity: 0; | |
89 | + transform: scaleX(0); | |
90 | + transform-origin: center; | |
91 | + } | |
92 | + | |
93 | + to { | |
94 | + width: 100%; | |
95 | + opacity: 1; | |
96 | + transform: scaleX(1); | |
97 | + transform-origin: center; | |
98 | + } | |
99 | +} | |
100 | + | |
101 | + | |
102 | +.text-event { | |
103 | + position: relative; | |
104 | + z-index: 3; | |
105 | + | |
106 | +} | |
107 | + | |
108 | +.text-event::before { | |
109 | + content: ""; | |
110 | + position: absolute; | |
111 | + left: 0; | |
112 | + bottom: 0px; | |
113 | + width: 0px; | |
114 | + height: 23px; | |
115 | + z-index: -1; | |
116 | + margin: 5px 0 0; | |
117 | + transition: all 1s ease-in-out; | |
118 | + transition-duration: 1s; | |
119 | + animation-delay: 1s; | |
120 | + | |
121 | + opacity: 0; | |
122 | + background-color: #fce5bf; | |
123 | +} | |
124 | + | |
125 | + | |
126 | +.text-event.active::before { | |
127 | + width: 100%; | |
128 | + opacity: 1; | |
129 | + | |
130 | +} | |
131 | + | |
132 | +.sub-text { | |
133 | + opacity: 0; | |
134 | + font-size: 2.4rem; | |
135 | +} | |
136 | + | |
137 | +.sub-text.active { | |
138 | + opacity: 1; | |
139 | + -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both; | |
140 | + animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both; | |
141 | + animation-delay: 0.5s; | |
142 | +} | |
143 | + | |
144 | +@keyframes tracking-in-expand { | |
145 | + 0% { | |
146 | + letter-spacing: -0.5em; | |
147 | + opacity: 0; | |
148 | + } | |
149 | + | |
150 | + 40% { | |
151 | + opacity: 0.6; | |
152 | + } | |
153 | + | |
154 | + 100% { | |
155 | + opacity: 1; | |
156 | + } | |
157 | +} | |
158 | + | |
159 | + | |
160 | +.sub-text-area { | |
161 | + text-align: center; | |
162 | +} | |
163 | + | |
164 | +.solution-text { | |
165 | + font-size: 6rem; | |
166 | + font-weight: 700; | |
167 | + opacity: 0; | |
168 | +} | |
169 | + | |
170 | +.map-wrap { | |
171 | + box-shadow: 2px 2px 15px #1c1c1c3a; | |
172 | +} | |
173 | + | |
174 | +.box1, | |
175 | +.box2, | |
176 | +.box3, | |
177 | +.box4, | |
178 | +.box5, | |
179 | +.box6 { | |
180 | + width: 100%; | |
181 | + height: 100%; | |
182 | + border-radius: 20px; | |
183 | + background-size: cover; | |
184 | + padding: 214px 26px 10px 10px; | |
185 | + color: #fff; | |
186 | + text-align: left; | |
187 | + font-size: 1.6rem; | |
188 | +} | |
189 | + | |
190 | +.box-area { | |
191 | + font-weight: 600; | |
192 | + font-size: 2.3rem; | |
193 | + margin-bottom: 1.3rem; | |
194 | +} | |
195 | + | |
196 | +.box1 { | |
197 | + background: url(../img/common/img-box1.png) no-repeat; | |
198 | + background-size: contain; | |
199 | + | |
200 | +} | |
201 | + | |
202 | +.box2 { | |
203 | + transform: translateY(30px); | |
204 | + background: url(../img/common/img-box2.png) no-repeat; | |
205 | + background-size: contain; | |
206 | + | |
207 | +} | |
208 | + | |
209 | +.box3 { | |
210 | + background: url(../img/common/img-box3.png) no-repeat; | |
211 | + background-size: contain; | |
212 | + | |
213 | +} | |
214 | + | |
215 | +.box4 { | |
216 | + transform: translateY(30px); | |
217 | + | |
218 | + background: url(../img/common/img-box4.png) no-repeat; | |
219 | + background-size: contain; | |
220 | + | |
221 | +} | |
222 | + | |
223 | +.box5 { | |
224 | + background: url(../img/common/img-box5.png) no-repeat; | |
225 | + background-size: contain; | |
226 | + | |
227 | +} | |
228 | + | |
229 | +.box6 { | |
230 | + transform: translateY(30px); | |
231 | + | |
232 | + background: url(../img/common/img-box6.png) no-repeat; | |
233 | + background-size: contain; | |
234 | + | |
235 | +} | |
236 | + | |
237 | +.box { | |
238 | + opacity: 0; | |
239 | + cursor: pointer; | |
240 | +} | |
241 | + | |
242 | + | |
243 | +@keyframes fadeIn { | |
244 | + from { | |
245 | + opacity: 0; | |
246 | + } | |
247 | + | |
248 | + to { | |
249 | + opacity: 1; | |
250 | + } | |
251 | +} | |
252 | + | |
253 | +.box.active { | |
254 | + animation-name: fadeIn; | |
255 | + animation-duration: 1s; | |
256 | + animation-fill-mode: both; | |
257 | +} | |
258 | + | |
259 | +.solution-ani { | |
260 | + opacity: 0; | |
261 | + cursor: pointer; | |
262 | + animation-name: fadeIn; | |
263 | + animation-duration: 1s; | |
264 | + animation-fill-mode: both; | |
265 | +} | |
266 | + | |
267 | +.solution-ani:nth-child(1) { | |
268 | + animation-delay: 0s; | |
269 | +} | |
270 | + | |
271 | +.solution-ani:nth-child(2) { | |
272 | + animation-delay: 0.3s; | |
273 | +} | |
274 | + | |
275 | +.solution-ani:nth-child(3) { | |
276 | + animation-delay: 0.5s; | |
277 | +} | |
278 | + | |
279 | +.solution-ani:nth-child(4) { | |
280 | + animation-delay: 0.7s; | |
281 | +} | |
282 | + | |
283 | +.solution-ani:nth-child(5) { | |
284 | + animation-delay: 0.9s; | |
285 | +} | |
286 | + | |
287 | +.solution-ani:nth-child(6) { | |
288 | + animation-delay: 1s; | |
289 | +} | |
290 | + | |
291 | +.solution-ani:nth-child(7) { | |
292 | + animation-delay: 1.2s; | |
293 | +} | |
294 | + | |
295 | +.solution-ani:nth-child(8) { | |
296 | + animation-delay: 1.4s; | |
297 | +} | |
298 | + | |
299 | +@keyframes fadeIn { | |
300 | + from { | |
301 | + opacity: 0; | |
302 | + } | |
303 | + | |
304 | + to { | |
305 | + opacity: 1; | |
306 | + } | |
307 | +} | |
308 | + | |
309 | +.solution-text.active { | |
310 | + opacity: 1; | |
311 | + height: 100%; | |
312 | + | |
313 | + -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both; | |
314 | + animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both; | |
315 | + animation-delay: 0.5s; | |
316 | + | |
317 | +} | |
318 | + | |
319 | +.solution-sub-text { | |
320 | + opacity: 0; | |
321 | + font-size: 2rem; | |
322 | + margin-bottom: 2rem; | |
323 | + font-family: 'Pretendard'; | |
324 | +} | |
325 | + | |
326 | +.solution-sub-text.active { | |
327 | + -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both; | |
328 | + animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both; | |
329 | + animation-delay: 0.5s; | |
330 | +} | |
331 | + | |
332 | +@keyframes tracking-in-expand { | |
333 | + 0% { | |
334 | + letter-spacing: -0.5em; | |
335 | + opacity: 0; | |
336 | + } | |
337 | + | |
338 | + 40% { | |
339 | + opacity: 0.6; | |
340 | + } | |
341 | + | |
342 | + 100% { | |
343 | + opacity: 1; | |
344 | + } | |
345 | +} | |
346 | + | |
347 | +.solution-box { | |
348 | + flex-wrap: nowrap; | |
349 | + gap: 40px; | |
350 | + width: 100%; | |
351 | + height: 320px; | |
352 | + text-align: center; | |
353 | + | |
354 | +} | |
355 | + | |
356 | +.solution-box p { | |
357 | + word-break: keep-all; | |
358 | +} | |
359 | + | |
360 | +.solution-box p:last-child { | |
361 | + font-weight: 300; | |
362 | +} | |
363 | + | |
364 | +.pink-box img, | |
365 | +.blue-box img, | |
366 | +.yellow-box img, | |
367 | +.purple-box img, | |
368 | +.ivory-box img { | |
369 | + object-fit: contain; | |
370 | + width: 197px; | |
371 | + height: calc(320px - 145px); | |
372 | + text-align: center; | |
373 | +} | |
374 | + | |
375 | +.pink-box div p:nth-child(1), | |
376 | +.yellow-box div p:nth-child(1), | |
377 | +.blue-box div p:nth-child(1), | |
378 | +.purple-box div p:nth-child(1), | |
379 | +.ivory-box div p:nth-child(1) { | |
380 | + font-weight: 700; | |
381 | + font-size: 2rem; | |
382 | +} | |
383 | + | |
384 | +.pink-box div p:nth-child(2), | |
385 | +.yellow-box div p:nth-child(2), | |
386 | +.blue-box div p:nth-child(2), | |
387 | +.purple-box div p:nth-child(2), | |
388 | +.ivory-box div p:nth-child(2) { | |
389 | + font-size: 1.5rem; | |
390 | +} | |
391 | + | |
392 | +.pink-box { | |
393 | + background: url(../img/common/box2.png) no-repeat; | |
394 | + width: 228px; | |
395 | + height: 330px; | |
396 | + background-size: 228px 330px; | |
397 | + transform: translateY(-40px); | |
398 | +} | |
399 | + | |
400 | +.pink-box div p:nth-child(1) { | |
401 | + color: #fa665d; | |
402 | + font-weight: 700; | |
403 | + | |
404 | +} | |
405 | + | |
406 | +.pink-box div { | |
407 | + transform: translateY(-40px); | |
408 | +} | |
409 | + | |
410 | +/* .pink-box img { | |
411 | + transform: translateY(-60px); | |
412 | +} */ | |
413 | + | |
414 | +.yellow-box { | |
415 | + background: url(../img/common/box4.png) no-repeat; | |
416 | + width: 353px; | |
417 | + height: 203px; | |
418 | + background-size: 353px 203px; | |
419 | + transform: translateY(-40px); | |
420 | +} | |
421 | + | |
422 | +.yellow-box div p:nth-child(1) { | |
423 | + color: #a2a185; | |
424 | +} | |
425 | + | |
426 | +.yellow-box div { | |
427 | + transform: translateY(-100px); | |
428 | +} | |
429 | + | |
430 | +.yellow-box img { | |
431 | + transform: translateY(-80px); | |
432 | +} | |
433 | + | |
434 | +.blue-box { | |
435 | + background: url(../img/common/box5.png) no-repeat; | |
436 | + width: 280px; | |
437 | + height: 204px; | |
438 | + background-size: 280px 204px; | |
439 | + transform: translateY(-40px); | |
440 | +} | |
441 | + | |
442 | +.blue-box div p:nth-child(1) { | |
443 | + color: #386ea5; | |
444 | +} | |
445 | + | |
446 | +.blue-box div { | |
447 | + transform: translateY(-100px); | |
448 | +} | |
449 | + | |
450 | +.blue-box img { | |
451 | + transform: translateY(-60px); | |
452 | +} | |
453 | + | |
454 | +.purple-box { | |
455 | + background: url(../img/common/box3.png) no-repeat; | |
456 | + width: 343px; | |
457 | + height: 281px; | |
458 | + background-size: 343px 281px; | |
459 | + transform: translateY(-40px); | |
460 | +} | |
461 | + | |
462 | +.purple-box div p:nth-child(1) { | |
463 | + color: #80649b; | |
464 | +} | |
465 | + | |
466 | +.purple-box div { | |
467 | + transform: translateY(-60px); | |
468 | +} | |
469 | + | |
470 | +.purple-box img { | |
471 | + transform: translateY(-50px); | |
472 | +} | |
473 | + | |
474 | +.ivory-box { | |
475 | + background: url(../img/common/box1.png) no-repeat; | |
476 | + width: 305px; | |
477 | + background-size: contain; | |
478 | +} | |
479 | + | |
480 | +.ivory-box div { | |
481 | + transform: translateY(-30px); | |
482 | + | |
483 | +} | |
484 | + | |
485 | +.ivory-box img { | |
486 | + transform: translateY(-40px); | |
487 | +} | |
488 | + | |
489 | +.ivory-box div p:nth-child(1) { | |
490 | + color: #242a30; | |
491 | +} | |
492 | + | |
493 | +.traffic-btn:hover { | |
494 | + transform: scale(1.1); | |
495 | + transition: all 0.5s ease; | |
496 | +} | |
497 | + | |
498 | +.hvr-grow { | |
499 | + display: inline-block; | |
500 | + vertical-align: middle; | |
501 | + /* -webkit-transform: perspective(1px) translateZ(0); */ | |
502 | + /* transform: perspective(1px) translateZ(0); */ | |
503 | + box-shadow: 0 0 1px rgba(0, 0, 0, 0); | |
504 | + -webkit-transition-duration: 0.3s; | |
505 | + transition-duration: 0.3s; | |
506 | + -webkit-transition-property: transform; | |
507 | + transition-property: transform; | |
508 | +} | |
509 | + | |
510 | +.hvr-grow:hover, | |
511 | +.hvr-grow:focus, | |
512 | +.hvr-grow:active { | |
513 | + -webkit-transform: scale(1.1); | |
514 | + transform: scale(1.0); | |
515 | +} | |
516 | + | |
517 | +.focus-in-contract { | |
518 | + -webkit-animation: focus-in-contract 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; | |
519 | + animation: focus-in-contract 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; | |
520 | +} | |
521 | + | |
522 | + | |
523 | +@keyframes focus-in-contract { | |
524 | + 0% { | |
525 | + letter-spacing: 1em; | |
526 | + -webkit-filter: blur(12px); | |
527 | + filter: blur(12px); | |
528 | + opacity: 0; | |
529 | + } | |
530 | + | |
531 | + 100% { | |
532 | + -webkit-filter: blur(0px); | |
533 | + filter: blur(0px); | |
534 | + opacity: 1; | |
535 | + } | |
536 | +} | |
537 | + | |
538 | +@keyframes tracking-in-expand { | |
539 | + 0% { | |
540 | + letter-spacing: -0.5em; | |
541 | + opacity: 0; | |
542 | + } | |
543 | + | |
544 | + 40% { | |
545 | + opacity: 0.6; | |
546 | + } | |
547 | + | |
548 | + 100% { | |
549 | + opacity: 1; | |
550 | + } | |
551 | +} | |
552 | + | |
553 | +@keyframes tracking-in-contract { | |
554 | + 0% { | |
555 | + letter-spacing: 1em; | |
556 | + opacity: 0; | |
557 | + } | |
558 | + | |
559 | + 40% { | |
560 | + opacity: 0.6; | |
561 | + } | |
562 | + | |
563 | + 100% { | |
564 | + letter-spacing: normal; | |
565 | + opacity: 1; | |
566 | + } | |
567 | +} | |
568 | + | |
569 | +.portfolio-zone { | |
570 | + height: 100%; | |
571 | + background-color: #ffffff; | |
572 | +} | |
573 | + | |
574 | +.Portfolio { | |
575 | + padding: 0 20px; | |
576 | + height: 100%; | |
577 | + /* height: 424px; */ | |
578 | +} | |
579 | + | |
580 | + | |
581 | + | |
582 | + | |
583 | +.innerSwiper-text { | |
584 | + font-size: 2rem; | |
585 | +} | |
586 | + | |
587 | + | |
588 | +.innerSwiper .swiper-slide { | |
589 | + text-align: center; | |
590 | + height: 80%; | |
591 | + font-size: 18px; | |
592 | +} | |
593 | + | |
594 | +.innerSwiper .swiper-slide img { | |
595 | + display: block; | |
596 | + width: 100%; | |
597 | + background-color: #F8F9FA; | |
598 | + object-fit: scale-down; | |
599 | + /* padding: 4rem; */ | |
600 | + border-radius: 10px; | |
601 | + box-shadow: 2px 2px 5px #5454541b; | |
602 | + margin-bottom: 40px; | |
603 | +} | |
604 | + | |
605 | +.portfolio-text { | |
606 | + font-size: 6rem; | |
607 | + font-weight: 700; | |
608 | + text-align: left; | |
609 | +} | |
610 | + | |
611 | +.innerSwiper-textBox { | |
612 | + height: 160px; | |
613 | +} | |
614 | + | |
615 | +.innerSwiper-title, | |
616 | +.innerSwiper-text { | |
617 | + | |
618 | + font-family: 'Pretendard'; | |
619 | +} | |
620 | + | |
621 | +.innerSwiper-title { | |
622 | + font-size: 2.7rem; | |
623 | + font-weight: 600; | |
624 | + padding: 0 0 10px 0; | |
625 | +} | |
626 | + | |
627 | + | |
628 | +.map-text { | |
629 | + text-align: center; | |
630 | + font-size: 4rem; | |
631 | + font-weight: 700; | |
632 | + position: relative; | |
633 | +} | |
634 | + | |
635 | +.map-text::after { | |
636 | + content: ""; | |
637 | + position: absolute; | |
638 | + top: -40px; | |
639 | + left: 50%; | |
640 | + transform: translateX(-50%); | |
641 | + background: url(../img/common/address.png) no-repeat; | |
642 | + width: 30px; | |
643 | + height: 30px; | |
644 | + background-size: contain; | |
645 | + | |
646 | +} | |
647 | + | |
648 | +.map-btn button { | |
649 | + border: 1px solid #213F99; | |
650 | + padding: 10px 15px 10px 45px; | |
651 | + border-radius: 30px; | |
652 | + font-size: 2.1rem; | |
653 | + font-family: 'Pretendard'; | |
654 | + color: #213F99; | |
655 | + background: url(../img/common/location-dot-solid.svg) no-repeat 15px center / 15px; | |
656 | + background-color: #FFFFFF; | |
657 | +} | |
658 | + | |
659 | +.map-btn button.on { | |
660 | + background: url(../img/common/location-dot-solid-w.svg) no-repeat 15px center / 15px, #213F99; | |
661 | + color: #FFFFFF; | |
662 | +} | |
663 | + | |
664 | +.address-box { | |
665 | + border: 2px solid #213F99; | |
666 | + box-shadow: 5px 5px 0px #213F99; | |
667 | + transform: translateY(-30px); | |
668 | + position: relative; | |
669 | + background-color: #fff; | |
670 | + width: 90%; | |
671 | + margin: 0 auto; | |
672 | + z-index: 5; | |
673 | + border-radius: 10px; | |
674 | + padding: 12px 30px; | |
675 | +} | |
676 | + | |
677 | +.address-tile { | |
678 | + text-align: left; | |
679 | + font-size: 2.5rem; | |
680 | + font-weight: 600; | |
681 | + color: #213F99; | |
682 | + padding-left: 29px; | |
683 | + width: 150px; | |
684 | + position: relative; | |
685 | +} | |
686 | + | |
687 | +.address-tile::after { | |
688 | + position: absolute; | |
689 | + content: ''; | |
690 | + top: 50%; | |
691 | + left: 4%; | |
692 | + transform: translateY(-50%); | |
693 | + width: 20px; | |
694 | + height: 20px; | |
695 | + | |
696 | + background: url(../img/common/location-dot-solid.svg)no-repeat; | |
697 | +} | |
698 | + | |
699 | +.address-subtitle { | |
700 | + padding: 5px 0; | |
701 | + font-size: 2rem; | |
702 | + font-weight: 500; | |
703 | +} | |
704 | + | |
705 | +.map { | |
706 | + box-shadow: 2px 2px 10px #3333333d; | |
707 | +} | |
708 | + | |
709 | + | |
710 | + | |
711 | + | |
712 | + | |
713 | +footer { | |
714 | + width: 100%; | |
715 | + padding: 40px; | |
716 | + position: relative; | |
717 | + bottom: -10%; | |
718 | + left: 0; | |
719 | + transition: all 0.5s; | |
720 | + background-color: #333; | |
721 | +} | |
722 | + | |
723 | +footer img { | |
724 | + text-align: left !important; | |
725 | + width: 300px !important; | |
726 | + height: 36px; | |
727 | + padding: 0px !important; | |
728 | +} | |
729 | + | |
730 | +#footer p { | |
731 | + font-size: 1.6rem; | |
732 | + text-align: left; | |
733 | +} | |
734 | + | |
735 | +.show-footer { | |
736 | + margin-bottom: 100px; | |
737 | + /* 푸터의 높이에 따라 조정 */ | |
738 | +} | |
739 | + | |
740 | +.footer-wrap { | |
741 | + width: 1200px; | |
742 | + margin: 0 auto; | |
743 | + color: #fff; | |
744 | +} | |
745 | + | |
746 | +.footer-text p { | |
747 | + margin-bottom: 1rem; | |
748 | + width: 50%; | |
749 | + font-size: 1.6rem; | |
750 | +} | |
751 | + | |
752 | +.footer-wrap .info { | |
753 | + flex: 0 0 80%; | |
754 | + display: flex; | |
755 | + align-items: flex-start; | |
756 | +} | |
757 | + | |
758 | +.footer-wrap .info address { | |
759 | + margin-right: 10%; | |
760 | +} | |
761 | + | |
762 | +.footer-wrap .logo { | |
763 | + flex: 0 0 20%; | |
764 | +} | |
765 | + | |
766 | +.copyright { | |
767 | + font-size: 1.6rem; | |
768 | + text-align: center !important; | |
769 | +} | |
770 | + | |
771 | + | |
772 | +/* solution page */ | |
773 | +.solution-title, | |
774 | +.traffic-title, | |
775 | +.ai-title, | |
776 | +.meta-title, | |
777 | +.smart-title { | |
778 | + width: 100%; | |
779 | + /* height: 60px; */ | |
780 | + position: relative; | |
781 | +} | |
782 | + | |
783 | +.solution-title p, | |
784 | +.traffic-title p, | |
785 | +.ai-title p, | |
786 | +.meta-title p, | |
787 | +.smart-title p { | |
788 | + font-size: 4.8rem; | |
789 | + font-weight: bold; | |
790 | + font-family: 'Pretendard'; | |
791 | + | |
792 | + text-align: center; | |
793 | +} | |
794 | +.solution-title img ,.traffic-title img ,.ai-title img,.meta-title img,.smart-title img{ | |
795 | + width: 100%; | |
796 | + object-fit: contain; | |
797 | + height: 30px; | |
798 | + text-align: center; | |
799 | +} | |
800 | +/* .solution-title::after { | |
801 | + content: ''; | |
802 | + position: absolute; | |
803 | + top: -40px; | |
804 | + left: 50%; | |
805 | + transform: translateX(-50%); | |
806 | + | |
807 | + background: url(../img/common/solution-after-img-1.png) no-repeat; | |
808 | + background-size: 30px; | |
809 | + width: 30px; | |
810 | + height: 30px; | |
811 | +} */ | |
812 | + | |
813 | +/* .traffic-title::after { | |
814 | + content: ''; | |
815 | + position: absolute; | |
816 | + top: -40px; | |
817 | + left: 50%; | |
818 | + transform: translateX(-50%); | |
819 | + | |
820 | + background: url(../img/common/traffic-icon.png) no-repeat; | |
821 | + background-size: 30px; | |
822 | + width: 30px; | |
823 | + height: 30px; | |
824 | +} | |
825 | + | |
826 | +.ai-title::after { | |
827 | + content: ''; | |
828 | + position: absolute; | |
829 | + top: -40px; | |
830 | + left: 50%; | |
831 | + transform: translateX(-50%); | |
832 | + background: url(../img/common/ai-icon.png) no-repeat; | |
833 | + background-size: 30px; | |
834 | + width: 30px; | |
835 | + height: 30px; | |
836 | +} | |
837 | + | |
838 | +.meta-title::after { | |
839 | + content: ''; | |
840 | + position: absolute; | |
841 | + top: -40px; | |
842 | + left: 50%; | |
843 | + transform: translateX(-50%); | |
844 | + background: url(../img/common/meta-icon.png) no-repeat; | |
845 | + background-size: 30px; | |
846 | + width: 30px; | |
847 | + height: 30px; | |
848 | +} | |
849 | + | |
850 | +.smart-title::after { | |
851 | + content: ''; | |
852 | + position: absolute; | |
853 | + top: -40px; | |
854 | + left: 50%; | |
855 | + transform: translateX(-50%); | |
856 | + background: url(../img/common/smart-icon.png) no-repeat; | |
857 | + background-size: 30px; | |
858 | + width: 30px; | |
859 | + height: 30px; | |
860 | +} */ | |
861 | + | |
862 | +.taken-area { | |
863 | + width: 100%; | |
864 | + height: 100%; | |
865 | +} | |
866 | + | |
867 | +.text-after p { | |
868 | + position: relative; | |
869 | + line-height: 1.5; | |
870 | +} | |
871 | + | |
872 | +.text-after p::after { | |
873 | + content: '·'; | |
874 | + position: absolute; | |
875 | + top: -5px; | |
876 | + left: 6px; | |
877 | + font-size: 2rem; | |
878 | +} | |
879 | + | |
880 | +.taken-conteiner p { | |
881 | + text-align: left; | |
882 | + font-family: 'Pretendard'; | |
883 | +} | |
884 | + | |
885 | + | |
886 | +.text-after p { | |
887 | + font-size: 1.8rem; | |
888 | + font-weight: 600; | |
889 | + padding-left: 20px; | |
890 | + margin-top: 1rem; | |
891 | +} | |
892 | + | |
893 | +.taken-box { | |
894 | + width: 100%; | |
895 | + flex-wrap: nowrap; | |
896 | + gap: 30px; | |
897 | +} | |
898 | + | |
899 | +.text-after span { | |
900 | + font-weight: 900; | |
901 | +} | |
902 | + | |
903 | +.taken-box p { | |
904 | + width: 100%; | |
905 | + font-family: 'Pretendard'; | |
906 | + background-color: #F8F9FA; | |
907 | + padding: 14px; | |
908 | + text-align: center; | |
909 | + font-size: 2rem; | |
910 | + border-radius: 10px; | |
911 | + font-weight: 600; | |
912 | + z-index: 2; | |
913 | +} | |
914 | + | |
915 | + | |
916 | + | |
917 | +.solution-text-box { | |
918 | + width: 100%; | |
919 | + padding: 15px 18px; | |
920 | + border-radius: 10px; | |
921 | + background-color: #fff; | |
922 | + box-shadow: 2px 2px 5px #3e3e3e30; | |
923 | +} | |
924 | + | |
925 | +.solution-text-box p { | |
926 | + font-weight: 500; | |
927 | + margin-top: 1rem; | |
928 | + font-size: 1.6rem; | |
929 | + position: relative; | |
930 | +} | |
931 | + | |
932 | +.solution-deco p { | |
933 | + margin-left: 45px; | |
934 | + | |
935 | +} | |
936 | + | |
937 | +.solution-deco-sub p { | |
938 | + position: relative; | |
939 | + padding-left: 15px; | |
940 | +} | |
941 | + | |
942 | +.solution-deco-sub p::after { | |
943 | + content: '-'; | |
944 | + position: absolute; | |
945 | + top: 0%; | |
946 | + left: -1%; | |
947 | +} | |
948 | + | |
949 | +.solution-deco p::after { | |
950 | + content: '-'; | |
951 | + position: absolute; | |
952 | + top: 0%; | |
953 | + left: -4%; | |
954 | +} | |
955 | + | |
956 | +.text-box p { | |
957 | + font-size: 1.6rem; | |
958 | + margin-bottom: 1.7rem; | |
959 | + text-align: left; | |
960 | + padding: 0 10px; | |
961 | + /* word-break: -all; */ | |
962 | +} | |
963 | + | |
964 | +.box-wrap-title { | |
965 | + font-size: 2.4rem !important; | |
966 | + font-weight: 600; | |
967 | + text-align: center !important; | |
968 | + font-family: 'Pretendard'; | |
969 | + | |
970 | +} | |
971 | + | |
972 | +.visuali-text p { | |
973 | + font-size: 2.1rem; | |
974 | + word-break: keep-all; | |
975 | + font-weight: 500; | |
976 | + font-family: 'Pretendard'; | |
977 | + | |
978 | +} | |
979 | + | |
980 | +.text-box-title { | |
981 | + font-family: 'Pretendard'; | |
982 | + position: relative; | |
983 | + font-weight: 600; | |
984 | + font-size: 2.4rem; | |
985 | + text-align: left; | |
986 | + margin-left: 30px; | |
987 | +} | |
988 | + | |
989 | +.text-box-title::after { | |
990 | + position: absolute; | |
991 | + content: '■'; | |
992 | + top: -1px; | |
993 | + left: -27px; | |
994 | + font-weight: 600; | |
995 | + font-size: 2.4rem; | |
996 | + color: #333; | |
997 | + | |
998 | +} | |
999 | + | |
1000 | + | |
1001 | +.traffic-button { | |
1002 | + width: 100%; | |
1003 | + padding-bottom: 4rem; | |
1004 | +} | |
1005 | + | |
1006 | +.traffic-button button { | |
1007 | + padding: 13px 50px; | |
1008 | + /* width: 182px; */ | |
1009 | + background-color: #242A30; | |
1010 | + color: #fff; | |
1011 | + border-radius: 50px; | |
1012 | + font-weight: 600; | |
1013 | + font-size: 1.8rem; | |
1014 | + font-family: 'Pretendard'; | |
1015 | + position: relative; | |
1016 | + | |
1017 | + | |
1018 | +} | |
1019 | + | |
1020 | +.traffic-button button::after { | |
1021 | + content: ''; | |
1022 | + position: absolute; | |
1023 | + background: url(../img/common/solution-button01.png) no-repeat; | |
1024 | + width: 20px; | |
1025 | + height: 20px; | |
1026 | + top: 60%; | |
1027 | + left: 12%; | |
1028 | + transform: translateY(-50%); | |
1029 | + background-size: 20px; | |
1030 | +} | |
1031 | + | |
1032 | +.traffic-button button::before { | |
1033 | + content: ''; | |
1034 | + position: absolute; | |
1035 | + background: url(../img/common/solution-button.png) no-repeat; | |
1036 | + width: 20px; | |
1037 | + height: 20px; | |
1038 | + top: 50%; | |
1039 | + right: 10%; | |
1040 | + transform: translateY(-50%); | |
1041 | + | |
1042 | + background-size: 20px; | |
1043 | +} | |
1044 | + | |
1045 | +.traffic-area img { | |
1046 | + width: 100%; | |
1047 | + background-size: cover; | |
1048 | +} | |
1049 | + | |
1050 | +/* 마케팅 */ | |
1051 | +.marketing-wrapper { | |
1052 | + background: url(../img/common/marketing-bg.png)no-repeat; | |
1053 | + width: 100%; | |
1054 | + background-size: 100%; | |
1055 | + background-position: top; | |
1056 | + | |
1057 | + | |
1058 | + | |
1059 | +} | |
1060 | + | |
1061 | +.marketing-wrap-title { | |
1062 | + padding-top: 170px; | |
1063 | + text-align: center; | |
1064 | + | |
1065 | +} | |
1066 | + | |
1067 | + | |
1068 | +.marketing-wrap-title h1 { | |
1069 | + font-size: 5rem; | |
1070 | + font-weight: 700; | |
1071 | + font-family: 'Pretendard'; | |
1072 | + position: relative; | |
1073 | +} | |
1074 | + | |
1075 | +.marketing-wrap-title h1::after { | |
1076 | + position: absolute; | |
1077 | + content: ''; | |
1078 | + top: -35px; | |
1079 | + left: 50%; | |
1080 | + background: url(../img/common/marketing-icon.png) no-repeat; | |
1081 | + background-size: 40px; | |
1082 | + width: 40px; | |
1083 | + height: 40px; | |
1084 | +} | |
1085 | + | |
1086 | +.meta-wrap { | |
1087 | + position: relative; | |
1088 | + width: 100%; | |
1089 | + height: 100%; | |
1090 | +} | |
1091 | + | |
1092 | +.meta-wrap::before { | |
1093 | + content: ''; | |
1094 | + position: absolute; | |
1095 | + bottom: 0px; | |
1096 | + right: 0%; | |
1097 | + background: url(../img/common/meta-img02.png)no-repeat; | |
1098 | + background-size: cover; | |
1099 | + width: 30%; | |
1100 | + height: 70%; | |
1101 | +} | |
1102 | + | |
1103 | +.marketing-wrapper { | |
1104 | + width: 100%; | |
1105 | +} | |
1106 | + | |
1107 | +.marketing-area { | |
1108 | + width: 1200px; | |
1109 | + margin: 0 auto; | |
1110 | + display: grid; | |
1111 | + gap: 30px; | |
1112 | + grid-template-columns: 1fr 1fr; | |
1113 | +} | |
1114 | + | |
1115 | +.marketing-area img { | |
1116 | + width: 100%; | |
1117 | + margin-bottom: 25px; | |
1118 | + border-radius: 20px; | |
1119 | +} | |
1120 | + | |
1121 | +.marketing-area p { | |
1122 | + margin-bottom: 17px; | |
1123 | + font-weight: 600; | |
1124 | + font-size: 1.6rem; | |
1125 | +} | |
1126 | + | |
1127 | +.marketing-area p span { | |
1128 | + font-size: 1.5rem; | |
1129 | + font-weight: 600; | |
1130 | + color: #213F99; | |
1131 | +} | |
1132 | + | |
1133 | +.marketing-title { | |
1134 | + font-size: 2.4rem !important; | |
1135 | + font-weight: 800 !important; | |
1136 | + margin-bottom: 20px !important; | |
1137 | + font-family: 'Pretendard'; | |
1138 | + | |
1139 | +} | |
1140 | + | |
1141 | +.marketing-date { | |
1142 | + font-size: 1.6rem; | |
1143 | + font-weight: 400 !important; | |
1144 | + text-align: right; | |
1145 | +} | |
1146 | + | |
1147 | +/* about us */ | |
1148 | +.about-wrap { | |
1149 | + | |
1150 | + padding: 0 70px; | |
1151 | +} | |
1152 | + | |
1153 | +.about-wrapper { | |
1154 | + width: 100%; | |
1155 | + height: 100%; | |
1156 | + background: linear-gradient(#fff, #fff, #d7e2ff); | |
1157 | + | |
1158 | +} | |
1159 | + | |
1160 | +.about-title-sub { | |
1161 | + font-size: 2.4rem; | |
1162 | +} | |
1163 | + | |
1164 | +.about-title p:nth-child(1) { | |
1165 | + font-size: 6rem; | |
1166 | + font-weight: bold; | |
1167 | + font-family: 'Pretendard'; | |
1168 | + text-align: center; | |
1169 | +} | |
1170 | + | |
1171 | +.about-radius, | |
1172 | +.about-radius-bottom, | |
1173 | +.about-radius-right, | |
1174 | +.about-radius-left, | |
1175 | +.about-radius-bottom-left, | |
1176 | +.about-radius-bottom-right { | |
1177 | + border: 2px solid #213F99; | |
1178 | + width: 150px; | |
1179 | + height: 150px; | |
1180 | + border-radius: 50%; | |
1181 | + padding: 40px 20px; | |
1182 | + position: relative; | |
1183 | + | |
1184 | + | |
1185 | +} | |
1186 | + | |
1187 | + | |
1188 | +.about-radius::after { | |
1189 | + content: ''; | |
1190 | + position: absolute; | |
1191 | + background: url(../img/common/about-img.png) no-repeat; | |
1192 | + width: 267px; | |
1193 | + height: 267px; | |
1194 | + background-size: contain; | |
1195 | + top: -60px; | |
1196 | + left: -60px; | |
1197 | + -webkit-animation: swirl-in-fwd 0.6s ease-out both; | |
1198 | + animation: swirl-in-fwd 0.6s ease-out both; | |
1199 | + animation-delay: 0.2s; | |
1200 | +} | |
1201 | + | |
1202 | +.about-radius-left::after { | |
1203 | + content: ''; | |
1204 | + position: absolute; | |
1205 | + background: url(../img/common/about-img.png) no-repeat; | |
1206 | + width: 267px; | |
1207 | + height: 267px; | |
1208 | + background-size: contain; | |
1209 | + transform: rotate(-3deg); | |
1210 | + top: -60px; | |
1211 | + left: -60px; | |
1212 | + -webkit-animation: swirl-in-fwd 0.6s ease-out both; | |
1213 | + animation: swirl-in-fwd 0.6s ease-out both; | |
1214 | + | |
1215 | + | |
1216 | +} | |
1217 | + | |
1218 | +.about-radius-right::after { | |
1219 | + content: ''; | |
1220 | + position: absolute; | |
1221 | + background: url(../img/common/about-img.png) no-repeat; | |
1222 | + width: 267px; | |
1223 | + height: 267px; | |
1224 | + background-size: contain; | |
1225 | + transform: rotate(5deg); | |
1226 | + top: -60px; | |
1227 | + left: -60px; | |
1228 | + -webkit-animation: swirl-in-fwd 0.6s ease-out both; | |
1229 | + animation: swirl-in-fwd 0.6s ease-out both; | |
1230 | + animation-delay: 0.4s; | |
1231 | +} | |
1232 | + | |
1233 | +.about-radius-bottom-left::after { | |
1234 | + content: ''; | |
1235 | + position: absolute; | |
1236 | + background: url(../img/common/about-img02.png) no-repeat; | |
1237 | + width: 267px; | |
1238 | + height: 267px; | |
1239 | + background-size: contain; | |
1240 | + transform: rotate(4deg); | |
1241 | + top: -30px; | |
1242 | + left: -60px; | |
1243 | + -webkit-animation: swirl-in-fwd 0.6s ease-out both; | |
1244 | + animation: swill-in-fwd 0.6s ease-out both; | |
1245 | + animation-delay: 0.6s; | |
1246 | +} | |
1247 | + | |
1248 | +.about-radius-bottom-right::after { | |
1249 | + content: ''; | |
1250 | + position: absolute; | |
1251 | + background: url(../img/common/about-img02.png) no-repeat; | |
1252 | + width: 267px; | |
1253 | + height: 267px; | |
1254 | + background-size: contain; | |
1255 | + top: -30px; | |
1256 | + transform: rotate(4deg); | |
1257 | + left: -60px; | |
1258 | + -webkit-animation: swirl-in-fwd 0.6s ease-out both; | |
1259 | + animation: swill-in-fwd 0.6s ease-out both; | |
1260 | + animation-delay: 0.8s; | |
1261 | +} | |
1262 | + | |
1263 | +.about-sub-text { | |
1264 | + word-break: keep-all; | |
1265 | + font-size: 1.5rem; | |
1266 | +} | |
1267 | + | |
1268 | +.about-text { | |
1269 | + text-align: center; | |
1270 | + color: #213F99; | |
1271 | + font-weight: 600; | |
1272 | + font-size: 2rem; | |
1273 | + margin-bottom: 0.5rem; | |
1274 | +} | |
1275 | + | |
1276 | + | |
1277 | +.swirl-in-fwd { | |
1278 | + -webkit-animation: swirl-in-fwd 0.6s ease-out both; | |
1279 | + animation: swirl-in-fwd 0.6s ease-out both; | |
1280 | +} | |
1281 | + | |
1282 | +.swill-in-fwd { | |
1283 | + -webkit-animation: swill-in-fwd 0.6s ease-out both; | |
1284 | + animation: swill-in-fwd 0.6s ease-out both; | |
1285 | +} | |
1286 | + | |
1287 | +@keyframes swirl-in-fwd { | |
1288 | + 0% { | |
1289 | + -webkit-transform: rotate(-540deg) scale(0); | |
1290 | + transform: rotate(-540deg) scale(0); | |
1291 | + opacity: 0; | |
1292 | + } | |
1293 | + | |
1294 | + 100% { | |
1295 | + -webkit-transform: rotate(0) scale(1); | |
1296 | + transform: rotate(0) scale(1); | |
1297 | + opacity: 1; | |
1298 | + } | |
1299 | +} | |
1300 | + | |
1301 | +@keyframes swill-in-fwd { | |
1302 | + 0% { | |
1303 | + -webkit-transform: rotate(800deg) scale(0); | |
1304 | + transform: rotate(800deg) scale(0); | |
1305 | + opacity: 0; | |
1306 | + } | |
1307 | + | |
1308 | + 100% { | |
1309 | + -webkit-transform: rotate(0) scale(1); | |
1310 | + transform: rotate(0) scale(1); | |
1311 | + opacity: 1; | |
1312 | + } | |
1313 | +} | |
1314 | + | |
1315 | +.accordion-text p { | |
1316 | + font-size: 1.5rem !important; | |
1317 | + position: relative; | |
1318 | + padding-left: 10px; | |
1319 | + | |
1320 | +} | |
1321 | + | |
1322 | +.accordion-text p::after { | |
1323 | + position: absolute; | |
1324 | + top: 0; | |
1325 | + left: 0px; | |
1326 | + content: '·'; | |
1327 | + | |
1328 | +} | |
1329 | + | |
1330 | +.slideTextDtail-box p { | |
1331 | + position: relative; | |
1332 | + padding-left: 10px; | |
1333 | +} | |
1334 | + | |
1335 | +.slideTextDtail-box p::after { | |
1336 | + position: absolute; | |
1337 | + top: 0; | |
1338 | + left: 0px; | |
1339 | + content: '·'; | |
1340 | + | |
1341 | +} | |
1342 | + | |
1343 | +.gradient-back .box-area { | |
1344 | + text-shadow: 2px 2px 2px #242a303a; | |
1345 | +} | |
1346 | + | |
1347 | +.accordion { | |
1348 | + height: 100%; | |
1349 | + padding: 1rem 4rem; | |
1350 | + cursor: pointer; | |
1351 | + flex: 1; | |
1352 | + justify-content: space-between; | |
1353 | + background-size: cover; | |
1354 | + background-position: center; | |
1355 | + background-repeat: no-repeat; | |
1356 | + position: relative; | |
1357 | + transition: all 0.3s ease-in-out; | |
1358 | + z-index: 1; | |
1359 | +} | |
1360 | + | |
1361 | +.accordion1 { | |
1362 | + background: url(../img/common/about-change-img01.png) no-repeat; | |
1363 | + height: 100%; | |
1364 | + width: 100%; | |
1365 | + background-size: cover; | |
1366 | + border-top-left-radius: 20px; | |
1367 | + border-bottom-left-radius: 20px; | |
1368 | +} | |
1369 | + | |
1370 | +.accordion2 { | |
1371 | + background: url(../img/common/about-change-img02.png) no-repeat; | |
1372 | + height: 100%; | |
1373 | + width: 100%; | |
1374 | + background-size: cover; | |
1375 | + | |
1376 | +} | |
1377 | + | |
1378 | +.accordion3 { | |
1379 | + background: url(../img/common/about-change-img03.png) no-repeat; | |
1380 | + height: 100%; | |
1381 | + width: 100%; | |
1382 | + background-size: cover; | |
1383 | + border-top-right-radius: 20px; | |
1384 | + border-bottom-right-radius: 20px; | |
1385 | + | |
1386 | + | |
1387 | + | |
1388 | +} | |
1389 | + | |
1390 | +.slideText p:first-child { | |
1391 | + font-size: 3rem; | |
1392 | + font-family: "GmarketSansBold"; | |
1393 | + font-weight: bold; | |
1394 | + font-style: normal; | |
1395 | + z-index: 5; | |
1396 | + color: #fff; | |
1397 | + text-align: left; | |
1398 | +} | |
1399 | + | |
1400 | +.slideText p:first-child span { | |
1401 | + color: #ffffff64; | |
1402 | +} | |
1403 | + | |
1404 | +.slideText p:first-child, | |
1405 | +.slideText p:last-child { | |
1406 | + text-align: left; | |
1407 | + color: #fff; | |
1408 | +} | |
1409 | + | |
1410 | + | |
1411 | +.slideTextDtail { | |
1412 | + text-align: left; | |
1413 | + height: calc(100% - 247px); | |
1414 | + | |
1415 | +} | |
1416 | + | |
1417 | +.slideText p:last-child, | |
1418 | +.slideTextDtail p { | |
1419 | + margin-bottom: 1rem; | |
1420 | + opacity: 0; | |
1421 | + color: #333; | |
1422 | +} | |
1423 | + | |
1424 | +.slideText p:last-child { | |
1425 | + font-size: 2.1rem; | |
1426 | + | |
1427 | +} | |
1428 | + | |
1429 | +.slideTextDtail p { | |
1430 | + font-size: 1.8rem; | |
1431 | +} | |
1432 | + | |
1433 | + | |
1434 | +.slideImg { | |
1435 | + margin-bottom: 10px; | |
1436 | + width: 100%; | |
1437 | + opacity: 0; | |
1438 | + height: calc(100% - 224px); | |
1439 | +} | |
1440 | + | |
1441 | +.slideImg img { | |
1442 | + border-radius: 1rem; | |
1443 | + width: 100%; | |
1444 | + height: 100%; | |
1445 | + /* object-fit: cover; */ | |
1446 | +} | |
1447 | + | |
1448 | +.accordion1.active { | |
1449 | + width: 100%; | |
1450 | + height: 100%; | |
1451 | + background: url(../img/common/about-img-db.png)no-repeat; | |
1452 | + background-size: cover; | |
1453 | + position: relative; | |
1454 | +} | |
1455 | + | |
1456 | +.accordion1::after { | |
1457 | + content: '01'; | |
1458 | + position: absolute; | |
1459 | + top: 22px; | |
1460 | + left: 25px; | |
1461 | + font-size: 3.6rem; | |
1462 | + width: 30px; | |
1463 | + color: rgba(255, 255, 255, 0.637); | |
1464 | + font-size: 3.6rem; | |
1465 | + font-family: 'MontserratBolde'; | |
1466 | + font-weight: bold; | |
1467 | +} | |
1468 | + | |
1469 | +.accordion1::before { | |
1470 | + content: 'AI Solution'; | |
1471 | + position: absolute; | |
1472 | + top: 65px; | |
1473 | + left: 25px; | |
1474 | + /* padding: 1rem ; */ | |
1475 | + font-size: 3.6rem; | |
1476 | + width: 100px; | |
1477 | + text-align: left; | |
1478 | + height: 100px; | |
1479 | + color: #ffffff; | |
1480 | + font-size: 3.6rem; | |
1481 | + font-family: 'MontserratBolde'; | |
1482 | + font-weight: bold; | |
1483 | +} | |
1484 | + | |
1485 | +.accordion1.active::after, | |
1486 | +.accordion1.active::before, | |
1487 | +.accordion2.active::after, | |
1488 | +.accordion2.active::before, | |
1489 | +.accordion3.active::after, | |
1490 | +.accordion3.active::before { | |
1491 | + display: none; | |
1492 | +} | |
1493 | + | |
1494 | +.accordion2.active { | |
1495 | + width: 100%; | |
1496 | + height: 100%; | |
1497 | + background: url(../img/common/about-img-bg02.png)no-repeat; | |
1498 | + background-size: cover; | |
1499 | + position: relative; | |
1500 | + | |
1501 | +} | |
1502 | + | |
1503 | +.accordion2::after { | |
1504 | + content: '02'; | |
1505 | + position: absolute; | |
1506 | + top: 22px; | |
1507 | + left: 25px; | |
1508 | + font-size: 3.6rem; | |
1509 | + width: 30px; | |
1510 | + color: rgba(255, 255, 255, 0.637); | |
1511 | + font-size: 3.6rem; | |
1512 | + font-family: 'MontserratBolde'; | |
1513 | + font-weight: bold; | |
1514 | +} | |
1515 | + | |
1516 | +.accordion2::before { | |
1517 | + content: 'System Design'; | |
1518 | + position: absolute; | |
1519 | + top: 65px; | |
1520 | + left: 25px; | |
1521 | + /* padding: 1rem ; */ | |
1522 | + font-size: 3.6rem; | |
1523 | + width: 100px; | |
1524 | + text-align: left; | |
1525 | + height: 100px; | |
1526 | + color: #ffffff; | |
1527 | + font-size: 3.6rem; | |
1528 | + font-family: 'MontserratBolde'; | |
1529 | + font-weight: bold; | |
1530 | +} | |
1531 | + | |
1532 | +.accordion3.active { | |
1533 | + width: 100%; | |
1534 | + height: 100%; | |
1535 | + background: url(../img/common/about-img-bg03.png)no-repeat; | |
1536 | + background-size: cover; | |
1537 | + position: relative; | |
1538 | + | |
1539 | +} | |
1540 | + | |
1541 | +.accordion3::after { | |
1542 | + content: '03'; | |
1543 | + position: absolute; | |
1544 | + top: 22px; | |
1545 | + left: 25px; | |
1546 | + font-size: 3.6rem; | |
1547 | + width: 30px; | |
1548 | + color: rgba(255, 255, 255, 0.637); | |
1549 | + font-size: 3.6rem; | |
1550 | + font-family: 'MontserratBolde'; | |
1551 | + font-weight: bold; | |
1552 | +} | |
1553 | + | |
1554 | +.accordion3::before { | |
1555 | + content: 'Data Science'; | |
1556 | + position: absolute; | |
1557 | + top: 65px; | |
1558 | + left: 25px; | |
1559 | + /* padding: 1rem ; */ | |
1560 | + font-size: 3.6rem; | |
1561 | + width: 100px; | |
1562 | + text-align: left; | |
1563 | + height: 100px; | |
1564 | + color: #ffffff; | |
1565 | + font-size: 3.6rem; | |
1566 | + font-family: 'MontserratBolde'; | |
1567 | + font-weight: bold; | |
1568 | +} | |
1569 | + | |
1570 | +.accordion.active { | |
1571 | + flex: 3; | |
1572 | + | |
1573 | +} | |
1574 | + | |
1575 | +.accordion.active .slideText { | |
1576 | + opacity: 1; | |
1577 | +} | |
1578 | + | |
1579 | +.accordion .slideText { | |
1580 | + opacity: 0; | |
1581 | +} | |
1582 | + | |
1583 | +.accordion.active .slideImg { | |
1584 | + opacity: 1; | |
1585 | + object-fit: contain; | |
1586 | + | |
1587 | +} | |
1588 | + | |
1589 | + | |
1590 | +.slideTextDtail.active p:first-child span { | |
1591 | + /* color: #b1a1c3; */ | |
1592 | + z-index: 1; | |
1593 | +} | |
1594 | + | |
1595 | +.accordion.active .accordion-num { | |
1596 | + color: #80649b; | |
1597 | + font-size: 3.6rem; | |
1598 | + font-family: 'MontserratBolde'; | |
1599 | + | |
1600 | + font-weight: bold; | |
1601 | + | |
1602 | +} | |
1603 | + | |
1604 | +.accordion.active .accordion-num-red { | |
1605 | + color: #FA665D; | |
1606 | + font-size: 3rem; | |
1607 | + font-weight: 700; | |
1608 | +} | |
1609 | + | |
1610 | +.accordion.active .accordion-num-red span { | |
1611 | + color: #FCB0AE !important; | |
1612 | +} | |
1613 | + | |
1614 | +.accordion.active .accordion-num span { | |
1615 | + color: #b1a1c3; | |
1616 | + font-size: 3.6rem; | |
1617 | + font-weight: bold; | |
1618 | + font-family: 'MontserratBolde'; | |
1619 | +} | |
1620 | + | |
1621 | +.accordion.active p, | |
1622 | +.slideTextDtail.active p { | |
1623 | + opacity: 1; | |
1624 | + color: #333; | |
1625 | + /* transition: opacity 0.3s ease-in 0.4s; */ | |
1626 | +} | |
1627 | + | |
1628 | +.accordion-sub-text { | |
1629 | + color: #80649b !important; | |
1630 | +} | |
1631 | + | |
1632 | +.accordion-sub-red { | |
1633 | + color: #FA665D !important; | |
1634 | +} | |
1635 | + | |
1636 | +.accordion-box p { | |
1637 | + width: 50%; | |
1638 | +} | |
1639 | + | |
1640 | +.about-vision-box { | |
1641 | + width: 100%; | |
1642 | + gap: 30px; | |
1643 | + flex-wrap: nowrap; | |
1644 | +} | |
1645 | + | |
1646 | +.about-vision-box img { | |
1647 | + width: 30%; | |
1648 | + object-fit: contain !important; | |
1649 | + | |
1650 | +} | |
1651 | + | |
1652 | + | |
1653 | +.history-wrap { | |
1654 | + width: 100%; | |
1655 | + height: 100%; | |
1656 | +} | |
1657 | + | |
1658 | +.timeline { | |
1659 | + width: 100%; | |
1660 | + height: 100%; | |
1661 | + height: calc(100% - 123px); | |
1662 | +} | |
1663 | + | |
1664 | +.contents { | |
1665 | + height: 100%; | |
1666 | + overflow-y: auto; | |
1667 | +} | |
1668 | + | |
1669 | +.month { | |
1670 | + width: 65px; | |
1671 | + font-size: 2rem; | |
1672 | + font-weight: 700; | |
1673 | + text-align: right !important; | |
1674 | + color: #213F99; | |
1675 | +} | |
1676 | + | |
1677 | +.year { | |
1678 | + width: 220px; | |
1679 | + color: #D6DEF6; | |
1680 | + font-weight: 900; | |
1681 | + font-size: 2.5rem; | |
1682 | + transition: all 0.2s ease; | |
1683 | + padding: 2rem 0; | |
1684 | +} | |
1685 | + | |
1686 | +.year span { | |
1687 | + font-size: 2.4rem; | |
1688 | + font-weight: 900; | |
1689 | + | |
1690 | +} | |
1691 | + | |
1692 | +.traffic-img-box { | |
1693 | + width: 100%; | |
1694 | +} | |
1695 | + | |
1696 | +.active-year { | |
1697 | + font-size: 7rem; | |
1698 | + font-weight: 900; | |
1699 | + color: #213F99; | |
1700 | + /* 색상은 원하는 대로 변경하세요 */ | |
1701 | +} | |
1702 | + | |
1703 | +.month-text p { | |
1704 | + margin-bottom: 1rem; | |
1705 | +} | |
1706 | + | |
1707 | + | |
1708 | +.month-text img { | |
1709 | + border: 1px solid #b1b1b1; | |
1710 | + padding: 5px; | |
1711 | + width: 120px; | |
1712 | + margin-right: 1rem; | |
1713 | + margin-bottom: 1rem; | |
1714 | +} | |
1715 | + | |
1716 | + | |
1717 | + | |
1718 | +.active-year { | |
1719 | + color: #213F99; | |
1720 | + font-weight: 900; | |
1721 | + cursor: default; | |
1722 | +} | |
1723 | + | |
1724 | +/* portpoilo */ | |
1725 | + | |
1726 | +.customized-wrap-title, | |
1727 | +.etc-wrap-title { | |
1728 | + width: 100%; | |
1729 | + /* height: 60px; */ | |
1730 | +} | |
1731 | + | |
1732 | +.customized-wrap-title h1 { | |
1733 | + font-size: 4rem; | |
1734 | + | |
1735 | +} | |
1736 | + | |
1737 | +.customized-wrap-title p { | |
1738 | + font-size: 1.5rem; | |
1739 | + | |
1740 | +} | |
1741 | + | |
1742 | +.customized-box p { | |
1743 | + font-size: 1.5rem; | |
1744 | + font-family: 'Pretendard'; | |
1745 | + font-weight: 600; | |
1746 | +} | |
1747 | + | |
1748 | +.etc-wrap-title h1 { | |
1749 | + font-size: 6rem; | |
1750 | +} | |
1751 | + | |
1752 | +.etc-box { | |
1753 | + width: 49%; | |
1754 | +} | |
1755 | + | |
1756 | +.etc-box img { | |
1757 | + width: 100%; | |
1758 | + object-fit: contain; | |
1759 | +} | |
1760 | + | |
1761 | +.etc-box-title { | |
1762 | + font-weight: 700; | |
1763 | + text-align: center !important; | |
1764 | + font-size: 2.4rem !important; | |
1765 | +} | |
1766 | + | |
1767 | +.etc-box p { | |
1768 | + text-align: left; | |
1769 | +} | |
1770 | + | |
1771 | +.swiper-slide { | |
1772 | + -webkit-backface-visibility: hidden; | |
1773 | + -webkit-transform: translate3d(0, 0, 0); | |
1774 | +} | |
1775 | + | |
1776 | + | |
1777 | + | |
1778 | +.etc-box p { | |
1779 | + font-size: 1.6rem; | |
1780 | + line-height: 1.5; | |
1781 | +} | |
1782 | + | |
1783 | +#contentDaeguBranch { | |
1784 | + width: 100%; | |
1785 | + height: 350px; | |
1786 | +} | |
1787 | + | |
1788 | +.wrap_controllers { | |
1789 | + display: none; | |
1790 | +} | |
1791 | + | |
1792 | +.video-wrap, | |
1793 | +.di { | |
1794 | + width: 100%; | |
1795 | + height: 100%; | |
1796 | + position: absolute; | |
1797 | + top: 0; | |
1798 | + left: 0; | |
1799 | + z-index: 1111; | |
1800 | + background-color: #242a305e; | |
1801 | +} | |
1802 | + | |
1803 | +.mobil-swiper { | |
1804 | + display: none; | |
1805 | +} | |
1806 | + | |
1807 | +.traffic-video { | |
1808 | + position: absolute; | |
1809 | + top: 50%; | |
1810 | + transform: translate(-50%, -50%); | |
1811 | + left: 50%; | |
1812 | + z-index: 111; | |
1813 | + width: 50%; | |
1814 | + /* height: 600px; */ | |
1815 | + padding: 3rem; | |
1816 | + background-color: #FFFFFF; | |
1817 | + box-shadow: 5px 5px 10px #242a3044; | |
1818 | + border-radius: 20px; | |
1819 | +} | |
1820 | + | |
1821 | +.traffic-video video { | |
1822 | + width: 100%; | |
1823 | + height: 100%; | |
1824 | + border-radius: 10px; | |
1825 | + | |
1826 | +} | |
1827 | + | |
1828 | +.traffic-video p { | |
1829 | + font-size: 3rem; | |
1830 | + color: #213F99; | |
1831 | + font-weight: 600; | |
1832 | +} | |
1833 | + | |
1834 | +.close-btn { | |
1835 | + cursor: pointer; | |
1836 | +} | |
1837 | + | |
1838 | +.etc-wrap-title p { | |
1839 | + font-size: 1.9rem; | |
1840 | +} | |
1841 | + | |
1842 | +.analysis-text img { | |
1843 | + height: 80%; | |
1844 | +} | |
1845 | + | |
1846 | +.analysis-text p { | |
1847 | + height: 50px; | |
1848 | + font-size: 2rem; | |
1849 | + padding: 0 10px; | |
1850 | + word-break: keep-all; | |
1851 | + font-weight: 500; | |
1852 | +} | |
1853 | + | |
1854 | +.etc-text-deco p { | |
1855 | + position: relative; | |
1856 | + margin-left: 5px; | |
1857 | +} | |
1858 | + | |
1859 | +.etc-text-deco p::after { | |
1860 | + content: '-'; | |
1861 | + position: absolute; | |
1862 | + top: 0; | |
1863 | + left: -1%; | |
1864 | + | |
1865 | +} | |
1866 | + | |
1867 | +.month-text { | |
1868 | + width: 80%; | |
1869 | +} | |
1870 | + | |
1871 | +.month-text p { | |
1872 | + /* width: 80%; */ | |
1873 | + margin-left: 10px; | |
1874 | + position: relative; | |
1875 | +} | |
1876 | + | |
1877 | +.month-text p::after { | |
1878 | + content: '·'; | |
1879 | + position: absolute; | |
1880 | + top: 0; | |
1881 | + left: -2%; | |
1882 | +} | |
1883 | + | |
1884 | + | |
1885 | +.taken-conteiner{ | |
1886 | + height:calc(100% - 235px); | |
1887 | +}(파일 끝에 줄바꿈 문자 없음) |
+++ resources/css/swiper.css
... | ... | @@ -0,0 +1,228 @@ |
1 | +/** | |
2 | + * Swiper 11.1.1 | |
3 | + * Most modern mobile touch slider and framework with hardware accelerated transitions | |
4 | + * https://swiperjs.com | |
5 | + * | |
6 | + * Copyright 2014-2024 Vladimir Kharlampidi | |
7 | + * | |
8 | + * Released under the MIT License | |
9 | + * | |
10 | + * Released on: April 9, 2024 | |
11 | + */ | |
12 | + | |
13 | +/* FONT_START */ | |
14 | +@font-face { | |
15 | + font-family: 'swiper-icons'; | |
16 | + src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA'); | |
17 | + font-weight: 400; | |
18 | + font-style: normal; | |
19 | +} | |
20 | +/* FONT_END */ | |
21 | +:root { | |
22 | + --swiper-theme-color: #007aff; | |
23 | + /* | |
24 | + --swiper-preloader-color: var(--swiper-theme-color); | |
25 | + --swiper-wrapper-transition-timing-function: initial; | |
26 | + */ | |
27 | +} | |
28 | +:host { | |
29 | + position: relative; | |
30 | + display: block; | |
31 | + margin-left: auto; | |
32 | + margin-right: auto; | |
33 | + z-index: 1; | |
34 | +} | |
35 | +.swiper { | |
36 | + margin-left: auto; | |
37 | + margin-right: auto; | |
38 | + position: relative; | |
39 | + overflow: hidden; | |
40 | + list-style: none; | |
41 | + padding: 0; | |
42 | + /* Fix of Webkit flickering */ | |
43 | + z-index: 1; | |
44 | + display: block; | |
45 | +} | |
46 | +.swiper-vertical > .swiper-wrapper { | |
47 | + flex-direction: column; | |
48 | +} | |
49 | +.swiper-wrapper { | |
50 | + position: relative; | |
51 | + width: 100%; | |
52 | + height: 100%; | |
53 | + z-index: 1; | |
54 | + display: flex; | |
55 | + transition-property: transform; | |
56 | + transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial); | |
57 | + box-sizing: content-box; | |
58 | +} | |
59 | +.swiper-android .swiper-slide, | |
60 | +.swiper-ios .swiper-slide, | |
61 | +.swiper-wrapper { | |
62 | + transform: translate3d(0px, 0, 0); | |
63 | +} | |
64 | +.swiper-horizontal { | |
65 | + touch-action: pan-y; | |
66 | +} | |
67 | +.swiper-vertical { | |
68 | + touch-action: pan-x; | |
69 | +} | |
70 | +.swiper-slide { | |
71 | + flex-shrink: 0; | |
72 | + width: 100%; | |
73 | + height: 100%; | |
74 | + position: relative; | |
75 | + transition-property: transform; | |
76 | + display: block; | |
77 | +} | |
78 | +.swiper-slide-invisible-blank { | |
79 | + visibility: hidden; | |
80 | +} | |
81 | +/* Auto Height */ | |
82 | +.swiper-autoheight, | |
83 | +.swiper-autoheight .swiper-slide { | |
84 | + height: auto; | |
85 | +} | |
86 | +.swiper-autoheight .swiper-wrapper { | |
87 | + align-items: flex-start; | |
88 | + transition-property: transform, height; | |
89 | +} | |
90 | +.swiper-backface-hidden .swiper-slide { | |
91 | + transform: translateZ(0); | |
92 | + -webkit-backface-visibility: hidden; | |
93 | + backface-visibility: hidden; | |
94 | +} | |
95 | +/* 3D Effects */ | |
96 | +.swiper-3d.swiper-css-mode .swiper-wrapper { | |
97 | + perspective: 1200px; | |
98 | +} | |
99 | +.swiper-3d .swiper-wrapper { | |
100 | + transform-style: preserve-3d; | |
101 | +} | |
102 | +.swiper-3d { | |
103 | + perspective: 1200px; | |
104 | +} | |
105 | +.swiper-3d .swiper-slide, | |
106 | +.swiper-3d .swiper-cube-shadow { | |
107 | + transform-style: preserve-3d; | |
108 | +} | |
109 | +/* CSS Mode */ | |
110 | +.swiper-css-mode > .swiper-wrapper { | |
111 | + overflow: auto; | |
112 | + scrollbar-width: none; | |
113 | + /* For Firefox */ | |
114 | + -ms-overflow-style: none; | |
115 | + /* For Internet Explorer and Edge */ | |
116 | +} | |
117 | +.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar { | |
118 | + display: none; | |
119 | +} | |
120 | +.swiper-css-mode > .swiper-wrapper > .swiper-slide { | |
121 | + scroll-snap-align: start start; | |
122 | +} | |
123 | +.swiper-css-mode.swiper-horizontal > .swiper-wrapper { | |
124 | + scroll-snap-type: x mandatory; | |
125 | +} | |
126 | +.swiper-css-mode.swiper-vertical > .swiper-wrapper { | |
127 | + scroll-snap-type: y mandatory; | |
128 | +} | |
129 | +.swiper-css-mode.swiper-free-mode > .swiper-wrapper { | |
130 | + scroll-snap-type: none; | |
131 | +} | |
132 | +.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide { | |
133 | + scroll-snap-align: none; | |
134 | +} | |
135 | +.swiper-css-mode.swiper-centered > .swiper-wrapper::before { | |
136 | + content: ''; | |
137 | + flex-shrink: 0; | |
138 | + order: 9999; | |
139 | +} | |
140 | +.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide { | |
141 | + scroll-snap-align: center center; | |
142 | + scroll-snap-stop: always; | |
143 | +} | |
144 | +.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child { | |
145 | + margin-inline-start: var(--swiper-centered-offset-before); | |
146 | +} | |
147 | +.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before { | |
148 | + height: 100%; | |
149 | + min-height: 1px; | |
150 | + width: var(--swiper-centered-offset-after); | |
151 | +} | |
152 | +.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child { | |
153 | + margin-block-start: var(--swiper-centered-offset-before); | |
154 | +} | |
155 | +.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before { | |
156 | + width: 100%; | |
157 | + min-width: 1px; | |
158 | + height: var(--swiper-centered-offset-after); | |
159 | +} | |
160 | +/* Slide styles start */ | |
161 | +/* 3D Shadows */ | |
162 | +.swiper-3d .swiper-slide-shadow, | |
163 | +.swiper-3d .swiper-slide-shadow-left, | |
164 | +.swiper-3d .swiper-slide-shadow-right, | |
165 | +.swiper-3d .swiper-slide-shadow-top, | |
166 | +.swiper-3d .swiper-slide-shadow-bottom, | |
167 | +.swiper-3d .swiper-slide-shadow, | |
168 | +.swiper-3d .swiper-slide-shadow-left, | |
169 | +.swiper-3d .swiper-slide-shadow-right, | |
170 | +.swiper-3d .swiper-slide-shadow-top, | |
171 | +.swiper-3d .swiper-slide-shadow-bottom { | |
172 | + position: absolute; | |
173 | + left: 0; | |
174 | + top: 0; | |
175 | + width: 100%; | |
176 | + height: 100%; | |
177 | + pointer-events: none; | |
178 | + z-index: 10; | |
179 | +} | |
180 | +.swiper-3d .swiper-slide-shadow { | |
181 | + background: rgba(0, 0, 0, 0.15); | |
182 | +} | |
183 | +.swiper-3d .swiper-slide-shadow-left { | |
184 | + background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | |
185 | +} | |
186 | +.swiper-3d .swiper-slide-shadow-right { | |
187 | + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | |
188 | +} | |
189 | +.swiper-3d .swiper-slide-shadow-top { | |
190 | + background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | |
191 | +} | |
192 | +.swiper-3d .swiper-slide-shadow-bottom { | |
193 | + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | |
194 | +} | |
195 | +.swiper-lazy-preloader { | |
196 | + width: 42px; | |
197 | + height: 42px; | |
198 | + position: absolute; | |
199 | + left: 50%; | |
200 | + top: 50%; | |
201 | + margin-left: -21px; | |
202 | + margin-top: -21px; | |
203 | + z-index: 10; | |
204 | + transform-origin: 50%; | |
205 | + box-sizing: border-box; | |
206 | + border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color)); | |
207 | + border-radius: 50%; | |
208 | + border-top-color: transparent; | |
209 | +} | |
210 | +.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, | |
211 | +.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader { | |
212 | + animation: swiper-preloader-spin 1s infinite linear; | |
213 | +} | |
214 | +.swiper-lazy-preloader-white { | |
215 | + --swiper-preloader-color: #fff; | |
216 | +} | |
217 | +.swiper-lazy-preloader-black { | |
218 | + --swiper-preloader-color: #000; | |
219 | +} | |
220 | +@keyframes swiper-preloader-spin { | |
221 | + 0% { | |
222 | + transform: rotate(0deg); | |
223 | + } | |
224 | + 100% { | |
225 | + transform: rotate(360deg); | |
226 | + } | |
227 | +} | |
228 | +/* Slide styles end */ |
+++ resources/css/swiper.min.css
... | ... | @@ -0,0 +1,13 @@ |
1 | +/** | |
2 | + * Swiper 11.1.1 | |
3 | + * Most modern mobile touch slider and framework with hardware accelerated transitions | |
4 | + * https://swiperjs.com | |
5 | + * | |
6 | + * Copyright 2014-2024 Vladimir Kharlampidi | |
7 | + * | |
8 | + * Released under the MIT License | |
9 | + * | |
10 | + * Released on: April 9, 2024 | |
11 | + */ | |
12 | + | |
13 | +@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}(파일 끝에 줄바꿈 문자 없음) |
+++ resources/font/Montserrat-Black (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-Black.ttf
Binary file is not shown |
+++ resources/font/Montserrat-BlackItalic (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-BlackItalic.ttf
Binary file is not shown |
+++ resources/font/Montserrat-Bold (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-Bold.ttf
Binary file is not shown |
+++ resources/font/Montserrat-BoldItalic (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-BoldItalic.ttf
Binary file is not shown |
+++ resources/font/Montserrat-ExtraBold (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-ExtraBold.ttf
Binary file is not shown |
+++ resources/font/Montserrat-ExtraBoldItalic (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-ExtraBoldItalic.ttf
Binary file is not shown |
+++ resources/font/Montserrat-ExtraLight (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-ExtraLight.ttf
Binary file is not shown |
+++ resources/font/Montserrat-ExtraLightItalic (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-ExtraLightItalic.ttf
Binary file is not shown |
+++ resources/font/Montserrat-Italic (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-Italic.ttf
Binary file is not shown |
+++ resources/font/Montserrat-Light (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-Light.ttf
Binary file is not shown |
+++ resources/font/Montserrat-LightItalic (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-LightItalic.ttf
Binary file is not shown |
+++ resources/font/Montserrat-Medium (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-Medium.ttf
Binary file is not shown |
+++ resources/font/Montserrat-MediumItalic (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-MediumItalic.ttf
Binary file is not shown |
+++ resources/font/Montserrat-Regular (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-Regular.ttf
Binary file is not shown |
+++ resources/font/Montserrat-SemiBold (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-SemiBold.ttf
Binary file is not shown |
+++ resources/font/Montserrat-SemiBoldItalic (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-SemiBoldItalic.ttf
Binary file is not shown |
+++ resources/font/Montserrat-Thin (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-Thin.ttf
Binary file is not shown |
+++ resources/font/Montserrat-ThinItalic (2).ttf
Binary file is not shown |
+++ resources/font/Montserrat-ThinItalic.ttf
Binary file is not shown |
+++ resources/font/Pretendard-Black (2).woff2
Binary file is not shown |
+++ resources/font/Pretendard-Black.woff2
Binary file is not shown |
+++ resources/font/Pretendard-Bold (2).woff2
Binary file is not shown |
+++ resources/font/Pretendard-Bold.woff2
Binary file is not shown |
+++ resources/font/Pretendard-ExtraBold (2).woff2
Binary file is not shown |
+++ resources/font/Pretendard-ExtraBold.woff2
Binary file is not shown |
+++ resources/font/Pretendard-ExtraLight (2).woff2
Binary file is not shown |
+++ resources/font/Pretendard-ExtraLight.woff2
Binary file is not shown |
+++ resources/font/Pretendard-Light (2).woff2
Binary file is not shown |
+++ resources/font/Pretendard-Light.woff2
Binary file is not shown |
+++ resources/font/Pretendard-Medium (2).woff2
Binary file is not shown |
+++ resources/font/Pretendard-Medium.woff2
Binary file is not shown |
+++ resources/font/Pretendard-Regular (2).woff2
Binary file is not shown |
+++ resources/font/Pretendard-Regular.woff2
Binary file is not shown |
+++ resources/font/Pretendard-SemiBold (2).woff2
Binary file is not shown |
+++ resources/font/Pretendard-SemiBold.woff2
Binary file is not shown |
+++ resources/font/Pretendard-Thin (2).woff2
Binary file is not shown |
+++ resources/font/Pretendard-Thin.woff2
Binary file is not shown |
+++ resources/img/common/DATA.png
Binary file is not shown |
+++ resources/img/common/Traffic Agent .mp4
This file is too big to display. |
+++ resources/img/common/about-change-img01.png
Binary file is not shown |
+++ resources/img/common/about-change-img02.png
Binary file is not shown |
+++ resources/img/common/about-change-img03.png
Binary file is not shown |
+++ resources/img/common/about-img-bg02.png
Binary file is not shown |
+++ resources/img/common/about-img-bg03.png
Binary file is not shown |
+++ resources/img/common/about-img-db.png
Binary file is not shown |
+++ resources/img/common/about-img.png
Binary file is not shown |
+++ resources/img/common/about-img02.png
Binary file is not shown |
+++ resources/img/common/about-img1.png
Binary file is not shown |
+++ resources/img/common/about-img2.png
Binary file is not shown |
+++ resources/img/common/about-img3.png
Binary file is not shown |
+++ resources/img/common/about-img4.png
Binary file is not shown |
+++ resources/img/common/about-img5.png
Binary file is not shown |
+++ resources/img/common/address.png
Binary file is not shown |
+++ resources/img/common/ai-icon.png
Binary file is not shown |
+++ resources/img/common/ai-img.png
Binary file is not shown |
+++ resources/img/common/custom-img.png
Binary file is not shown |
+++ resources/img/common/custom-img2.png
Binary file is not shown |
+++ resources/img/common/custom-img3.png
Binary file is not shown |
+++ resources/img/common/custom-img4.png
Binary file is not shown |
+++ resources/img/common/data-img1.png
Binary file is not shown |
+++ resources/img/common/data-img2.png
Binary file is not shown |
+++ resources/img/common/data-img3.png
Binary file is not shown |
+++ resources/img/common/dataAnalysis-img.png
Binary file is not shown |
+++ resources/img/common/dataAnalysis-img2.png
Binary file is not shown |
+++ resources/img/common/dataAnalysis-img3.png
Binary file is not shown |
+++ resources/img/common/dataAnalysis-img4.png
Binary file is not shown |
+++ resources/img/common/dataAnalysis-img5.png
Binary file is not shown |
+++ resources/img/common/dataAnalysis-img6.png
Binary file is not shown |
+++ resources/img/common/dataAnalysis-img7.png
Binary file is not shown |
+++ resources/img/common/dataAnalysis-img8.png
Binary file is not shown |
+++ resources/img/common/etc-img.png
Binary file is not shown |
+++ resources/img/common/etc-img2.png
Binary file is not shown |
+++ resources/img/common/hanti.mp4
This file is too big to display. |
+++ resources/img/common/history-img1.png
Binary file is not shown |
+++ resources/img/common/history-img100.png
Binary file is not shown |
+++ resources/img/common/history-img101.png
Binary file is not shown |
+++ resources/img/common/history-img11.png
Binary file is not shown |
+++ resources/img/common/history-img110.png
Binary file is not shown |
+++ resources/img/common/history-img2.png
Binary file is not shown |
+++ resources/img/common/history-img31.png
Binary file is not shown |
+++ resources/img/common/history-img32.png
Binary file is not shown |
+++ resources/img/common/history-img33.png
Binary file is not shown |
+++ resources/img/common/history-img4.png
Binary file is not shown |
+++ resources/img/common/history-img51.png
Binary file is not shown |
+++ resources/img/common/history-img52.png
Binary file is not shown |
+++ resources/img/common/history-img6.png
Binary file is not shown |
+++ resources/img/common/history-img71.png
Binary file is not shown |
+++ resources/img/common/history-img72.png
Binary file is not shown |
+++ resources/img/common/history-img8.png
Binary file is not shown |
+++ resources/img/common/history-img9.png
Binary file is not shown |
+++ resources/img/common/img-box1.png
Binary file is not shown |
+++ resources/img/common/img-box2.png
Binary file is not shown |
+++ resources/img/common/img-box3.png
Binary file is not shown |
+++ resources/img/common/img-box4.png
Binary file is not shown |
+++ resources/img/common/img-box5.png
Binary file is not shown |
+++ resources/img/common/innerimg-1.png
Binary file is not shown |
+++ resources/img/common/innerimg-2.png
Binary file is not shown |
+++ resources/img/common/innerimg-3.png
Binary file is not shown |
+++ resources/img/common/innerimg-4.png
Binary file is not shown |
+++ resources/img/common/innerimg-5.png
Binary file is not shown |
+++ resources/img/common/innerimg-6.png
Binary file is not shown |
+++ resources/img/common/location-dot-solid-w.svg
... | ... | @@ -0,0 +1,1 @@ |
1 | +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="#ffffff" d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z"/></svg>(파일 끝에 줄바꿈 문자 없음) |
+++ resources/img/common/location-dot-solid.svg
... | ... | @@ -0,0 +1,1 @@ |
1 | +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="#213f99" d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z"/></svg>(파일 끝에 줄바꿈 문자 없음) |
+++ resources/img/common/main-2.png
Binary file is not shown |
+++ resources/img/common/main.png
Binary file is not shown |
+++ resources/img/common/marker.png
Binary file is not shown |
+++ resources/img/common/marketing-bg.png
Binary file is not shown |
+++ resources/img/common/marketing-icon.png
Binary file is not shown |
+++ resources/img/common/marketing-img01.png
Binary file is not shown |
+++ resources/img/common/marketing-img02.png
Binary file is not shown |
+++ resources/img/common/marketing-img03.png
Binary file is not shown |
+++ resources/img/common/marketing-img04.png
Binary file is not shown |
+++ resources/img/common/marketing-img05.png
Binary file is not shown |
+++ resources/img/common/marketing-img06.png
Binary file is not shown |
+++ resources/img/common/meta-icon.png
Binary file is not shown |
+++ resources/img/common/meta-img.png
Binary file is not shown |
+++ resources/img/common/meta-img02.png
Binary file is not shown |
+++ resources/img/common/meta.mp4
This file is too big to display. |
+++ resources/img/common/mouse.png
Binary file is not shown |
+++ resources/img/common/play-solid.png
... | ... | @@ -0,0 +1,0 @@ |
+++ resources/img/common/smart-icon.png
Binary file is not shown |
+++ resources/img/common/smart-img.png
Binary file is not shown |
+++ resources/img/common/smart-img1.png
Binary file is not shown |
+++ resources/img/common/smart-img2.png
Binary file is not shown |
+++ resources/img/common/smart-img3.png
Binary file is not shown |
+++ resources/img/common/solution-after-img-1.png
Binary file is not shown |
+++ resources/img/common/solution-arrow.png
Binary file is not shown |
+++ resources/img/common/solution-img1.png
Binary file is not shown |
+++ resources/img/common/thumbtack-solid.png
Binary file is not shown |
+++ resources/img/common/thumbtack-solid.svg
... | ... | @@ -0,0 +1,0 @@ |
+++ resources/img/common/traffic-icon.png
Binary file is not shown |
+++ resources/img/common/traffic-img.png
Binary file is not shown |
+++ resources/img/common/visual-img1.png
Binary file is not shown |
+++ resources/img/common/visual-img2.png
Binary file is not shown |
+++ resources/img/common/visual-img3.png
Binary file is not shown |
+++ resources/img/common/visual-img4.png
Binary file is not shown |
+++ resources/img/common/visual-img5.png
Binary file is not shown |
+++ resources/img/common/visual-img6.png
Binary file is not shown |
+++ resources/img/common/visual-img7.png
Binary file is not shown |
+++ resources/img/component/logo-color (2).png
Binary file is not shown |
+++ resources/img/component/logo-color.png
Binary file is not shown |
+++ resources/img/component/logo-w (2).png
Binary file is not shown |
+++ resources/img/component/logo-w.png
Binary file is not shown |
+++ resources/js/jquery-3.7.1.min.js
... | ... | @@ -0,0 +1,2 @@ |
1 | +/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ | |
2 | +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}function fe(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}ce.fn=ce.prototype={jquery:t,constructor:ce,length:0,toArray:function(){return ae.call(this)},get:function(e){return null==e?ae.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=ce.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return ce.each(this,e)},map:function(n){return this.pushStack(ce.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(ae.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(ce.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(ce.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:s,sort:oe.sort,splice:oe.splice},ce.extend=ce.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||v(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(ce.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||ce.isPlainObject(n)?n:{},i=!1,a[t]=ce.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},ce.extend({expando:"jQuery"+(t+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==i.call(e))&&(!(t=r(e))||"function"==typeof(n=ue.call(t,"constructor")&&t.constructor)&&o.call(n)===a)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){m(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(c(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},text:function(e){var t,n="",r=0,i=e.nodeType;if(!i)while(t=e[r++])n+=ce.text(t);return 1===i||11===i?e.textContent:9===i?e.documentElement.textContent:3===i||4===i?e.nodeValue:n},makeArray:function(e,t){var n=t||[];return null!=e&&(c(Object(e))?ce.merge(n,"string"==typeof e?[e]:e):s.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:se.call(t,e,n)},isXMLDoc:function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!l.test(t||n&&n.nodeName||"HTML")},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(c(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:le}),"function"==typeof Symbol&&(ce.fn[Symbol.iterator]=oe[Symbol.iterator]),ce.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var pe=oe.pop,de=oe.sort,he=oe.splice,ge="[\\x20\\t\\r\\n\\f]",ve=new RegExp("^"+ge+"+|((?:^|[^\\\\])(?:\\\\.)*)"+ge+"+$","g");ce.contains=function(e,t){var n=t&&t.parentNode;return e===n||!(!n||1!==n.nodeType||!(e.contains?e.contains(n):e.compareDocumentPosition&&16&e.compareDocumentPosition(n)))};var f=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;function p(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e}ce.escapeSelector=function(e){return(e+"").replace(f,p)};var ye=C,me=s;!function(){var e,b,w,o,a,T,r,C,d,i,k=me,S=ce.expando,E=0,n=0,s=W(),c=W(),u=W(),h=W(),l=function(e,t){return e===t&&(a=!0),0},f="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",t="(?:\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",p="\\["+ge+"*("+t+")(?:"+ge+"*([*^$|!~]?=)"+ge+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+t+"))|)"+ge+"*\\]",g=":("+t+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+p+")*)|.*)\\)|)",v=new RegExp(ge+"+","g"),y=new RegExp("^"+ge+"*,"+ge+"*"),m=new RegExp("^"+ge+"*([>+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="<a id='"+S+"' href='' disabled='disabled'></a><select id='"+S+"-\r\\' disabled='disabled'><option selected=''></option></select>",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0<I(t,T,null,[e]).length},I.contains=function(e,t){return(e.ownerDocument||e)!=T&&V(e),ce.contains(e,t)},I.attr=function(e,t){(e.ownerDocument||e)!=T&&V(e);var n=b.attrHandle[t.toLowerCase()],r=n&&ue.call(b.attrHandle,t.toLowerCase())?n(e,t,!C):void 0;return void 0!==r?r:e.getAttribute(t)},I.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},ce.uniqueSort=function(e){var t,n=[],r=0,i=0;if(a=!le.sortStable,o=!le.sortStable&&ae.call(e,0),de.call(e,l),a){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)he.call(e,n[r],1)}return o=null,e},ce.fn.uniqueSort=function(){return this.pushStack(ce.uniqueSort(ae.apply(this)))},(b=ce.expr={cacheLength:50,createPseudo:F,match:D,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(v," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(d,e,t,h,g){var v="nth"!==d.slice(0,3),y="last"!==d.slice(-4),m="of-type"===e;return 1===h&&0===g?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u=v!==y?"nextSibling":"previousSibling",l=e.parentNode,c=m&&e.nodeName.toLowerCase(),f=!n&&!m,p=!1;if(l){if(v){while(u){o=e;while(o=o[u])if(m?fe(o,c):1===o.nodeType)return!1;s=u="only"===d&&!s&&"nextSibling"}return!0}if(s=[y?l.firstChild:l.lastChild],y&&f){p=(a=(r=(i=l[S]||(l[S]={}))[d]||[])[0]===E&&r[1])&&r[2],o=a&&l.childNodes[a];while(o=++a&&o&&o[u]||(p=a=0)||s.pop())if(1===o.nodeType&&++p&&o===e){i[d]=[E,a,p];break}}else if(f&&(p=a=(r=(i=e[S]||(e[S]={}))[d]||[])[0]===E&&r[1]),!1===p)while(o=++a&&o&&o[u]||(p=a=0)||s.pop())if((m?fe(o,c):1===o.nodeType)&&++p&&(f&&((i=o[S]||(o[S]={}))[d]=[E,p]),o===e))break;return(p-=g)===h||p%h==0&&0<=p/h}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||I.error("unsupported pseudo: "+e);return a[S]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?F(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=se.call(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:F(function(e){var r=[],i=[],s=ne(e.replace(ve,"$1"));return s[S]?F(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:F(function(t){return function(e){return 0<I(t,e).length}}),contains:F(function(t){return t=t.replace(O,P),function(e){return-1<(e.textContent||ce.text(e)).indexOf(t)}}),lang:F(function(n){return A.test(n||"")||I.error("unsupported lang: "+n),n=n.replace(O,P).toLowerCase(),function(e){var t;do{if(t=C?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=ie.location&&ie.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===r},focus:function(e){return e===function(){try{return T.activeElement}catch(e){}}()&&T.hasFocus()&&!!(e.type||e.href||~e.tabIndex)},enabled:z(!1),disabled:z(!0),checked:function(e){return fe(e,"input")&&!!e.checked||fe(e,"option")&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return q.test(e.nodeName)},input:function(e){return N.test(e.nodeName)},button:function(e){return fe(e,"input")&&"button"===e.type||fe(e,"button")},text:function(e){var t;return fe(e,"input")&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:X(function(){return[0]}),last:X(function(e,t){return[t-1]}),eq:X(function(e,t,n){return[n<0?n+t:n]}),even:X(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:X(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:X(function(e,t,n){var r;for(r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:X(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=B(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=_(e);function G(){}function Y(e,t){var n,r,i,o,a,s,u,l=c[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=y.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=m.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace(ve," ")}),a=a.slice(n.length)),b.filter)!(r=D[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?I.error(e):c(e,s).slice(0)}function Q(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function J(a,e,t){var s=e.dir,u=e.next,l=u||s,c=t&&"parentNode"===l,f=n++;return e.first?function(e,t,n){while(e=e[s])if(1===e.nodeType||c)return a(e,t,n);return!1}:function(e,t,n){var r,i,o=[E,f];if(n){while(e=e[s])if((1===e.nodeType||c)&&a(e,t,n))return!0}else while(e=e[s])if(1===e.nodeType||c)if(i=e[S]||(e[S]={}),u&&fe(e,u))e=e[s]||e;else{if((r=i[l])&&r[0]===E&&r[1]===f)return o[2]=r[2];if((i[l]=o)[2]=a(e,t,n))return!0}return!1}}function K(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Z(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function ee(d,h,g,v,y,e){return v&&!v[S]&&(v=ee(v)),y&&!y[S]&&(y=ee(y,e)),F(function(e,t,n,r){var i,o,a,s,u=[],l=[],c=t.length,f=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)I(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),p=!d||!e&&h?f:Z(f,u,d,n,r);if(g?g(p,s=y||(e?d:c||v)?[]:t,n,r):s=p,v){i=Z(s,l),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(s[l[o]]=!(p[l[o]]=a))}if(e){if(y||d){if(y){i=[],o=s.length;while(o--)(a=s[o])&&i.push(p[o]=a);y(null,s=[],i,r)}o=s.length;while(o--)(a=s[o])&&-1<(i=y?se.call(e,a):u[o])&&(e[i]=!(t[i]=a))}}else s=Z(s===t?s.splice(c,s.length):s),y?y(null,t,s,r):k.apply(t,s)})}function te(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=J(function(e){return e===i},a,!0),l=J(function(e){return-1<se.call(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!=w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[J(K(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return ee(1<s&&K(c),1<s&&Q(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(ve,"$1"),t,s<n&&te(e.slice(s,n)),n<r&&te(e=e.slice(n)),n<r&&Q(e))}c.push(t)}return K(c)}function ne(e,t){var n,v,y,m,x,r,i=[],o=[],a=u[e+" "];if(!a){t||(t=Y(e)),n=t.length;while(n--)(a=te(t[n]))[S]?i.push(a):o.push(a);(a=u(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=E+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==T||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==T||(V(o),n=!C);while(s=v[a++])if(s(o,t||T,n)){k.call(r,o);break}i&&(E=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=pe.call(r));f=Z(f)}k.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&ce.uniqueSort(r)}return i&&(E=h,w=p),c},m?F(r):r))).selector=e}return a}function re(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&Y(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&C&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(O,P),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=D.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(O,P),H.test(o[0].type)&&U(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&Q(o)))return k.apply(n,r),n;break}}}return(l||ne(e,c))(r,t,!C,n,!t||H.test(e)&&U(t.parentNode)||t),n}G.prototype=b.filters=b.pseudos,b.setFilters=new G,le.sortStable=S.split("").sort(l).join("")===S,V(),le.sortDetached=$(function(e){return 1&e.compareDocumentPosition(T.createElement("fieldset"))}),ce.find=I,ce.expr[":"]=ce.expr.pseudos,ce.unique=ce.uniqueSort,I.compile=ne,I.select=re,I.setDocument=V,I.tokenize=Y,I.escape=ce.escapeSelector,I.getText=ce.text,I.isXML=ce.isXMLDoc,I.selectors=ce.expr,I.support=ce.support,I.uniqueSort=ce.uniqueSort}();var d=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&ce(e).is(n))break;r.push(e)}return r},h=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},b=ce.expr.match.needsContext,w=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1<se.call(n,e)!==r}):ce.filter(n,e,r)}ce.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?ce.find.matchesSelector(r,e)?[r]:[]:ce.find.matches(e,ce.grep(t,function(e){return 1===e.nodeType}))},ce.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(ce(e).filter(function(){for(t=0;t<r;t++)if(ce.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)ce.find(e,i[t],n);return 1<r?ce.uniqueSort(n):n},filter:function(e){return this.pushStack(T(this,e||[],!1))},not:function(e){return this.pushStack(T(this,e||[],!0))},is:function(e){return!!T(this,"string"==typeof e&&b.test(e)?ce(e):e||[],!1).length}});var k,S=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(ce.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&ce(e);if(!b.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&ce.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?ce.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?se.call(ce(e),this[0]):se.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(ce.uniqueSort(ce.merge(this.get(),ce(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),ce.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return d(e,"parentNode")},parentsUntil:function(e,t,n){return d(e,"parentNode",n)},next:function(e){return A(e,"nextSibling")},prev:function(e){return A(e,"previousSibling")},nextAll:function(e){return d(e,"nextSibling")},prevAll:function(e){return d(e,"previousSibling")},nextUntil:function(e,t,n){return d(e,"nextSibling",n)},prevUntil:function(e,t,n){return d(e,"previousSibling",n)},siblings:function(e){return h((e.parentNode||{}).firstChild,e)},children:function(e){return h(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(fe(e,"template")&&(e=e.content||e),ce.merge([],e.childNodes))}},function(r,i){ce.fn[r]=function(e,t){var n=ce.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=ce.filter(t,n)),1<this.length&&(j[r]||ce.uniqueSort(n),E.test(r)&&n.reverse()),this.pushStack(n)}});var D=/[^\x20\t\r\n\f]+/g;function N(e){return e}function q(e){throw e}function L(e,t,n,r){var i;try{e&&v(i=e.promise)?i.call(e).done(t).fail(n):e&&v(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}ce.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},ce.each(e.match(D)||[],function(e,t){n[t]=!0}),n):ce.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){ce.each(e,function(e,t){v(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==x(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return ce.each(arguments,function(e,t){var n;while(-1<(n=ce.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<ce.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},ce.extend({Deferred:function(e){var o=[["notify","progress",ce.Callbacks("memory"),ce.Callbacks("memory"),2],["resolve","done",ce.Callbacks("once memory"),ce.Callbacks("once memory"),0,"resolved"],["reject","fail",ce.Callbacks("once memory"),ce.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return ce.Deferred(function(r){ce.each(o,function(e,t){var n=v(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&v(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,v(t)?s?t.call(e,l(u,o,N,s),l(u,o,q,s)):(u++,t.call(e,l(u,o,N,s),l(u,o,q,s),l(u,o,N,o.notifyWith))):(a!==N&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){ce.Deferred.exceptionHook&&ce.Deferred.exceptionHook(e,t.error),u<=i+1&&(a!==q&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(ce.Deferred.getErrorHook?t.error=ce.Deferred.getErrorHook():ce.Deferred.getStackHook&&(t.error=ce.Deferred.getStackHook()),ie.setTimeout(t))}}return ce.Deferred(function(e){o[0][3].add(l(0,e,v(r)?r:N,e.notifyWith)),o[1][3].add(l(0,e,v(t)?t:N)),o[2][3].add(l(0,e,v(n)?n:q))}).promise()},promise:function(e){return null!=e?ce.extend(e,a):a}},s={};return ce.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=ae.call(arguments),o=ce.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?ae.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(L(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||v(i[t]&&i[t].then)))return o.then();while(t--)L(i[t],a(t),o.reject);return o.promise()}});var H=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;ce.Deferred.exceptionHook=function(e,t){ie.console&&ie.console.warn&&e&&H.test(e.name)&&ie.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},ce.readyException=function(e){ie.setTimeout(function(){throw e})};var O=ce.Deferred();function P(){C.removeEventListener("DOMContentLoaded",P),ie.removeEventListener("load",P),ce.ready()}ce.fn.ready=function(e){return O.then(e)["catch"](function(e){ce.readyException(e)}),this},ce.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--ce.readyWait:ce.isReady)||(ce.isReady=!0)!==e&&0<--ce.readyWait||O.resolveWith(C,[ce])}}),ce.ready.then=O.then,"complete"===C.readyState||"loading"!==C.readyState&&!C.documentElement.doScroll?ie.setTimeout(ce.ready):(C.addEventListener("DOMContentLoaded",P),ie.addEventListener("load",P));var M=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n))for(s in i=!0,n)M(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,v(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(ce(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},R=/^-ms-/,I=/-([a-z])/g;function W(e,t){return t.toUpperCase()}function F(e){return e.replace(R,"ms-").replace(I,W)}var $=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function B(){this.expando=ce.expando+B.uid++}B.uid=1,B.prototype={cache:function(e){var t=e[this.expando];return t||(t={},$(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[F(t)]=n;else for(r in t)i[F(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][F(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(F):(t=F(t))in r?[t]:t.match(D)||[]).length;while(n--)delete r[t[n]]}(void 0===t||ce.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!ce.isEmptyObject(t)}};var _=new B,z=new B,X=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,U=/[A-Z]/g;function V(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(U,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:X.test(i)?JSON.parse(i):i)}catch(e){}z.set(e,t,n)}else n=void 0;return n}ce.extend({hasData:function(e){return z.hasData(e)||_.hasData(e)},data:function(e,t,n){return z.access(e,t,n)},removeData:function(e,t){z.remove(e,t)},_data:function(e,t,n){return _.access(e,t,n)},_removeData:function(e,t){_.remove(e,t)}}),ce.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=z.get(o),1===o.nodeType&&!_.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=F(r.slice(5)),V(o,r,i[r]));_.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){z.set(this,n)}):M(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=z.get(o,n))?t:void 0!==(t=V(o,n))?t:void 0;this.each(function(){z.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){z.remove(this,e)})}}),ce.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=_.get(e,t),n&&(!r||Array.isArray(n)?r=_.access(e,t,ce.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=ce.queue(e,t),r=n.length,i=n.shift(),o=ce._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){ce.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return _.get(e,n)||_.access(e,n,{empty:ce.Callbacks("once memory").add(function(){_.remove(e,[t+"queue",n])})})}}),ce.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?ce.queue(this[0],t):void 0===n?this:this.each(function(){var e=ce.queue(this,t,n);ce._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&ce.dequeue(this,t)})},dequeue:function(e){return this.each(function(){ce.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=ce.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=_.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var G=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,Y=new RegExp("^(?:([+-])=|)("+G+")([a-z%]*)$","i"),Q=["Top","Right","Bottom","Left"],J=C.documentElement,K=function(e){return ce.contains(e.ownerDocument,e)},Z={composed:!0};J.getRootNode&&(K=function(e){return ce.contains(e.ownerDocument,e)||e.getRootNode(Z)===e.ownerDocument});var ee=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&K(e)&&"none"===ce.css(e,"display")};function te(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return ce.css(e,t,"")},u=s(),l=n&&n[3]||(ce.cssNumber[t]?"":"px"),c=e.nodeType&&(ce.cssNumber[t]||"px"!==l&&+u)&&Y.exec(ce.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)ce.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,ce.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ne={};function re(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=_.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&ee(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ne[s])||(o=a.body.appendChild(a.createElement(s)),u=ce.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ne[s]=u)))):"none"!==n&&(l[c]="none",_.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}ce.fn.extend({show:function(){return re(this,!0)},hide:function(){return re(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ee(this)?ce(this).show():ce(this).hide()})}});var xe,be,we=/^(?:checkbox|radio)$/i,Te=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="<textarea>x</textarea>",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="<option></option>",le.option=!!xe.lastChild;var ke={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n<r;n++)_.set(e[n],"globalEval",!t||_.get(t[n],"globalEval"))}ke.tbody=ke.tfoot=ke.colgroup=ke.caption=ke.thead,ke.th=ke.td,le.option||(ke.optgroup=ke.option=[1,"<select multiple='multiple'>","</select>"]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===x(o))ce.merge(p,o.nodeType?[o]:o);else if(je.test(o)){a=a||f.appendChild(t.createElement("div")),s=(Te.exec(o)||["",""])[1].toLowerCase(),u=ke[s]||ke._default,a.innerHTML=u[1]+ce.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;ce.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<ce.inArray(o,r))i&&i.push(o);else if(l=K(o),a=Se(f.appendChild(o),"script"),l&&Ee(a),n){c=0;while(o=a[c++])Ce.test(o.type||"")&&n.push(o)}return f}var De=/^([^.]*)(?:\.(.+)|)/;function Ne(){return!0}function qe(){return!1}function Le(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Le(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=qe;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return ce().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=ce.guid++)),e.each(function(){ce.event.add(this,t,i,r,n)})}function He(e,r,t){t?(_.set(e,r,!1),ce.event.add(e,r,{namespace:!1,handler:function(e){var t,n=_.get(this,r);if(1&e.isTrigger&&this[r]){if(n)(ce.event.special[r]||{}).delegateType&&e.stopPropagation();else if(n=ae.call(arguments),_.set(this,r,n),this[r](),t=_.get(this,r),_.set(this,r,!1),n!==t)return e.stopImmediatePropagation(),e.preventDefault(),t}else n&&(_.set(this,r,ce.event.trigger(n[0],n.slice(1),this)),e.stopPropagation(),e.isImmediatePropagationStopped=Ne)}})):void 0===_.get(e,r)&&ce.event.add(e,r,Ne)}ce.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=_.get(t);if($(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&ce.find.matchesSelector(J,i),n.guid||(n.guid=ce.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof ce&&ce.event.triggered!==e.type?ce.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(D)||[""]).length;while(l--)d=g=(s=De.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=ce.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=ce.event.special[d]||{},c=ce.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&ce.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),ce.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=_.hasData(e)&&_.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(D)||[""]).length;while(l--)if(d=g=(s=De.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=ce.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||ce.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)ce.event.remove(e,d+t[l],n,r,!0);ce.isEmptyObject(u)&&_.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=ce.event.fix(e),l=(_.get(this,"events")||Object.create(null))[u.type]||[],c=ce.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=ce.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((ce.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<ce(i,this).index(l):ce.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(ce.Event.prototype,t,{enumerable:!0,configurable:!0,get:v(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[ce.expando]?e:new ce.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return we.test(t.type)&&t.click&&fe(t,"input")&&He(t,"click",!0),!1},trigger:function(e){var t=this||e;return we.test(t.type)&&t.click&&fe(t,"input")&&He(t,"click"),!0},_default:function(e){var t=e.target;return we.test(t.type)&&t.click&&fe(t,"input")&&_.get(t,"click")||fe(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},ce.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},ce.Event=function(e,t){if(!(this instanceof ce.Event))return new ce.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Ne:qe,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&ce.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[ce.expando]=!0},ce.Event.prototype={constructor:ce.Event,isDefaultPrevented:qe,isPropagationStopped:qe,isImmediatePropagationStopped:qe,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ne,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ne,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ne,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},ce.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},ce.event.addProp),ce.each({focus:"focusin",blur:"focusout"},function(r,i){function o(e){if(C.documentMode){var t=_.get(this,"handle"),n=ce.event.fix(e);n.type="focusin"===e.type?"focus":"blur",n.isSimulated=!0,t(e),n.target===n.currentTarget&&t(n)}else ce.event.simulate(i,e.target,ce.event.fix(e))}ce.event.special[r]={setup:function(){var e;if(He(this,r,!0),!C.documentMode)return!1;(e=_.get(this,i))||this.addEventListener(i,o),_.set(this,i,(e||0)+1)},trigger:function(){return He(this,r),!0},teardown:function(){var e;if(!C.documentMode)return!1;(e=_.get(this,i)-1)?_.set(this,i,e):(this.removeEventListener(i,o),_.remove(this,i))},_default:function(e){return _.get(e.target,r)},delegateType:i},ce.event.special[i]={setup:function(){var e=this.ownerDocument||this.document||this,t=C.documentMode?this:e,n=_.get(t,i);n||(C.documentMode?this.addEventListener(i,o):e.addEventListener(r,o,!0)),_.set(t,i,(n||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=C.documentMode?this:e,n=_.get(t,i)-1;n?_.set(t,i,n):(C.documentMode?this.removeEventListener(i,o):e.removeEventListener(r,o,!0),_.remove(t,i))}}}),ce.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){ce.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||ce.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),ce.fn.extend({on:function(e,t,n,r){return Le(this,e,t,n,r)},one:function(e,t,n,r){return Le(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,ce(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=qe),this.each(function(){ce.event.remove(this,e,n,t)})}});var Oe=/<script|<style|<link/i,Pe=/checked\s*(?:[^=]|=\s*.checked.)/i,Me=/^\s*<!\[CDATA\[|\]\]>\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)ce.event.add(t,i,s[i][n]);z.hasData(e)&&(o=z.access(e),a=ce.extend({},o),z.set(t,a))}}function $e(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=v(d);if(h||1<f&&"string"==typeof d&&!le.checkClone&&Pe.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),$e(t,r,i,o)});if(f&&(t=(e=Ae(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=ce.map(Se(e,"script"),Ie)).length;c<f;c++)u=e,c!==p&&(u=ce.clone(u,!0,!0),s&&ce.merge(a,Se(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,ce.map(a,We),c=0;c<s;c++)u=a[c],Ce.test(u.type||"")&&!_.access(u,"globalEval")&&ce.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?ce._evalUrl&&!u.noModule&&ce._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},l):m(u.textContent.replace(Me,""),u,l))}return n}function Be(e,t,n){for(var r,i=t?ce.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||ce.cleanData(Se(r)),r.parentNode&&(n&&K(r)&&Ee(Se(r,"script")),r.parentNode.removeChild(r));return e}ce.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=K(e);if(!(le.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||ce.isXMLDoc(e)))for(a=Se(c),r=0,i=(o=Se(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&we.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||Se(e),a=a||Se(c),r=0,i=o.length;r<i;r++)Fe(o[r],a[r]);else Fe(e,c);return 0<(a=Se(c,"script")).length&&Ee(a,!f&&Se(e,"script")),c},cleanData:function(e){for(var t,n,r,i=ce.event.special,o=0;void 0!==(n=e[o]);o++)if($(n)){if(t=n[_.expando]){if(t.events)for(r in t.events)i[r]?ce.event.remove(n,r):ce.removeEvent(n,r,t.handle);n[_.expando]=void 0}n[z.expando]&&(n[z.expando]=void 0)}}}),ce.fn.extend({detach:function(e){return Be(this,e,!0)},remove:function(e){return Be(this,e)},text:function(e){return M(this,function(e){return void 0===e?ce.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return $e(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Re(this,e).appendChild(e)})},prepend:function(){return $e(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Re(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return $e(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return $e(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(ce.cleanData(Se(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return ce.clone(this,e,t)})},html:function(e){return M(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Oe.test(e)&&!ke[(Te.exec(e)||["",""])[1].toLowerCase()]){e=ce.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(ce.cleanData(Se(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return $e(this,arguments,function(e){var t=this.parentNode;ce.inArray(this,n)<0&&(ce.cleanData(Se(this)),t&&t.replaceChild(e,this))},n)}}),ce.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){ce.fn[e]=function(e){for(var t,n=[],r=ce(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),ce(r[o])[a](t),s.apply(n,t.get());return this.pushStack(n)}});var _e=new RegExp("^("+G+")(?!px)[a-z%]+$","i"),ze=/^--/,Xe=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=ie),t.getComputedStyle(e)},Ue=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Ve=new RegExp(Q.join("|"),"i");function Ge(e,t,n){var r,i,o,a,s=ze.test(t),u=e.style;return(n=n||Xe(e))&&(a=n.getPropertyValue(t)||n[t],s&&a&&(a=a.replace(ve,"$1")||void 0),""!==a||K(e)||(a=ce.style(e,t)),!le.pixelBoxStyles()&&_e.test(a)&&Ve.test(t)&&(r=u.width,i=u.minWidth,o=u.maxWidth,u.minWidth=u.maxWidth=u.width=a,a=n.width,u.width=r,u.minWidth=i,u.maxWidth=o)),void 0!==a?a+"":a}function Ye(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",l.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",J.appendChild(u).appendChild(l);var e=ie.getComputedStyle(l);n="1%"!==e.top,s=12===t(e.marginLeft),l.style.right="60%",o=36===t(e.right),r=36===t(e.width),l.style.position="absolute",i=12===t(l.offsetWidth/3),J.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=C.createElement("div"),l=C.createElement("div");l.style&&(l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",le.clearCloneStyle="content-box"===l.style.backgroundClip,ce.extend(le,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=C.createElement("table"),t=C.createElement("tr"),n=C.createElement("div"),e.style.cssText="position:absolute;left:-11111px;border-collapse:separate",t.style.cssText="box-sizing:content-box;border:1px solid",t.style.height="1px",n.style.height="9px",n.style.display="block",J.appendChild(e).appendChild(t).appendChild(n),r=ie.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,J.removeChild(e)),a}}))}();var Qe=["Webkit","Moz","ms"],Je=C.createElement("div").style,Ke={};function Ze(e){var t=ce.cssProps[e]||Ke[e];return t||(e in Je?e:Ke[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Qe.length;while(n--)if((e=Qe[n]+t)in Je)return e}(e)||e)}var et=/^(none|table(?!-c[ea]).+)/,tt={position:"absolute",visibility:"hidden",display:"block"},nt={letterSpacing:"0",fontWeight:"400"};function rt(e,t,n){var r=Y.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function it(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0,l=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(l+=ce.css(e,n+Q[a],!0,i)),r?("content"===n&&(u-=ce.css(e,"padding"+Q[a],!0,i)),"margin"!==n&&(u-=ce.css(e,"border"+Q[a]+"Width",!0,i))):(u+=ce.css(e,"padding"+Q[a],!0,i),"padding"!==n?u+=ce.css(e,"border"+Q[a]+"Width",!0,i):s+=ce.css(e,"border"+Q[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u+l}function ot(e,t,n){var r=Xe(e),i=(!le.boxSizingReliable()||n)&&"border-box"===ce.css(e,"boxSizing",!1,r),o=i,a=Ge(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(_e.test(a)){if(!n)return a;a="auto"}return(!le.boxSizingReliable()&&i||!le.reliableTrDimensions()&&fe(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===ce.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===ce.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+it(e,t,n||(i?"border":"content"),o,r,a)+"px"}function at(e,t,n,r,i){return new at.prototype.init(e,t,n,r,i)}ce.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ge(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,aspectRatio:!0,borderImageSlice:!0,columnCount:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,scale:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeMiterlimit:!0,strokeOpacity:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=F(t),u=ze.test(t),l=e.style;if(u||(t=Ze(s)),a=ce.cssHooks[t]||ce.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=Y.exec(n))&&i[1]&&(n=te(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(ce.cssNumber[s]?"":"px")),le.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=F(t);return ze.test(t)||(t=Ze(s)),(a=ce.cssHooks[t]||ce.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Ge(e,t,r)),"normal"===i&&t in nt&&(i=nt[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),ce.each(["height","width"],function(e,u){ce.cssHooks[u]={get:function(e,t,n){if(t)return!et.test(ce.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?ot(e,u,n):Ue(e,tt,function(){return ot(e,u,n)})},set:function(e,t,n){var r,i=Xe(e),o=!le.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===ce.css(e,"boxSizing",!1,i),s=n?it(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-it(e,u,"border",!1,i)-.5)),s&&(r=Y.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=ce.css(e,u)),rt(0,t,s)}}}),ce.cssHooks.marginLeft=Ye(le.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Ge(e,"marginLeft"))||e.getBoundingClientRect().left-Ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),ce.each({margin:"",padding:"",border:"Width"},function(i,o){ce.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+Q[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(ce.cssHooks[i+o].set=rt)}),ce.fn.extend({css:function(e,t){return M(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Xe(e),i=t.length;a<i;a++)o[t[a]]=ce.css(e,t[a],!1,r);return o}return void 0!==n?ce.style(e,t,n):ce.css(e,t)},e,t,1<arguments.length)}}),((ce.Tween=at).prototype={constructor:at,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||ce.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(ce.cssNumber[n]?"":"px")},cur:function(){var e=at.propHooks[this.prop];return e&&e.get?e.get(this):at.propHooks._default.get(this)},run:function(e){var t,n=at.propHooks[this.prop];return this.options.duration?this.pos=t=ce.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):at.propHooks._default.set(this),this}}).init.prototype=at.prototype,(at.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=ce.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){ce.fx.step[e.prop]?ce.fx.step[e.prop](e):1!==e.elem.nodeType||!ce.cssHooks[e.prop]&&null==e.elem.style[Ze(e.prop)]?e.elem[e.prop]=e.now:ce.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=at.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},ce.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},ce.fx=at.prototype.init,ce.fx.step={};var st,ut,lt,ct,ft=/^(?:toggle|show|hide)$/,pt=/queueHooks$/;function dt(){ut&&(!1===C.hidden&&ie.requestAnimationFrame?ie.requestAnimationFrame(dt):ie.setTimeout(dt,ce.fx.interval),ce.fx.tick())}function ht(){return ie.setTimeout(function(){st=void 0}),st=Date.now()}function gt(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=Q[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function vt(e,t,n){for(var r,i=(yt.tweeners[t]||[]).concat(yt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function yt(o,e,t){var n,a,r=0,i=yt.prefilters.length,s=ce.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=st||ht(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:ce.extend({},e),opts:ce.extend(!0,{specialEasing:{},easing:ce.easing._default},t),originalProperties:e,originalOptions:t,startTime:st||ht(),duration:t.duration,tweens:[],createTween:function(e,t){var n=ce.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=F(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=ce.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=yt.prefilters[r].call(l,o,c,l.opts))return v(n.stop)&&(ce._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return ce.map(c,vt,l),v(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),ce.fx.timer(ce.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}ce.Animation=ce.extend(yt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return te(n.elem,e,Y.exec(t),n),n}]},tweener:function(e,t){v(e)?(t=e,e=["*"]):e=e.match(D);for(var n,r=0,i=e.length;r<i;r++)n=e[r],yt.tweeners[n]=yt.tweeners[n]||[],yt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ee(e),v=_.get(e,"fxshow");for(r in n.queue||(null==(a=ce._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,ce.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],ft.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||ce.style(e,r)}if((u=!ce.isEmptyObject(t))||!ce.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=_.get(e,"display")),"none"===(c=ce.css(e,"display"))&&(l?c=l:(re([e],!0),l=e.style.display||l,c=ce.css(e,"display"),re([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===ce.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=_.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&re([e],!0),p.done(function(){for(r in g||re([e]),_.remove(e,"fxshow"),d)ce.style(e,r,d[r])})),u=vt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?yt.prefilters.unshift(e):yt.prefilters.push(e)}}),ce.speed=function(e,t,n){var r=e&&"object"==typeof e?ce.extend({},e):{complete:n||!n&&t||v(e)&&e,duration:e,easing:n&&t||t&&!v(t)&&t};return ce.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in ce.fx.speeds?r.duration=ce.fx.speeds[r.duration]:r.duration=ce.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){v(r.old)&&r.old.call(this),r.queue&&ce.dequeue(this,r.queue)},r},ce.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ee).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=ce.isEmptyObject(t),o=ce.speed(e,n,r),a=function(){var e=yt(this,ce.extend({},t),o);(i||_.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=ce.timers,r=_.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&pt.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||ce.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=_.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=ce.timers,o=n?n.length:0;for(t.finish=!0,ce.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),ce.each(["toggle","show","hide"],function(e,r){var i=ce.fn[r];ce.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(gt(r,!0),e,t,n)}}),ce.each({slideDown:gt("show"),slideUp:gt("hide"),slideToggle:gt("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){ce.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),ce.timers=[],ce.fx.tick=function(){var e,t=0,n=ce.timers;for(st=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||ce.fx.stop(),st=void 0},ce.fx.timer=function(e){ce.timers.push(e),ce.fx.start()},ce.fx.interval=13,ce.fx.start=function(){ut||(ut=!0,dt())},ce.fx.stop=function(){ut=null},ce.fx.speeds={slow:600,fast:200,_default:400},ce.fn.delay=function(r,e){return r=ce.fx&&ce.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=ie.setTimeout(e,r);t.stop=function(){ie.clearTimeout(n)}})},lt=C.createElement("input"),ct=C.createElement("select").appendChild(C.createElement("option")),lt.type="checkbox",le.checkOn=""!==lt.value,le.optSelected=ct.selected,(lt=C.createElement("input")).value="t",lt.type="radio",le.radioValue="t"===lt.value;var mt,xt=ce.expr.attrHandle;ce.fn.extend({attr:function(e,t){return M(this,ce.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){ce.removeAttr(this,e)})}}),ce.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?ce.prop(e,t,n):(1===o&&ce.isXMLDoc(e)||(i=ce.attrHooks[t.toLowerCase()]||(ce.expr.match.bool.test(t)?mt:void 0)),void 0!==n?null===n?void ce.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=ce.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!le.radioValue&&"radio"===t&&fe(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(D);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),mt={set:function(e,t,n){return!1===t?ce.removeAttr(e,n):e.setAttribute(n,n),n}},ce.each(ce.expr.match.bool.source.match(/\w+/g),function(e,t){var a=xt[t]||ce.find.attr;xt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=xt[o],xt[o]=r,r=null!=a(e,t,n)?o:null,xt[o]=i),r}});var bt=/^(?:input|select|textarea|button)$/i,wt=/^(?:a|area)$/i;function Tt(e){return(e.match(D)||[]).join(" ")}function Ct(e){return e.getAttribute&&e.getAttribute("class")||""}function kt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(D)||[]}ce.fn.extend({prop:function(e,t){return M(this,ce.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[ce.propFix[e]||e]})}}),ce.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&ce.isXMLDoc(e)||(t=ce.propFix[t]||t,i=ce.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=ce.find.attr(e,"tabindex");return t?parseInt(t,10):bt.test(e.nodeName)||wt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),le.optSelected||(ce.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),ce.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){ce.propFix[this.toLowerCase()]=this}),ce.fn.extend({addClass:function(t){var e,n,r,i,o,a;return v(t)?this.each(function(e){ce(this).addClass(t.call(this,e,Ct(this)))}):(e=kt(t)).length?this.each(function(){if(r=Ct(this),n=1===this.nodeType&&" "+Tt(r)+" "){for(o=0;o<e.length;o++)i=e[o],n.indexOf(" "+i+" ")<0&&(n+=i+" ");a=Tt(n),r!==a&&this.setAttribute("class",a)}}):this},removeClass:function(t){var e,n,r,i,o,a;return v(t)?this.each(function(e){ce(this).removeClass(t.call(this,e,Ct(this)))}):arguments.length?(e=kt(t)).length?this.each(function(){if(r=Ct(this),n=1===this.nodeType&&" "+Tt(r)+" "){for(o=0;o<e.length;o++){i=e[o];while(-1<n.indexOf(" "+i+" "))n=n.replace(" "+i+" "," ")}a=Tt(n),r!==a&&this.setAttribute("class",a)}}):this:this.attr("class","")},toggleClass:function(t,n){var e,r,i,o,a=typeof t,s="string"===a||Array.isArray(t);return v(t)?this.each(function(e){ce(this).toggleClass(t.call(this,e,Ct(this),n),n)}):"boolean"==typeof n&&s?n?this.addClass(t):this.removeClass(t):(e=kt(t),this.each(function(){if(s)for(o=ce(this),i=0;i<e.length;i++)r=e[i],o.hasClass(r)?o.removeClass(r):o.addClass(r);else void 0!==t&&"boolean"!==a||((r=Ct(this))&&_.set(this,"__className__",r),this.setAttribute&&this.setAttribute("class",r||!1===t?"":_.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+Tt(Ct(n))+" ").indexOf(t))return!0;return!1}});var St=/\r/g;ce.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=v(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,ce(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=ce.map(t,function(e){return null==e?"":e+""})),(r=ce.valHooks[this.type]||ce.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=ce.valHooks[t.type]||ce.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(St,""):null==e?"":e:void 0}}),ce.extend({valHooks:{option:{get:function(e){var t=ce.find.attr(e,"value");return null!=t?t:Tt(ce.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!fe(n.parentNode,"optgroup"))){if(t=ce(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=ce.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<ce.inArray(ce.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),ce.each(["radio","checkbox"],function(){ce.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<ce.inArray(ce(e).val(),t)}},le.checkOn||(ce.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Et=ie.location,jt={guid:Date.now()},At=/\?/;ce.parseXML=function(e){var t,n;if(!e||"string"!=typeof e)return null;try{t=(new ie.DOMParser).parseFromString(e,"text/xml")}catch(e){}return n=t&&t.getElementsByTagName("parsererror")[0],t&&!n||ce.error("Invalid XML: "+(n?ce.map(n.childNodes,function(e){return e.textContent}).join("\n"):e)),t};var Dt=/^(?:focusinfocus|focusoutblur)$/,Nt=function(e){e.stopPropagation()};ce.extend(ce.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||C],d=ue.call(e,"type")?e.type:e,h=ue.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||C,3!==n.nodeType&&8!==n.nodeType&&!Dt.test(d+ce.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[ce.expando]?e:new ce.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:ce.makeArray(t,[e]),c=ce.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!y(n)){for(s=c.delegateType||d,Dt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||C)&&p.push(a.defaultView||a.parentWindow||ie)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(_.get(o,"events")||Object.create(null))[e.type]&&_.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&$(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!$(n)||u&&v(n[d])&&!y(n)&&((a=n[u])&&(n[u]=null),ce.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,Nt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,Nt),ce.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=ce.extend(new ce.Event,n,{type:e,isSimulated:!0});ce.event.trigger(r,null,t)}}),ce.fn.extend({trigger:function(e,t){return this.each(function(){ce.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return ce.event.trigger(e,t,n,!0)}});var qt=/\[\]$/,Lt=/\r?\n/g,Ht=/^(?:submit|button|image|reset|file)$/i,Ot=/^(?:input|select|textarea|keygen)/i;function Pt(n,e,r,i){var t;if(Array.isArray(e))ce.each(e,function(e,t){r||qt.test(n)?i(n,t):Pt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==x(e))i(n,e);else for(t in e)Pt(n+"["+t+"]",e[t],r,i)}ce.param=function(e,t){var n,r=[],i=function(e,t){var n=v(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!ce.isPlainObject(e))ce.each(e,function(){i(this.name,this.value)});else for(n in e)Pt(n,e[n],t,i);return r.join("&")},ce.fn.extend({serialize:function(){return ce.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=ce.prop(this,"elements");return e?ce.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!ce(this).is(":disabled")&&Ot.test(this.nodeName)&&!Ht.test(e)&&(this.checked||!we.test(e))}).map(function(e,t){var n=ce(this).val();return null==n?null:Array.isArray(n)?ce.map(n,function(e){return{name:t.name,value:e.replace(Lt,"\r\n")}}):{name:t.name,value:n.replace(Lt,"\r\n")}}).get()}});var Mt=/%20/g,Rt=/#.*$/,It=/([?&])_=[^&]*/,Wt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ft=/^(?:GET|HEAD)$/,$t=/^\/\//,Bt={},_t={},zt="*/".concat("*"),Xt=C.createElement("a");function Ut(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(D)||[];if(v(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Vt(t,i,o,a){var s={},u=t===_t;function l(e){var r;return s[e]=!0,ce.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function Gt(e,t){var n,r,i=ce.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&ce.extend(!0,e,r),e}Xt.href=Et.href,ce.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":zt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":ce.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Gt(Gt(e,ce.ajaxSettings),t):Gt(ce.ajaxSettings,e)},ajaxPrefilter:Ut(Bt),ajaxTransport:Ut(_t),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=ce.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?ce(y):ce.event,x=ce.Deferred(),b=ce.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Wt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Et.href)+"").replace($t,Et.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(D)||[""],null==v.crossDomain){r=C.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Xt.protocol+"//"+Xt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=ce.param(v.data,v.traditional)),Vt(Bt,v,t,T),h)return T;for(i in(g=ce.event&&v.global)&&0==ce.active++&&ce.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Ft.test(v.type),f=v.url.replace(Rt,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Mt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(At.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(It,"$1"),o=(At.test(f)?"&":"?")+"_="+jt.guid+++o),v.url=f+o),v.ifModified&&(ce.lastModified[f]&&T.setRequestHeader("If-Modified-Since",ce.lastModified[f]),ce.etag[f]&&T.setRequestHeader("If-None-Match",ce.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+zt+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=Vt(_t,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=ie.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&ie.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),!i&&-1<ce.inArray("script",v.dataTypes)&&ce.inArray("json",v.dataTypes)<0&&(v.converters["text script"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(ce.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(ce.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--ce.active||ce.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return ce.get(e,t,n,"json")},getScript:function(e,t){return ce.get(e,void 0,t,"script")}}),ce.each(["get","post"],function(e,i){ce[i]=function(e,t,n,r){return v(t)&&(r=r||n,n=t,t=void 0),ce.ajax(ce.extend({url:e,type:i,dataType:r,data:t,success:n},ce.isPlainObject(e)&&e))}}),ce.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),ce._evalUrl=function(e,t,n){return ce.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){ce.globalEval(e,t,n)}})},ce.fn.extend({wrapAll:function(e){var t;return this[0]&&(v(e)&&(e=e.call(this[0])),t=ce(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return v(n)?this.each(function(e){ce(this).wrapInner(n.call(this,e))}):this.each(function(){var e=ce(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=v(t);return this.each(function(e){ce(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){ce(this).replaceWith(this.childNodes)}),this}}),ce.expr.pseudos.hidden=function(e){return!ce.expr.pseudos.visible(e)},ce.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},ce.ajaxSettings.xhr=function(){try{return new ie.XMLHttpRequest}catch(e){}};var Yt={0:200,1223:204},Qt=ce.ajaxSettings.xhr();le.cors=!!Qt&&"withCredentials"in Qt,le.ajax=Qt=!!Qt,ce.ajaxTransport(function(i){var o,a;if(le.cors||Qt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Yt[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&ie.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),ce.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),ce.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return ce.globalEval(e),e}}}),ce.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),ce.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=ce("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=Tt(e.slice(s)),e=e.slice(0,s)),v(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&ce.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?ce("<div>").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var en=/^[\s\uFEFF\xA0]+|([^\s\uFEFF\xA0])[\s\uFEFF\xA0]+$/g;ce.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),v(e))return r=ae.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(ae.call(arguments)))}).guid=e.guid=e.guid||ce.guid++,i},ce.holdReady=function(e){e?ce.readyWait++:ce.ready(!0)},ce.isArray=Array.isArray,ce.parseJSON=JSON.parse,ce.nodeName=fe,ce.isFunction=v,ce.isWindow=y,ce.camelCase=F,ce.type=x,ce.now=Date.now,ce.isNumeric=function(e){var t=ce.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},ce.trim=function(e){return null==e?"":(e+"").replace(en,"$1")},"function"==typeof define&&define.amd&&define("jquery",[],function(){return ce});var tn=ie.jQuery,nn=ie.$;return ce.noConflict=function(e){return ie.$===ce&&(ie.$=nn),e&&ie.jQuery===ce&&(ie.jQuery=tn),ce},"undefined"==typeof e&&(ie.jQuery=ie.$=ce),ce}); |
+++ resources/js/swiper-bundle.js
This file is too big to display. |
+++ resources/js/swiper-bundle.min.js
This diff is skipped because there are too many other diffs. |
+++ resources/js/swiper.js
This diff is skipped because there are too many other diffs. |
+++ resources/js/swiper.min.js
This diff is skipped because there are too many other diffs. |
+++ resources/js/swiper.min.mjs
This diff is skipped because there are too many other diffs. |
+++ resources/js/swiper.mjs
This diff is skipped because there are too many other diffs. |
+++ view/index.html
This diff is skipped because there are too many other diffs. |
+++ view/layout/Header.html
This diff is skipped because there are too many other diffs. |
+++ view/pages/AboutUs.html
This diff is skipped because there are too many other diffs. |
+++ view/pages/Marketing.html
This diff is skipped because there are too many other diffs. |
+++ view/pages/Solution.html
This diff is skipped because there are too many other diffs. |
+++ view/pages/Visualization.html
This diff is skipped because there are too many other diffs. |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?