Compare commits
2 Commits
90dbb86c94
...
9460563869
| Author | SHA1 | Date | |
|---|---|---|---|
| 9460563869 | |||
| 6dcc2eb796 |
@@ -25,6 +25,7 @@ $isAdmin = in_array(
|
||||
['BS100100','BS100200','BS100300','BS100400'],
|
||||
true
|
||||
);
|
||||
$isSuperAdmin = in_array($auth_bc, ['BS100100','BS100200'], true);
|
||||
|
||||
/* =========================
|
||||
입력
|
||||
|
||||
@@ -5,23 +5,37 @@ require_once 'db_conn.php';
|
||||
header('Content-Type: application/json');
|
||||
|
||||
try {
|
||||
// 2. 프로시저 호출 (컬럼명: itm_cd, itm_nm, area, itm_amt 등)
|
||||
$stmt = $pdo->prepare("SELECT * FROM kngil.sp_fa_comments_r()");
|
||||
// 1. 직접 SQL 실행
|
||||
// 함수 호출 대신 테이블에 직접 쿼리를 날립니다.
|
||||
$sql = "
|
||||
SELECT * FROM kngil.fa_comments
|
||||
WHERE use_yn = 'Y'
|
||||
ORDER BY sq_no ASC, fa_id DESC
|
||||
";
|
||||
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute();
|
||||
|
||||
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
||||
|
||||
// 3. W2UI를 위해 각 행에 'recid' 필드 강제 주입
|
||||
// 2. W2UI 호환성: recid 필드 매핑
|
||||
$records = [];
|
||||
foreach ($rows as $row) {
|
||||
$row['recid'] = $row['fa_id']; // 상품코드를 고유 키로 지정
|
||||
// fa_id를 그리드의 고유 키(recid)로 사용합니다.
|
||||
$row['recid'] = $row['fa_id'];
|
||||
$records[] = $row;
|
||||
}
|
||||
|
||||
// 4. 순수 JSON만 출력 (다른 echo나 공백이 섞이면 에러 발생)
|
||||
echo json_encode($records);
|
||||
// 3. JSON 출력 (한글 깨짐 방지 및 숫자 형변환)
|
||||
echo json_encode($records, JSON_UNESCAPED_UNICODE | JSON_NUMERIC_CHECK);
|
||||
|
||||
} catch (PDOException $e) {
|
||||
// 에러 발생 시 그리드가 이해할 수 있게 JSON으로 출력
|
||||
echo json_encode(['status' => 'error', 'message' => $e->getMessage()]);
|
||||
// 에러 발생 시 로그 기록 및 JSON 에러 메시지 출력
|
||||
error_log("Query Error: " . $e->getMessage());
|
||||
http_response_code(500);
|
||||
echo json_encode([
|
||||
'status' => 'error',
|
||||
'message' => '데이터 조회 중 오류가 발생했습니다.'
|
||||
], JSON_UNESCAPED_UNICODE);
|
||||
}
|
||||
?>
|
||||
@@ -37,8 +37,10 @@ try {
|
||||
|
||||
$pdo->beginTransaction();
|
||||
|
||||
// 3. 삭제 실행
|
||||
$stmt = $pdo->prepare("SELECT kngil.sp_fa_comments_d(:fa_id)");
|
||||
// 3. 삭제 실행 (함수 대신 직접 DELETE 쿼리 사용)
|
||||
// 루프 밖에서 prepare를 한 번만 수행하여 성능을 높입니다.
|
||||
$sql = "DELETE FROM kngil.fa_comments WHERE fa_id = :fa_id";
|
||||
$stmt = $pdo->prepare($sql);
|
||||
|
||||
foreach ($ids as $code) {
|
||||
$stmt->execute([':fa_id' => $code]);
|
||||
|
||||
@@ -37,34 +37,63 @@ try {
|
||||
|
||||
$pdo->beginTransaction();
|
||||
|
||||
/* ---------- 신규 추가(INSERT) ---------- */
|
||||
/* ---------- 신규 추가(INSERT) 직접 쿼리 방식 ---------- */
|
||||
if ($inserts) {
|
||||
// 호출 시 파라미터 개수와 이름을 정확히 맞춤
|
||||
$stmtI = $pdo->prepare("SELECT kngil.sp_fa_comments_i(:fa_subject, :fa_content, :sq_no, :use_yn, :cid)");
|
||||
// 1. 함수 대신 직접 INSERT 쿼리 준비
|
||||
// fa_id는 자동 생성이므로 제외, cdt는 DB 함수 사용
|
||||
$sqlI = "INSERT INTO kngil.fa_comments (
|
||||
fa_subject,
|
||||
fa_content,
|
||||
sq_no,
|
||||
use_yn,
|
||||
cid,
|
||||
cdt
|
||||
) VALUES (
|
||||
:fa_subject,
|
||||
:fa_content,
|
||||
:sq_no,
|
||||
:use_yn,
|
||||
:cid,
|
||||
CURRENT_TIMESTAMP
|
||||
)";
|
||||
|
||||
$stmtI = $pdo->prepare($sqlI);
|
||||
|
||||
foreach ($inserts as $r) {
|
||||
$stmtI->execute([
|
||||
':fa_subject' => $r['fa_subject'] ?? '', // 데이터가 없으면 빈 글자라도 보냄
|
||||
':fa_content' => $r['fa_content'] ?? '',
|
||||
':sq_no' => $r['sq_no'] ?? 0,
|
||||
':use_yn' => $r['use_yn'] ?? 'Y',
|
||||
':cid' => $user_id
|
||||
':fa_subject' => $r['fa_subject'] ?? '',
|
||||
':fa_content' => $r['fa_content'] ?? '',
|
||||
':sq_no' => (int)($r['sq_no'] ?? 0), // 숫자형 보장
|
||||
':use_yn' => $r['use_yn'] ?? 'Y',
|
||||
':cid' => $user_id
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
/* ---------- 수정(UPDATE) ---------- */
|
||||
/* ---------- 수정(UPDATE) 직접 쿼리 방식 ---------- */
|
||||
if ($updates) {
|
||||
$stmtU = $pdo->prepare("SELECT kngil.sp_fa_comments_u(:fa_id, :fa_subject, :fa_content, :sq_no, :use_yn, :mid)");
|
||||
// 1. 함수 대신 직접 UPDATE 쿼리 준비
|
||||
$sqlU = "UPDATE kngil.fa_comments
|
||||
SET
|
||||
fa_subject = :fa_subject,
|
||||
fa_content = :fa_content,
|
||||
sq_no = :sq_no,
|
||||
use_yn = :use_yn,
|
||||
mid = :mid,
|
||||
mdt = CURRENT_TIMESTAMP
|
||||
WHERE
|
||||
fa_id = :fa_id";
|
||||
|
||||
$stmtU = $pdo->prepare($sqlU);
|
||||
|
||||
foreach ($updates as $r) {
|
||||
$stmtU->execute([
|
||||
':fa_id' => $r['fa_id'] ?? '',
|
||||
':fa_subject' => $r['fa_subject'] ?? '', // 데이터가 없으면 빈 글자라도 보냄
|
||||
':fa_content' => $r['fa_content'] ?? '',
|
||||
':sq_no' => $r['sq_no'] ?? 0,
|
||||
':use_yn' => $r['use_yn'] ?? 'Y',
|
||||
':mid' => $user_id
|
||||
':fa_id' => $r['fa_id'], // 필수 조건
|
||||
':fa_subject' => $r['fa_subject'] ?? '',
|
||||
':fa_content' => $r['fa_content'] ?? '',
|
||||
':sq_no' => (int)($r['sq_no'] ?? 0),
|
||||
':use_yn' => $r['use_yn'] ?? 'Y',
|
||||
':mid' => $user_id
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,23 +5,43 @@ require_once 'db_conn.php';
|
||||
header('Content-Type: application/json');
|
||||
|
||||
try {
|
||||
// 클라이언트(JS)로부터 전달받은 검색 조건 (POST 또는 GET 방식에 맞춰 수정)
|
||||
$p_member_id = $_POST['member_id'] ?? '';
|
||||
$p_member_nm = $_POST['member_nm'] ?? '';
|
||||
|
||||
// 날짜가 빈 값('')으로 오면 반드시 null로 치환해야 PostgreSQL date 타입 에러가 안 납니다.
|
||||
$p_fbuy_dt = (!empty($_POST['fbuy_dt'])) ? $_POST['fbuy_dt'] : null;
|
||||
$p_tbuy_dt = (!empty($_POST['tbuy_dt'])) ? $_POST['tbuy_dt'] : null;
|
||||
$p_member_id = isset($_POST['member_id']) ? trim($_POST['member_id']) : '';
|
||||
$p_fbuy_dt = isset($_POST['fbuy_dt']) ? trim($_POST['fbuy_dt']) : '';
|
||||
$p_tbuy_dt = isset($_POST['tbuy_dt']) ? trim($_POST['tbuy_dt']) : '';
|
||||
|
||||
// 2. 프로시저 호출 - 파라미터 자리에 ?를 사용합니다.
|
||||
$stmt = $pdo->prepare("SELECT * FROM kngil.sp_buy_item_history_r(?, ?, ?, ?)");
|
||||
|
||||
|
||||
if ($p_fbuy_dt === '') {
|
||||
$p_fbuy_dt = '1999-01-01';
|
||||
}
|
||||
if ($p_tbuy_dt === '') {
|
||||
$p_tbuy_dt = '2099-12-31';
|
||||
}
|
||||
|
||||
$sql = "
|
||||
SELECT
|
||||
a.member_id::text, a.sq_no,
|
||||
b.member_nm::text as user_nm, b.co_nm::text, b.bs_no::text,
|
||||
a.buy_dt, a.itm_cd::text, c.itm_nm::text,
|
||||
c.area::NUMERIC as area, a.itm_qty::NUMERIC,
|
||||
a.itm_area::NUMERIC, a.add_area::NUMERIC, a.sum_area::NUMERIC,
|
||||
a.itm_amt::NUMERIC, a.dis_rt::NUMERIC, a.buy_amt::NUMERIC,
|
||||
a.vat_amt::NUMERIC, a.sum_amt::NUMERIC,
|
||||
a.end_dt, a.ok_yn::text, a.rmks::text
|
||||
FROM kngil.buy_item a
|
||||
LEFT JOIN kngil.members b ON a.member_id = b.member_id
|
||||
LEFT JOIN kngil.item c ON a.itm_cd = c.itm_cd
|
||||
WHERE (:member_id = '' OR a.member_id = :member_id)
|
||||
AND (:fbuy_dt = '' OR a.buy_dt >= :fbuy_dt::date)
|
||||
AND (:tbuy_dt = '' OR a.buy_dt <= :tbuy_dt::date)
|
||||
ORDER BY a.buy_dt DESC, a.member_id, a.sq_no DESC
|
||||
";
|
||||
|
||||
$stmt = $pdo->prepare($sql);
|
||||
// 파라미터 순서대로 배열에 담아 실행합니다.
|
||||
$stmt->execute([
|
||||
$p_member_id,
|
||||
$p_member_nm,
|
||||
$p_fbuy_dt,
|
||||
$p_tbuy_dt
|
||||
':member_id' => $p_member_id,
|
||||
':fbuy_dt' => $p_fbuy_dt,
|
||||
':tbuy_dt' => $p_tbuy_dt
|
||||
]);
|
||||
|
||||
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
||||
|
||||
@@ -1,41 +1,76 @@
|
||||
<?php
|
||||
// 1. DB 연결
|
||||
/**
|
||||
* 서비스 사용 이력 조회 API (Direct SQL 방식)
|
||||
*/
|
||||
require_once 'db_conn.php';
|
||||
|
||||
header('Content-Type: application/json');
|
||||
|
||||
try {
|
||||
// JS의 URLSearchParams에서 보낸 키값과 일치시켜야 합니다.
|
||||
$p_member_id = $_POST['member_id'] ?? '';
|
||||
$p_user_nm = $_POST['user_nm'] ?? '';
|
||||
$p_dept_nm = $_POST['dept_nm'] ?? '';
|
||||
// 1. 파라미터 수집
|
||||
$p_member_id = isset($_POST['member_id']) ? trim($_POST['member_id']) : '';
|
||||
$p_user_nm = isset($_POST['user_nm']) ? trim($_POST['user_nm']) : '';
|
||||
$p_dept_nm = isset($_POST['dept_nm']) ? trim($_POST['dept_nm']) : '';
|
||||
$p_fuse_dt = isset($_POST['fuse_dt']) ? trim($_POST['fuse_dt']) : '';
|
||||
$p_tuse_dt = isset($_POST['tuse_dt']) ? trim($_POST['tuse_dt']) : '';
|
||||
|
||||
// 2. 프로시저 호출
|
||||
// PostgreSQL 함수 호출 시 파라미터가 비어있으면 전체 조회가 되도록 설계됨
|
||||
$stmt = $pdo->prepare("SELECT * FROM kngil.sp_use_history(?, ?, ?)");
|
||||
if ($p_fuse_dt === '') {
|
||||
$p_fuse_dt = '1999-01-01';
|
||||
}
|
||||
if ($p_tuse_dt === '') {
|
||||
$p_tuse_dt = '2099-12-31';
|
||||
}
|
||||
|
||||
// 2. 직접 SQL 쿼리 작성 (함수 내부 로직을 그대로 가져옴)
|
||||
$sql = "
|
||||
SELECT
|
||||
b.member_id::character varying,
|
||||
a.use_dt, -- DATE 타입
|
||||
a.user_id::character varying,
|
||||
a.sq_no,
|
||||
b.user_nm::character varying,
|
||||
b.dept_nm::character varying,
|
||||
b.posit_nm::character varying,
|
||||
b.use_yn::character varying,
|
||||
a.use_area,
|
||||
kngil.fn_base_nm(a.ser_bc)::character varying as ser_bc,
|
||||
a.cdt
|
||||
FROM kngil.use_history a
|
||||
INNER JOIN kngil.users b ON a.user_id = b.user_id
|
||||
WHERE (:member_id = '' OR b.member_id = :member_id) -- ID가 없어도 나오게
|
||||
-- 검색 조건: 값이 있을 때만 필터링
|
||||
AND (:user_nm = '' OR b.user_nm LIKE '%' || :user_nm || '%')
|
||||
AND (:dept_nm = '' OR b.dept_nm LIKE '%' || :dept_nm || '%')
|
||||
AND a.use_dt::date >= :fuse_dt::date
|
||||
AND a.use_dt::date <= :tuse_dt::date
|
||||
ORDER BY a.use_dt DESC, a.sq_no DESC
|
||||
";
|
||||
|
||||
$stmt = $pdo->prepare($sql);
|
||||
|
||||
// 파라미터 바인딩 (이름 기반 바인딩이 더 직관적입니다)
|
||||
$stmt->execute([
|
||||
$p_member_id,
|
||||
$p_user_nm,
|
||||
$p_dept_nm
|
||||
':member_id' => $p_member_id,
|
||||
':user_nm' => $p_user_nm,
|
||||
':dept_nm' => $p_dept_nm,
|
||||
':fuse_dt' => $p_fuse_dt,
|
||||
':tuse_dt' => $p_tuse_dt
|
||||
]);
|
||||
|
||||
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
||||
|
||||
// 3. W2UI를 위해 각 행에 'recid' 필드 주입
|
||||
// 3. W2UI용 recid 가공
|
||||
$records = [];
|
||||
foreach ($rows as $index => $row) {
|
||||
// user_id와 sq_no 조합으로 유일키 생성 (권장)
|
||||
// 만약 데이터가 없을 경우를 대비해 $index를 활용할 수도 있음
|
||||
$row['recid'] = ($row['user_id'] ?? 'unknown') . '_' . ($row['sq_no'] ?? $index);
|
||||
$row['recid'] = $row['user_id'] . '_' . ($row['sq_no'] ?? $index);
|
||||
$records[] = $row;
|
||||
}
|
||||
|
||||
// 4. 결과 출력
|
||||
echo json_encode($records, JSON_UNESCAPED_UNICODE); // 한글 깨짐 방지
|
||||
echo json_encode($records, JSON_UNESCAPED_UNICODE | JSON_NUMERIC_CHECK);
|
||||
|
||||
} catch (PDOException $e) {
|
||||
error_log("DB Error: " . $e->getMessage());
|
||||
http_response_code(500);
|
||||
echo json_encode(['status' => 'error', 'message' => $e->getMessage()]);
|
||||
echo json_encode(['status' => 'error', 'message' => $e->getMessage()], JSON_UNESCAPED_UNICODE);
|
||||
}
|
||||
?>
|
||||
@@ -14,9 +14,9 @@ if ($scopesRaw !== false && $scopesRaw !== '') {
|
||||
}
|
||||
|
||||
return [
|
||||
'issuer' => $issuer, // 예: https://idp.example.com/auth/realms/master
|
||||
'client_id' => $clientId,
|
||||
'client_secret' => $clientSecret,
|
||||
'redirect_url' => $redirectUrl,
|
||||
'scopes' => $scopes,
|
||||
'issuer' => 'https://api.descope.com/v1/apps/P2x26KgEwOu0xIwgNZutJjIZc1zz', // 예: https://idp.example.com/auth/realms/master
|
||||
'client_id' => 'UDJ4MjZLZ0V3T3UweEl3Z05adXRKaklaYzF6ejpUUEEzOTVtSmx5MXhiczFwZWxrUHdDVFlvU2hiYXc=',
|
||||
'client_secret' => 'uTjiKweHYUINalroA1LVu9OacbEEMPtPbfFITfHu3r5',
|
||||
'redirect_url' => "https://kngil.hmac.kr/kngil/auth/oidc-callback.php",
|
||||
'scopes' => ['openid'],
|
||||
];
|
||||
|
||||
@@ -530,3 +530,39 @@ button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
/* 모든 W2UI 그리드 헤더 텍스트와 정렬 아이콘을 중앙으로 */
|
||||
.w2ui-col-header,
|
||||
.w2ui-col-header > div {
|
||||
display: flex !important;
|
||||
justify-content: center !important; /* 가로 중앙 */
|
||||
align-items: center !important; /* 세로 중앙 */
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
/* 정렬 화살표 위치 조정 */
|
||||
.w2ui-col-header .w2ui-sort-up,
|
||||
.w2ui-col-header .w2ui-sort-down {
|
||||
margin-left: 5px !important;
|
||||
}
|
||||
|
||||
|
||||
/* 1. 팝업 메인 제목 가운데 정렬 */
|
||||
.w2ui-popup-title {
|
||||
text-align: center !important;
|
||||
padding-left: 0 !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* 3. 합계(Summary) 행 문구 정렬 */
|
||||
.w2ui-grid-summary td {
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
/* 숫자 데이터 합계는 우측 정렬 유지 (선택 사항) */
|
||||
/* nth-child를 사용하여 면적/금액 컬럼만 오른쪽으로 보낼 수 있습니다. */
|
||||
.w2ui-grid-summary td:nth-child(n+9) {
|
||||
text-align: right !important;
|
||||
padding-right: 10px !important;
|
||||
}
|
||||
@@ -1157,7 +1157,7 @@ html:has(.sitemap.open).lenis {
|
||||
.floating-menu {
|
||||
width: 80px;
|
||||
position: fixed;
|
||||
top: 124px;
|
||||
top: 96px;
|
||||
right: 0px;
|
||||
z-index: 98;
|
||||
padding: 61px 0 61px 8px;
|
||||
@@ -1168,6 +1168,12 @@ html:has(.sitemap.open).lenis {
|
||||
filter: drop-shadow(-4px 4px 10px rgba(0, 0, 0, 0.25));
|
||||
overflow: hidden;
|
||||
}
|
||||
@media only screen and (max-width: 1439px) {
|
||||
.floating-menu {
|
||||
width: 64px;
|
||||
padding: 52px 0 52px 6px;
|
||||
}
|
||||
}
|
||||
.floating-menu ul {
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
@@ -1187,6 +1193,12 @@ html:has(.sitemap.open).lenis {
|
||||
justify-content: center;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
@media only screen and (max-width: 1439px) {
|
||||
.floating-menu li {
|
||||
width: 60px;
|
||||
height: 62px;
|
||||
}
|
||||
}
|
||||
.floating-menu li a {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
@@ -1220,10 +1232,21 @@ html:has(.sitemap.open).lenis {
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
}
|
||||
@media only screen and (max-width: 1439px) {
|
||||
.floating-menu li span {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
.floating-menu li i {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
@media only screen and (max-width: 1439px) {
|
||||
.floating-menu li i {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
}
|
||||
.floating-menu li i.ico-buy {
|
||||
background-color: #fff;
|
||||
-webkit-mask-image: url("../img/ico/ico_floating_buy.svg");
|
||||
@@ -1430,11 +1453,14 @@ label {
|
||||
|
||||
[type=checkbox] {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
aspect-ratio: 1/1;
|
||||
cursor: pointer;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Crect x='0.828125' y='1.33093' width='14.3382' height='14.3382' rx='0.642857' stroke='black' stroke-opacity='0.13'/%3E%3Cpath d='M11.6885 6.51624C11.6612 6.57757 11.6218 6.63277 11.5726 6.67855L7.0693 11.1759C6.97555 11.2695 6.84847 11.3221 6.71597 11.3221C6.58346 11.3221 6.45638 11.2695 6.36263 11.1759L4.53263 9.34522C4.44431 9.25043 4.39623 9.12507 4.39852 8.99554C4.4008 8.866 4.45328 8.74241 4.54488 8.6508C4.63649 8.55919 4.76008 8.50672 4.88962 8.50443C5.01915 8.50215 5.14452 8.55023 5.2393 8.63855L6.7173 10.1159L10.866 5.97188C10.9117 5.92276 10.9669 5.88336 11.0283 5.85603C11.0896 5.8287 11.1558 5.81401 11.2229 5.81282C11.2901 5.81164 11.3568 5.82399 11.419 5.84913C11.4813 5.87428 11.5378 5.91171 11.5853 5.95919C11.6328 6.00667 11.6702 6.06323 11.6954 6.12548C11.7205 6.18774 11.7329 6.25443 11.7317 6.32156C11.7305 6.3887 11.7158 6.45491 11.6885 6.51624Z' fill='white'/%3E%3C/svg%3E");
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
[type=checkbox]:checked {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Crect x='0.328125' y='0.830933' width='15.3382' height='15.3382' rx='1.14286' fill='%231B7F63'/%3E%3Cpath d='M11.6885 6.51624C11.6612 6.57757 11.6218 6.63277 11.5726 6.67855L7.0693 11.1759C6.97555 11.2695 6.84847 11.3221 6.71597 11.3221C6.58346 11.3221 6.45638 11.2695 6.36263 11.1759L4.53263 9.34522C4.44431 9.25043 4.39623 9.12507 4.39852 8.99554C4.4008 8.866 4.45328 8.74241 4.54488 8.6508C4.63649 8.55919 4.76008 8.50672 4.88962 8.50443C5.01915 8.50215 5.14452 8.55023 5.2393 8.63855L6.7173 10.1159L10.866 5.97188C10.9117 5.92276 10.9669 5.88336 11.0283 5.85603C11.0896 5.8287 11.1558 5.81401 11.2229 5.81282C11.2901 5.81164 11.3568 5.82399 11.419 5.84913C11.4813 5.87428 11.5378 5.91171 11.5853 5.95919C11.6328 6.00667 11.6702 6.06323 11.6954 6.12548C11.7205 6.18774 11.7329 6.25443 11.7317 6.32156C11.7305 6.3887 11.7158 6.45491 11.6885 6.51624Z' fill='white'/%3E%3C/svg%3E");
|
||||
@@ -1686,6 +1712,7 @@ label {
|
||||
}
|
||||
.popup-in.mypage .pop-body .my-history {
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
margin-top: 40px;
|
||||
}
|
||||
.popup-in.mypage .pop-body .my-history h5 {
|
||||
@@ -1704,6 +1731,7 @@ label {
|
||||
justify-content: space-between;
|
||||
}
|
||||
.popup-in.mypage .pop-body .my-history table {
|
||||
min-width: 100%;
|
||||
border: none;
|
||||
border-top: 2px solid #000;
|
||||
border-bottom: 2px solid rgba(0, 0, 0, 0.2);
|
||||
@@ -1773,6 +1801,7 @@ label {
|
||||
gap: 30px;
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
@@ -2212,7 +2241,6 @@ label {
|
||||
border-radius: 2px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||
background-color: rgba(255, 255, 255, 0.6666666667);
|
||||
box-shadow: inset 0px 0px 1px rgba(0, 0, 0, 0.1333333333);
|
||||
padding: 0;
|
||||
|
||||
1770
kngil/css/style.css
BIN
kngil/download/KNGIL_leaflet.pdf
Normal file
25
kngil/img/_favicon.svg
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg width="64" height="64" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" data-name="레이어_2">
|
||||
<defs>
|
||||
<style>.cls-1 {
|
||||
fill: #231815;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: #ca2829;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: #263b7c;
|
||||
}</style>
|
||||
</defs>
|
||||
<g class="layer">
|
||||
<title>Layer 1</title>
|
||||
<g data-name="레이어_1" id="_레이어_1-2">
|
||||
<g id="svg_1">
|
||||
<path class="cls-2" d="m31.59,31.61c-1.81,0.72 -2.76,0.04 -3.19,-0.47l-4.83,5.85c-4.09,4.9 -8.97,6.79 -12.69,5.16l19.3,-23.16s1.93,-2.63 4.12,-4.35l0,0c0.16,-0.12 0.21,-0.25 0.18,-0.47c-0.14,-0.58 -1.42,-0.97 -2.96,-0.95l0,0l-3.83,0.02s-1.42,-0.07 -2.35,0c-0.19,0.02 -2.67,0.12 -3.48,0.21c-0.86,0.07 -3.04,0.46 -3.66,0.63c-3.91,1.07 -7.67,2.98 -10.57,6.37c-3.83,4.46 -5.82,9.74 -5.6,14.85c0.16,3.77 1.52,7.09 3.83,9.34c2.18,2.11 4.9,3.21 7.86,3.21c0.76,0 1.54,-0.07 2.32,-0.21c3.85,-0.72 7.61,-3.18 10.9,-7.13l6.98,-8.44c-0.23,-0.32 -0.91,-1 -2.28,-0.46l0,0l-0.06,0zm-25.04,3.46c-0.16,-3.69 1.36,-7.62 4.32,-11.03c3.5,-4.04 6.34,-5.23 9.05,-5.41c1.26,-0.09 2.41,0.09 3.68,0.72l-16.17,19.45c-0.53,-1.07 -0.82,-2.35 -0.88,-3.72l0,0l0,-0.02z" id="svg_2"/>
|
||||
<path class="cls-3" d="m61.56,25.31c-0.31,-3.84 -1.98,-7.27 -4.59,-9.41c-6.23,-5.13 -13.46,-3.39 -19.87,4.74l-7.3,8.83l0,0l-0.6,0.74c0.14,0.21 0.66,0.75 2.04,0.19c1.69,-0.68 2.86,0.04 3.42,0.72l1.03,-1.25l4.75,-5.74l0.04,-0.05c4.88,-6.2 9.53,-7.57 13.83,-4.02c1.56,1.28 2.55,3.37 2.74,5.72c0.29,3.55 -1.11,7.58 -4.2,11.1c-4.34,4.92 -8.52,6.37 -12.72,4.86l6.27,-7.72l-3.35,-3.49l-9.36,11.53s-1.87,2.55 -4.03,4.27c-0.23,0.16 -0.33,0.28 -0.27,0.54c0.12,0.56 1.34,0.93 2.82,0.95l0.02,0l3.91,0s3.33,0.02 4.03,-0.04c0.14,-0.02 2.49,-0.23 2.96,-0.26c0.41,-0.04 2.43,-0.44 2.9,-0.56c3.97,-1.12 7.18,-2.93 10.18,-6.57c3.91,-4.71 5.84,-10.08 5.43,-15.12l0,0l-0.08,0.04z" id="svg_3"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
BIN
kngil/img/analysis/bg_analysis_title.jpg
Normal file
|
After Width: | Height: | Size: 454 KiB |
BIN
kngil/img/analysis/bg_attribute_title.png
Normal file
|
After Width: | Height: | Size: 972 KiB |
BIN
kngil/img/analysis/bg_spatial_title.png
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
BIN
kngil/img/analysis/bg_statistics_title.png
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
3
kngil/img/analysis/ico_marker.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.8899 9.6671C16.8896 11.5825 16.1284 13.4193 14.7739 14.7736C13.4194 16.1278 11.5825 16.8886 9.6671 16.8886M16.8899 9.6671C16.8899 8.71859 16.7031 7.77936 16.3401 6.90305C15.9771 6.02674 15.4451 5.23051 14.7744 4.55981C14.1037 3.88911 13.3075 3.35708 12.4311 2.9941C11.5548 2.63112 10.6156 2.4443 9.6671 2.4443M16.8899 9.6671H18.3329M9.6671 16.8886C7.75194 16.8883 5.91533 16.1273 4.56111 14.7731C3.20689 13.4189 2.44594 11.5823 2.4456 9.6671M9.6671 16.8886V18.3329M9.6671 2.4443C7.75172 2.44464 5.91491 3.20577 4.56065 4.56027C3.20639 5.91477 2.4456 7.75172 2.4456 9.6671M9.6671 2.4443V1M2.4456 9.6671H1M11.1114 9.6671C11.1114 9.85677 11.074 10.0446 11.0015 10.2198C10.9289 10.395 10.8225 10.5543 10.6884 10.6884C10.5543 10.8225 10.395 10.9289 10.2198 11.0015C10.0446 11.074 9.85677 11.1114 9.6671 11.1114C9.47743 11.1114 9.28962 11.074 9.11439 11.0015C8.93916 10.9289 8.77994 10.8225 8.64583 10.6884C8.51171 10.5543 8.40532 10.395 8.33274 10.2198C8.26016 10.0446 8.2228 9.85677 8.2228 9.6671C8.2228 9.28405 8.37497 8.91668 8.64583 8.64583C8.91668 8.37497 9.28405 8.2228 9.6671 8.2228C10.0502 8.2228 10.4175 8.37497 10.6884 8.64583C10.9592 8.91668 11.1114 9.28405 11.1114 9.6671Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
BIN
kngil/img/analysis/img_attribute_01.png
Normal file
|
After Width: | Height: | Size: 829 KiB |
BIN
kngil/img/analysis/img_attribute_02.png
Normal file
|
After Width: | Height: | Size: 903 KiB |
BIN
kngil/img/analysis/img_attribute_03.png
Normal file
|
After Width: | Height: | Size: 647 KiB |
47
kngil/img/analysis/img_spatial_01.svg
Normal file
|
After Width: | Height: | Size: 124 KiB |
37
kngil/img/analysis/img_spatial_01_apx.svg
Normal file
|
After Width: | Height: | Size: 32 KiB |
12
kngil/img/analysis/img_spatial_01_apx_.svg
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
kngil/img/analysis/img_spatial_02.png
Normal file
|
After Width: | Height: | Size: 579 KiB |
160
kngil/img/analysis/img_spatial_02_apx.svg
Normal file
|
After Width: | Height: | Size: 94 KiB |
188
kngil/img/analysis/img_spatial_02_apx_.svg
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
kngil/img/analysis/img_spatial_03.png
Normal file
|
After Width: | Height: | Size: 428 KiB |
81
kngil/img/analysis/img_spatial_03_apx.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<svg width="1027" height="357" viewBox="0 0 1027 357" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style>
|
||||
.marker {
|
||||
opacity: 0;
|
||||
animation: marker-appear 0.6s ease-in forwards, marker-blink 1.8s ease-in-out infinite;
|
||||
}
|
||||
/* transform-origin: viewBox(0 0 1027 357) 기준 각 마커 원형 path 중심 */
|
||||
.marker-01 {
|
||||
transform-origin: 686.008px 28px;
|
||||
animation-delay: 0s, 0.6s;
|
||||
}
|
||||
.marker-02 {
|
||||
transform-origin: 437.008px 139px;
|
||||
animation-delay: 0.3s, 0.9s;
|
||||
}
|
||||
.marker-03 {
|
||||
transform-origin: 262.008px 186px;
|
||||
animation-delay: 0.6s, 1.2s;
|
||||
}
|
||||
.marker-04 {
|
||||
transform-origin: 309.008px 258px;
|
||||
animation-delay: 0.9s, 1.5s;
|
||||
}
|
||||
.marker-05 {
|
||||
transform-origin: 151.008px 280px;
|
||||
animation-delay: 1.2s, 1.8s;
|
||||
}
|
||||
@keyframes marker-appear {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
}
|
||||
@keyframes marker-blink {
|
||||
0%, 100% {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.35;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g class="marker marker-01">
|
||||
<path d="M686.008 15.5C692.912 15.5 698.508 21.0962 698.508 28C698.508 34.9038 692.912 40.5 686.008 40.5C679.104 40.5 673.508 34.9038 673.508 28C673.508 21.0962 679.104 15.5 686.008 15.5Z" stroke="#FF1919"/>
|
||||
<path d="M686.007 21.4141C687.768 21.4141 689.459 22.1047 690.716 23.3379C691.894 24.4943 692.604 26.0413 692.716 27.6807L692.73 28.0098C692.742 28.899 692.576 29.7814 692.244 30.6064C691.912 31.4324 691.419 32.1846 690.794 32.8184C690.169 33.4522 689.423 33.9553 688.602 34.2988C687.78 34.6423 686.898 34.8193 686.008 34.8193C685.117 34.8193 684.236 34.6423 683.414 34.2988C682.593 33.9553 681.848 33.4521 681.223 32.8184C680.597 32.1845 680.104 31.4325 679.771 30.6064C679.439 29.7815 679.275 28.8989 679.286 28.0098C679.32 26.2492 680.042 24.5712 681.299 23.3379C682.556 22.1048 684.246 21.4142 686.007 21.4141Z" stroke="#FF1919"/>
|
||||
<path d="M699.008 28C699.008 35.1799 693.188 41 686.008 41C678.828 41 673.008 35.1799 673.008 28C673.008 20.8201 678.828 15 686.008 15C693.188 15 699.008 20.8201 699.008 28Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
<path d="M693.23 28.003C693.229 29.9184 692.468 31.7552 691.114 33.1095C689.759 34.4637 687.922 35.2245 686.007 35.2245M693.23 28.003C693.23 27.0545 693.043 26.1153 692.68 25.239C692.317 24.3627 691.785 23.5664 691.114 22.8957C690.444 22.225 689.647 21.693 688.771 21.33C687.895 20.9671 686.955 20.7802 686.007 20.7802M693.23 28.003H694.673M686.007 35.2245C684.092 35.2242 682.255 34.4632 680.901 33.109C679.547 31.7548 678.786 29.9182 678.785 28.003M686.007 35.2245V36.6688M686.007 20.7802C684.092 20.7806 682.255 21.5417 680.9 22.8962C679.546 24.2507 678.785 26.0877 678.785 28.003M686.007 20.7802V19.3359M678.785 28.003H677.34M687.451 28.003C687.451 28.1927 687.414 28.3805 687.341 28.5557C687.269 28.731 687.162 28.8902 687.028 29.0243C686.894 29.1584 686.735 29.2648 686.56 29.3374C686.384 29.41 686.197 29.4473 686.007 29.4473C685.817 29.4473 685.629 29.41 685.454 29.3374C685.279 29.2648 685.12 29.1584 684.986 29.0243C684.852 28.8902 684.745 28.731 684.673 28.5557C684.6 28.3805 684.563 28.1927 684.563 28.003C684.563 27.62 684.715 27.2526 684.986 26.9818C685.257 26.7109 685.624 26.5587 686.007 26.5587C686.39 26.5587 686.757 26.7109 687.028 26.9818C687.299 27.2526 687.451 27.62 687.451 28.003Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</g>
|
||||
<g class="marker marker-02">
|
||||
<path d="M437.008 126.5C443.912 126.5 449.508 132.096 449.508 139C449.508 145.904 443.912 151.5 437.008 151.5C430.104 151.5 424.508 145.904 424.508 139C424.508 132.096 430.104 126.5 437.008 126.5Z" stroke="#FF1919"/>
|
||||
<path d="M437.007 132.414C438.768 132.414 440.459 133.105 441.716 134.338C442.894 135.494 443.604 137.041 443.716 138.681L443.73 139.01C443.742 139.899 443.576 140.781 443.244 141.606C442.912 142.432 442.419 143.185 441.794 143.818C441.169 144.452 440.423 144.955 439.602 145.299C438.78 145.642 437.898 145.819 437.008 145.819C436.117 145.819 435.236 145.642 434.414 145.299C433.593 144.955 432.848 144.452 432.223 143.818C431.597 143.185 431.104 142.432 430.771 141.606C430.439 140.781 430.275 139.899 430.286 139.01C430.32 137.249 431.042 135.571 432.299 134.338C433.556 133.105 435.246 132.414 437.007 132.414Z" stroke="#FF1919"/>
|
||||
<path d="M450.008 139C450.008 146.18 444.188 152 437.008 152C429.828 152 424.008 146.18 424.008 139C424.008 131.82 429.828 126 437.008 126C444.188 126 450.008 131.82 450.008 139Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
<path d="M444.23 139.003C444.229 140.918 443.468 142.755 442.114 144.109C440.759 145.464 438.922 146.225 437.007 146.225M444.23 139.003C444.23 138.055 444.043 137.115 443.68 136.239C443.317 135.363 442.785 134.566 442.114 133.896C441.444 133.225 440.647 132.693 439.771 132.33C438.895 131.967 437.955 131.78 437.007 131.78M444.23 139.003H445.673M437.007 146.225C435.092 146.224 433.255 145.463 431.901 144.109C430.547 142.755 429.786 140.918 429.785 139.003M437.007 146.225V147.669M437.007 131.78C435.092 131.781 433.255 132.542 431.9 133.896C430.546 135.251 429.785 137.088 429.785 139.003M437.007 131.78V130.336M429.785 139.003H428.34M438.451 139.003C438.451 139.193 438.414 139.381 438.341 139.556C438.269 139.731 438.162 139.89 438.028 140.024C437.894 140.158 437.735 140.265 437.56 140.337C437.384 140.41 437.197 140.447 437.007 140.447C436.817 140.447 436.629 140.41 436.454 140.337C436.279 140.265 436.12 140.158 435.986 140.024C435.852 139.89 435.745 139.731 435.673 139.556C435.6 139.381 435.563 139.193 435.563 139.003C435.563 138.62 435.715 138.253 435.986 137.982C436.257 137.711 436.624 137.559 437.007 137.559C437.39 137.559 437.757 137.711 438.028 137.982C438.299 138.253 438.451 138.62 438.451 139.003Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</g>
|
||||
<g class="marker marker-03">
|
||||
<path d="M262.008 173.5C268.912 173.5 274.508 179.096 274.508 186C274.508 192.904 268.912 198.5 262.008 198.5C255.104 198.5 249.508 192.904 249.508 186C249.508 179.096 255.104 173.5 262.008 173.5Z" stroke="#FF1919"/>
|
||||
<path d="M262.007 179.414C263.768 179.414 265.459 180.105 266.716 181.338C267.894 182.494 268.604 184.041 268.716 185.681L268.73 186.01C268.742 186.899 268.576 187.781 268.244 188.606C267.912 189.432 267.419 190.185 266.794 190.818C266.169 191.452 265.423 191.955 264.602 192.299C263.78 192.642 262.898 192.819 262.008 192.819C261.117 192.819 260.236 192.642 259.414 192.299C258.593 191.955 257.848 191.452 257.223 190.818C256.597 190.185 256.104 189.432 255.771 188.606C255.439 187.781 255.275 186.899 255.286 186.01C255.32 184.249 256.042 182.571 257.299 181.338C258.556 180.105 260.246 179.414 262.007 179.414Z" stroke="#FF1919"/>
|
||||
<path d="M275.008 186C275.008 193.18 269.188 199 262.008 199C254.828 199 249.008 193.18 249.008 186C249.008 178.82 254.828 173 262.008 173C269.188 173 275.008 178.82 275.008 186Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
<path d="M269.23 186.003C269.229 187.918 268.468 189.755 267.114 191.109C265.759 192.464 263.922 193.225 262.007 193.225M269.23 186.003C269.23 185.055 269.043 184.115 268.68 183.239C268.317 182.363 267.785 181.566 267.114 180.896C266.444 180.225 265.647 179.693 264.771 179.33C263.895 178.967 262.955 178.78 262.007 178.78M269.23 186.003H270.673M262.007 193.225C260.092 193.224 258.255 192.463 256.901 191.109C255.547 189.755 254.786 187.918 254.785 186.003M262.007 193.225V194.669M262.007 178.78C260.092 178.781 258.255 179.542 256.9 180.896C255.546 182.251 254.785 184.088 254.785 186.003M262.007 178.78V177.336M254.785 186.003H253.34M263.451 186.003C263.451 186.193 263.414 186.381 263.341 186.556C263.269 186.731 263.162 186.89 263.028 187.024C262.894 187.158 262.735 187.265 262.56 187.337C262.384 187.41 262.197 187.447 262.007 187.447C261.817 187.447 261.629 187.41 261.454 187.337C261.279 187.265 261.12 187.158 260.986 187.024C260.852 186.89 260.745 186.731 260.673 186.556C260.6 186.381 260.563 186.193 260.563 186.003C260.563 185.62 260.715 185.253 260.986 184.982C261.257 184.711 261.624 184.559 262.007 184.559C262.39 184.559 262.757 184.711 263.028 184.982C263.299 185.253 263.451 185.62 263.451 186.003Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</g>
|
||||
<g class="marker marker-04">
|
||||
<path d="M309.008 245.5C315.912 245.5 321.508 251.096 321.508 258C321.508 264.904 315.912 270.5 309.008 270.5C302.104 270.5 296.508 264.904 296.508 258C296.508 251.096 302.104 245.5 309.008 245.5Z" stroke="#FF1919"/>
|
||||
<path d="M309.007 251.414C310.768 251.414 312.459 252.105 313.716 253.338C314.894 254.494 315.604 256.041 315.716 257.681L315.73 258.01C315.742 258.899 315.576 259.781 315.244 260.606C314.912 261.432 314.419 262.185 313.794 262.818C313.169 263.452 312.423 263.955 311.602 264.299C310.78 264.642 309.898 264.819 309.008 264.819C308.117 264.819 307.236 264.642 306.414 264.299C305.593 263.955 304.848 263.452 304.223 262.818C303.597 262.185 303.104 261.432 302.771 260.606C302.439 259.781 302.275 258.899 302.286 258.01C302.32 256.249 303.042 254.571 304.299 253.338C305.556 252.105 307.246 251.414 309.007 251.414Z" stroke="#FF1919"/>
|
||||
<path d="M322.008 258C322.008 265.18 316.188 271 309.008 271C301.828 271 296.008 265.18 296.008 258C296.008 250.82 301.828 245 309.008 245C316.188 245 322.008 250.82 322.008 258Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
<path d="M316.23 258.003C316.229 259.918 315.468 261.755 314.114 263.109C312.759 264.464 310.922 265.225 309.007 265.225M316.23 258.003C316.23 257.055 316.043 256.115 315.68 255.239C315.317 254.363 314.785 253.566 314.114 252.896C313.444 252.225 312.647 251.693 311.771 251.33C310.895 250.967 309.955 250.78 309.007 250.78M316.23 258.003H317.673M309.007 265.225C307.092 265.224 305.255 264.463 303.901 263.109C302.547 261.755 301.786 259.918 301.785 258.003M309.007 265.225V266.669M309.007 250.78C307.092 250.781 305.255 251.542 303.9 252.896C302.546 254.251 301.785 256.088 301.785 258.003M309.007 250.78V249.336M301.785 258.003H300.34M310.451 258.003C310.451 258.193 310.414 258.381 310.341 258.556C310.269 258.731 310.162 258.89 310.028 259.024C309.894 259.158 309.735 259.265 309.56 259.337C309.384 259.41 309.197 259.447 309.007 259.447C308.817 259.447 308.629 259.41 308.454 259.337C308.279 259.265 308.12 259.158 307.986 259.024C307.852 258.89 307.745 258.731 307.673 258.556C307.6 258.381 307.563 258.193 307.563 258.003C307.563 257.62 307.715 257.253 307.986 256.982C308.257 256.711 308.624 256.559 309.007 256.559C309.39 256.559 309.757 256.711 310.028 256.982C310.299 257.253 310.451 257.62 310.451 258.003Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</g>
|
||||
<g class="marker marker-05">
|
||||
<path d="M151.008 267.5C157.912 267.5 163.508 273.096 163.508 280C163.508 286.904 157.912 292.5 151.008 292.5C144.104 292.5 138.508 286.904 138.508 280C138.508 273.096 144.104 267.5 151.008 267.5Z" stroke="#FF1919"/>
|
||||
<path d="M151.007 273.414C152.768 273.414 154.459 274.105 155.716 275.338C156.894 276.494 157.604 278.041 157.716 279.681L157.73 280.01C157.742 280.899 157.576 281.781 157.244 282.606C156.912 283.432 156.419 284.185 155.794 284.818C155.169 285.452 154.423 285.955 153.602 286.299C152.78 286.642 151.898 286.819 151.008 286.819C150.117 286.819 149.236 286.642 148.414 286.299C147.593 285.955 146.848 285.452 146.223 284.818C145.597 284.185 145.104 283.432 144.771 282.606C144.439 281.781 144.275 280.899 144.286 280.01C144.32 278.249 145.042 276.571 146.299 275.338C147.556 274.105 149.246 273.414 151.007 273.414Z" stroke="#FF1919"/>
|
||||
<path d="M164.008 280C164.008 287.18 158.188 293 151.008 293C143.828 293 138.008 287.18 138.008 280C138.008 272.82 143.828 267 151.008 267C158.188 267 164.008 272.82 164.008 280Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
<path d="M158.23 280.003C158.229 281.918 157.468 283.755 156.114 285.109C154.759 286.464 152.922 287.225 151.007 287.225M158.23 280.003C158.23 279.055 158.043 278.115 157.68 277.239C157.317 276.363 156.785 275.566 156.114 274.896C155.444 274.225 154.647 273.693 153.771 273.33C152.895 272.967 151.955 272.78 151.007 272.78M158.23 280.003H159.673M151.007 287.225C149.092 287.224 147.255 286.463 145.901 285.109C144.547 283.755 143.786 281.918 143.785 280.003M151.007 287.225V288.669M151.007 272.78C149.092 272.781 147.255 273.542 145.9 274.896C144.546 276.251 143.785 278.088 143.785 280.003M151.007 272.78V271.336M143.785 280.003H142.34M152.451 280.003C152.451 280.193 152.414 280.381 152.341 280.556C152.269 280.731 152.162 280.89 152.028 281.024C151.894 281.158 151.735 281.265 151.56 281.337C151.384 281.41 151.197 281.447 151.007 281.447C150.817 281.447 150.629 281.41 150.454 281.337C150.279 281.265 150.12 281.158 149.986 281.024C149.852 280.89 149.745 280.731 149.673 280.556C149.6 280.381 149.563 280.193 149.563 280.003C149.563 279.62 149.715 279.253 149.986 278.982C150.257 278.711 150.624 278.559 151.007 278.559C151.39 278.559 151.757 278.711 152.028 278.982C152.299 279.253 152.451 279.62 152.451 280.003Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
80
kngil/img/analysis/img_spatial_03_apx_.svg
Normal file
@@ -0,0 +1,80 @@
|
||||
<svg width="1027" height="357" viewBox="0 0 1027 357" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style>
|
||||
.marker {
|
||||
opacity: 0;
|
||||
animation: marker-appear 0.6s ease-in forwards, marker-blink 1.8s ease-in-out infinite;
|
||||
}
|
||||
.marker-01 {
|
||||
transform-origin: 686px 28px;
|
||||
animation-delay: 0s, 0.6s;
|
||||
}
|
||||
.marker-02 {
|
||||
transform-origin: 437px 139px;
|
||||
animation-delay: 0.3s, 0.9s;
|
||||
}
|
||||
.marker-03 {
|
||||
transform-origin: 262px 186px;
|
||||
animation-delay: 0.6s, 1.2s;
|
||||
}
|
||||
.marker-04 {
|
||||
transform-origin: 309px 258px;
|
||||
animation-delay: 0.9s, 1.5s;
|
||||
}
|
||||
.marker-05 {
|
||||
transform-origin: 151px 280px;
|
||||
animation-delay: 1.2s, 1.8s;
|
||||
}
|
||||
@keyframes marker-appear {
|
||||
0% {
|
||||
opacity: 0;
|
||||
ransform: scale(1);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
}
|
||||
@keyframes marker-blink {
|
||||
0%, 100% {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.35;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g class="marker marker-01">
|
||||
<path d="M686.009 15.5C692.913 15.5 698.509 21.0962 698.509 28C698.509 34.9038 692.913 40.5 686.009 40.5C679.105 40.5 673.509 34.9038 673.509 28C673.509 21.0962 679.105 15.5 686.009 15.5Z" stroke="#FF1919"/>
|
||||
<path d="M686.008 21.4141C687.769 21.4141 689.46 22.1047 690.717 23.3379C691.895 24.4943 692.605 26.0413 692.717 27.6807L692.731 28.0098C692.743 28.899 692.577 29.7814 692.245 30.6064C691.913 31.4324 691.42 32.1846 690.795 32.8184C690.17 33.4522 689.424 33.9553 688.603 34.2988C687.781 34.6423 686.899 34.8193 686.009 34.8193C685.118 34.8193 684.237 34.6423 683.415 34.2988C682.594 33.9553 681.849 33.4521 681.224 32.8184C680.598 32.1845 680.105 31.4325 679.772 30.6064C679.44 29.7815 679.276 28.8989 679.287 28.0098C679.321 26.2492 680.043 24.5712 681.3 23.3379C682.557 22.1048 684.247 21.4142 686.008 21.4141Z" stroke="#FF1919"/>
|
||||
<path d="M699.009 28C699.009 35.1799 693.189 41 686.009 41C678.829 41 673.009 35.1799 673.009 28C673.009 20.8201 678.829 15 686.009 15C693.189 15 699.009 20.8201 699.009 28Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
<path d="M693.232 28.003C693.231 29.9184 692.47 31.7552 691.116 33.1095C689.761 34.4637 687.924 35.2245 686.009 35.2245M693.232 28.003C693.232 27.0545 693.045 26.1153 692.682 25.239C692.319 24.3627 691.787 23.5664 691.116 22.8957C690.445 22.225 689.649 21.693 688.773 21.33C687.897 20.9671 686.957 20.7802 686.009 20.7802M693.232 28.003H694.675M686.009 35.2245C684.094 35.2242 682.257 34.4632 680.903 33.109C679.549 31.7548 678.788 29.9182 678.787 28.003M686.009 35.2245V36.6688M686.009 20.7802C684.094 20.7806 682.257 21.5417 680.902 22.8962C679.548 24.2507 678.787 26.0877 678.787 28.003M686.009 20.7802V19.3359M678.787 28.003H677.342M687.453 28.003C687.453 28.1927 687.416 28.3805 687.343 28.5557C687.271 28.731 687.164 28.8902 687.03 29.0243C686.896 29.1584 686.737 29.2648 686.562 29.3374C686.386 29.41 686.199 29.4473 686.009 29.4473C685.819 29.4473 685.631 29.41 685.456 29.3374C685.281 29.2648 685.122 29.1584 684.988 29.0243C684.854 28.8902 684.747 28.731 684.675 28.5557C684.602 28.3805 684.565 28.1927 684.565 28.003C684.565 27.62 684.717 27.2526 684.988 26.9818C685.258 26.7109 685.626 26.5587 686.009 26.5587C686.392 26.5587 686.759 26.7109 687.03 26.9818C687.301 27.2526 687.453 27.62 687.453 28.003Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</g>
|
||||
<g class="marker marker-02">
|
||||
<path d="M437.009 126.5C443.913 126.5 449.509 132.096 449.509 139C449.509 145.904 443.913 151.5 437.009 151.5C430.105 151.5 424.509 145.904 424.509 139C424.509 132.096 430.105 126.5 437.009 126.5Z" stroke="#FF1919"/>
|
||||
<path d="M437.008 132.414C438.769 132.414 440.46 133.105 441.717 134.338C442.895 135.494 443.605 137.041 443.717 138.681L443.731 139.01C443.743 139.899 443.577 140.781 443.245 141.606C442.913 142.432 442.42 143.185 441.795 143.818C441.17 144.452 440.424 144.955 439.603 145.299C438.781 145.642 437.899 145.819 437.009 145.819C436.118 145.819 435.237 145.642 434.415 145.299C433.594 144.955 432.849 144.452 432.224 143.818C431.598 143.185 431.105 142.432 430.772 141.606C430.44 140.781 430.276 139.899 430.287 139.01C430.321 137.249 431.043 135.571 432.3 134.338C433.557 133.105 435.247 132.414 437.008 132.414Z" stroke="#FF1919"/>
|
||||
<path d="M450.009 139C450.009 146.18 444.189 152 437.009 152C429.829 152 424.009 146.18 424.009 139C424.009 131.82 429.829 126 437.009 126C444.189 126 450.009 131.82 450.009 139Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
<path d="M444.232 139.003C444.231 140.918 443.47 142.755 442.116 144.109C440.761 145.464 438.924 146.225 437.009 146.225M444.232 139.003C444.232 138.055 444.045 137.115 443.682 136.239C443.319 135.363 442.787 134.566 442.116 133.896C441.445 133.225 440.649 132.693 439.773 132.33C438.897 131.967 437.957 131.78 437.009 131.78M444.232 139.003H445.675M437.009 146.225C435.094 146.224 433.257 145.463 431.903 144.109C430.549 142.755 429.788 140.918 429.787 139.003M437.009 146.225V147.669M437.009 131.78C435.094 131.781 433.257 132.542 431.902 133.896C430.548 135.251 429.787 137.088 429.787 139.003M437.009 131.78V130.336M429.787 139.003H428.342M438.453 139.003C438.453 139.193 438.416 139.381 438.343 139.556C438.271 139.731 438.164 139.89 438.03 140.024C437.896 140.158 437.737 140.265 437.562 140.337C437.386 140.41 437.199 140.447 437.009 140.447C436.819 140.447 436.631 140.41 436.456 140.337C436.281 140.265 436.122 140.158 435.988 140.024C435.854 139.89 435.747 139.731 435.675 139.556C435.602 139.381 435.565 139.193 435.565 139.003C435.565 138.62 435.717 138.253 435.988 137.982C436.258 137.711 436.626 137.559 437.009 137.559C437.392 137.559 437.759 137.711 438.03 137.982C438.301 138.253 438.453 138.62 438.453 139.003Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</g>
|
||||
<g class="marker marker-03">
|
||||
<path d="M262.009 173.5C268.913 173.5 274.509 179.096 274.509 186C274.509 192.904 268.913 198.5 262.009 198.5C255.105 198.5 249.509 192.904 249.509 186C249.509 179.096 255.105 173.5 262.009 173.5Z" stroke="#FF1919"/>
|
||||
<path d="M262.008 179.414C263.769 179.414 265.46 180.105 266.717 181.338C267.895 182.494 268.605 184.041 268.717 185.681L268.731 186.01C268.743 186.899 268.577 187.781 268.245 188.606C267.913 189.432 267.42 190.185 266.795 190.818C266.17 191.452 265.424 191.955 264.603 192.299C263.781 192.642 262.899 192.819 262.009 192.819C261.118 192.819 260.237 192.642 259.415 192.299C258.594 191.955 257.849 191.452 257.224 190.818C256.598 190.185 256.105 189.432 255.772 188.606C255.44 187.781 255.276 186.899 255.287 186.01C255.321 184.249 256.043 182.571 257.3 181.338C258.557 180.105 260.247 179.414 262.008 179.414Z" stroke="#FF1919"/>
|
||||
<path d="M275.009 186C275.009 193.18 269.189 199 262.009 199C254.829 199 249.009 193.18 249.009 186C249.009 178.82 254.829 173 262.009 173C269.189 173 275.009 178.82 275.009 186Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
<path d="M269.232 186.003C269.231 187.918 268.47 189.755 267.116 191.109C265.761 192.464 263.924 193.225 262.009 193.225M269.232 186.003C269.232 185.055 269.045 184.115 268.682 183.239C268.319 182.363 267.787 181.566 267.116 180.896C266.445 180.225 265.649 179.693 264.773 179.33C263.897 178.967 262.957 178.78 262.009 178.78M269.232 186.003H270.675M262.009 193.225C260.094 193.224 258.257 192.463 256.903 191.109C255.549 189.755 254.788 187.918 254.787 186.003M262.009 193.225V194.669M262.009 178.78C260.094 178.781 258.257 179.542 256.902 180.896C255.548 182.251 254.787 184.088 254.787 186.003M262.009 178.78V177.336M254.787 186.003H253.342M263.453 186.003C263.453 186.193 263.416 186.381 263.343 186.556C263.271 186.731 263.164 186.89 263.03 187.024C262.896 187.158 262.737 187.265 262.562 187.337C262.386 187.41 262.199 187.447 262.009 187.447C261.819 187.447 261.631 187.41 261.456 187.337C261.281 187.265 261.122 187.158 260.988 187.024C260.854 186.89 260.747 186.731 260.675 186.556C260.602 186.381 260.565 186.193 260.565 186.003C260.565 185.62 260.717 185.253 260.988 184.982C261.258 184.711 261.626 184.559 262.009 184.559C262.392 184.559 262.759 184.711 263.03 184.982C263.301 185.253 263.453 185.62 263.453 186.003Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</g>
|
||||
<g class="marker marker-04">
|
||||
<path d="M309.009 245.5C315.913 245.5 321.509 251.096 321.509 258C321.509 264.904 315.913 270.5 309.009 270.5C302.105 270.5 296.509 264.904 296.509 258C296.509 251.096 302.105 245.5 309.009 245.5Z" stroke="#FF1919"/>
|
||||
<path d="M309.008 251.414C310.769 251.414 312.46 252.105 313.717 253.338C314.895 254.494 315.605 256.041 315.717 257.681L315.731 258.01C315.743 258.899 315.577 259.781 315.245 260.606C314.913 261.432 314.42 262.185 313.795 262.818C313.17 263.452 312.424 263.955 311.603 264.299C310.781 264.642 309.899 264.819 309.009 264.819C308.118 264.819 307.237 264.642 306.415 264.299C305.594 263.955 304.849 263.452 304.224 262.818C303.598 262.185 303.105 261.432 302.772 260.606C302.44 259.781 302.276 258.899 302.287 258.01C302.321 256.249 303.043 254.571 304.3 253.338C305.557 252.105 307.247 251.414 309.008 251.414Z" stroke="#FF1919"/>
|
||||
<path d="M322.009 258C322.009 265.18 316.189 271 309.009 271C301.829 271 296.009 265.18 296.009 258C296.009 250.82 301.829 245 309.009 245C316.189 245 322.009 250.82 322.009 258Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
<path d="M316.232 258.003C316.231 259.918 315.47 261.755 314.116 263.109C312.761 264.464 310.924 265.225 309.009 265.225M316.232 258.003C316.232 257.055 316.045 256.115 315.682 255.239C315.319 254.363 314.787 253.566 314.116 252.896C313.445 252.225 312.649 251.693 311.773 251.33C310.897 250.967 309.957 250.78 309.009 250.78M316.232 258.003H317.675M309.009 265.225C307.094 265.224 305.257 264.463 303.903 263.109C302.549 261.755 301.788 259.918 301.787 258.003M309.009 265.225V266.669M309.009 250.78C307.094 250.781 305.257 251.542 303.902 252.896C302.548 254.251 301.787 256.088 301.787 258.003M309.009 250.78V249.336M301.787 258.003H300.342M310.453 258.003C310.453 258.193 310.416 258.381 310.343 258.556C310.271 258.731 310.164 258.89 310.03 259.024C309.896 259.158 309.737 259.265 309.562 259.337C309.386 259.41 309.199 259.447 309.009 259.447C308.819 259.447 308.631 259.41 308.456 259.337C308.281 259.265 308.122 259.158 307.988 259.024C307.854 258.89 307.747 258.731 307.675 258.556C307.602 258.381 307.565 258.193 307.565 258.003C307.565 257.62 307.717 257.253 307.988 256.982C308.258 256.711 308.626 256.559 309.009 256.559C309.392 256.559 309.759 256.711 310.03 256.982C310.301 257.253 310.453 257.62 310.453 258.003Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</g>
|
||||
<g class="marker marker-05">
|
||||
<path d="M151.009 267.5C157.913 267.5 163.509 273.096 163.509 280C163.509 286.904 157.913 292.5 151.009 292.5C144.105 292.5 138.509 286.904 138.509 280C138.509 273.096 144.105 267.5 151.009 267.5Z" stroke="#FF1919"/>
|
||||
<path d="M151.008 273.414C152.769 273.414 154.46 274.105 155.717 275.338C156.895 276.494 157.605 278.041 157.717 279.681L157.731 280.01C157.743 280.899 157.577 281.781 157.245 282.606C156.913 283.432 156.42 284.185 155.795 284.818C155.17 285.452 154.424 285.955 153.603 286.299C152.781 286.642 151.899 286.819 151.009 286.819C150.118 286.819 149.237 286.642 148.415 286.299C147.594 285.955 146.849 285.452 146.224 284.818C145.598 284.185 145.105 283.432 144.772 282.606C144.44 281.781 144.276 280.899 144.287 280.01C144.321 278.249 145.043 276.571 146.3 275.338C147.557 274.105 149.247 273.414 151.008 273.414Z" stroke="#FF1919"/>
|
||||
<path d="M164.009 280C164.009 287.18 158.189 293 151.009 293C143.829 293 138.009 287.18 138.009 280C138.009 272.82 143.829 267 151.009 267C158.189 267 164.009 272.82 164.009 280Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
<path d="M158.232 280.003C158.231 281.918 157.47 283.755 156.116 285.109C154.761 286.464 152.924 287.225 151.009 287.225M158.232 280.003C158.232 279.055 158.045 278.115 157.682 277.239C157.319 276.363 156.787 275.566 156.116 274.896C155.445 274.225 154.649 273.693 153.773 273.33C152.897 272.967 151.957 272.78 151.009 272.78M158.232 280.003H159.675M151.009 287.225C149.094 287.224 147.257 286.463 145.903 285.109C144.549 283.755 143.788 281.918 143.787 280.003M151.009 287.225V288.669M151.009 272.78C149.094 272.781 147.257 273.542 145.902 274.896C144.548 276.251 143.787 278.088 143.787 280.003M151.009 272.78V271.336M143.787 280.003H142.342M152.453 280.003C152.453 280.193 152.416 280.381 152.343 280.556C152.271 280.731 152.164 280.89 152.03 281.024C151.896 281.158 151.737 281.265 151.562 281.337C151.386 281.41 151.199 281.447 151.009 281.447C150.819 281.447 150.631 281.41 150.456 281.337C150.281 281.265 150.122 281.158 149.988 281.024C149.854 280.89 149.747 280.731 149.675 280.556C149.602 280.381 149.565 280.193 149.565 280.003C149.565 279.62 149.717 279.253 149.988 278.982C150.258 278.711 150.626 278.559 151.009 278.559C151.392 278.559 151.759 278.711 152.03 278.982C152.301 279.253 152.453 279.62 152.453 280.003Z" stroke="#FF1919" stroke-width="2" stroke-linecap="square"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
BIN
kngil/img/analysis/img_statistics_01.png
Normal file
|
After Width: | Height: | Size: 248 KiB |
341
kngil/img/analysis/img_statistics_01_apx.svg
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
kngil/img/analysis/img_statistics_02.jpg
Normal file
|
After Width: | Height: | Size: 110 KiB |
BIN
kngil/img/analysis/img_statistics_02.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
90
kngil/img/analysis/img_statistics_02.svg
Normal file
|
After Width: | Height: | Size: 35 KiB |
179
kngil/img/analysis/img_statistics_02_apx.svg
Normal file
@@ -0,0 +1,179 @@
|
||||
<svg width="863" height="81" viewBox="0 0 863 81" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<style>
|
||||
/* 텍스트 페이드인 애니메이션 */
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
|
||||
/* 왼쪽에서 오른쪽으로 선 그리기 (fill이 있는 path용) */
|
||||
@keyframes drawLineFill {
|
||||
from {
|
||||
stroke-dasharray: 1000;
|
||||
stroke-dashoffset: -1000;
|
||||
fill-opacity: 0;
|
||||
}
|
||||
to {
|
||||
stroke-dasharray: 2 2;
|
||||
stroke-dashoffset: 0;
|
||||
fill-opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* 바운스 효과 */
|
||||
@keyframes bounce {
|
||||
0%, 100% { transform: translateY(0); }
|
||||
50% { transform: translateY(-10px); }
|
||||
}
|
||||
|
||||
/* 텍스트 기본 상태 */
|
||||
.text-label {
|
||||
opacity: 0;
|
||||
animation: fadeIn 0.5s ease-out forwards;
|
||||
}
|
||||
|
||||
/* 선 그리기 효과 (서서히 보여지기 + 점선) */
|
||||
.line-draw {
|
||||
opacity: 0;
|
||||
stroke-dasharray: 2 2;
|
||||
animation: fadeIn 1.2s ease-out forwards;
|
||||
}
|
||||
|
||||
/* fill이 있는 path도 애니메이션 (왼쪽에서 오른쪽으로) */
|
||||
.line-draw-fill {
|
||||
stroke-dasharray: 1000;
|
||||
stroke-dashoffset: -1000;
|
||||
fill-opacity: 0;
|
||||
animation: drawLineFill 1.2s ease-out forwards;
|
||||
}
|
||||
|
||||
/* 각 단계별 지연 시간 */
|
||||
.step-1 .text-label { animation-delay: 0.04s; }
|
||||
.step-1 .line-draw,
|
||||
.step-1 .line-draw-fill { animation-delay: 0s; }
|
||||
|
||||
.step-2 .text-label { animation-delay: 0.2s; }
|
||||
.step-2 .line-draw,
|
||||
.step-2 .line-draw-fill { animation-delay: 0.16s; }
|
||||
|
||||
.step-3 .text-label { animation-delay: 0.68s; }
|
||||
.step-3 .line-draw,
|
||||
.step-3 .line-draw-fill { animation-delay: 0.64s; }
|
||||
|
||||
.step-4 .text-label { animation-delay: 1.0s; }
|
||||
.step-4 .line-draw,
|
||||
.step-4 .line-draw-fill { animation-delay: 0.96s; }
|
||||
|
||||
.step-5 .text-label { animation-delay: 1.32s; }
|
||||
.step-5 .line-draw,
|
||||
.step-5 .line-draw-fill { animation-delay: 1.28s; }
|
||||
|
||||
.step-6 .text-label { animation-delay: 1.64s; }
|
||||
.step-6 .line-draw,
|
||||
.step-6 .line-draw-fill { animation-delay: 1.6s; }
|
||||
|
||||
.step-7 .text-label { animation-delay: 1.96s; }
|
||||
.step-7 .line-draw,
|
||||
.step-7 .line-draw-fill { animation-delay: 1.92s; }
|
||||
|
||||
.step-8 .text-label { animation-delay: 2.28s; }
|
||||
.step-8 .line-draw,
|
||||
.step-8 .line-draw-fill { animation-delay: 2.24s; }
|
||||
|
||||
.step-9 .text-label { animation-delay: 2.6s; }
|
||||
.step-9 .line-draw,
|
||||
.step-9 .line-draw-fill { animation-delay: 2.56s; }
|
||||
|
||||
.step-10 .text-label { animation-delay: 2.92s; }
|
||||
.step-10 .line-draw,
|
||||
.step-10 .line-draw-fill { animation-delay: 2.88s; }
|
||||
|
||||
/* 바운스 효과 그룹 (step 애니메이션이 끝날 때까지) */
|
||||
.bounce-group {
|
||||
opacity: 0;
|
||||
animation: fadeIn 0.5s ease-out forwards, bounce 1.2s ease-in-out forwards;
|
||||
animation-delay: 3.2s, 3.2s;
|
||||
transform-origin: center;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- 바운스 효과 그룹 -->
|
||||
<g class="bounce-group">
|
||||
<rect x="738" y="65" width="122.994" height="15.7685" fill="url(#pattern0_1333_2995)"/>
|
||||
<line x1="-8.74228e-08" y1="54" x2="863.001" y2="53.9999" stroke="#717071" stroke-width="2" stroke-dasharray="3 1"/>
|
||||
</g>
|
||||
|
||||
<!-- Step 1: 3.28% -->
|
||||
<g class="step-1">
|
||||
<path class="text-label" d="M36.562 35.182C35.041 35.182 34.014 34.61 33.338 33.843L34.235 32.634C34.807 33.193 35.509 33.622 36.38 33.622C37.355 33.622 38.018 33.141 38.018 32.27C38.018 31.334 37.459 30.736 35.366 30.736V29.371C37.134 29.371 37.706 28.76 37.706 27.902C37.706 27.148 37.238 26.706 36.419 26.706C35.73 26.706 35.171 27.018 34.599 27.551L33.624 26.381C34.456 25.653 35.379 25.198 36.51 25.198C38.369 25.198 39.63 26.121 39.63 27.759C39.63 28.799 39.045 29.553 38.031 29.956V30.021C39.11 30.32 39.942 31.126 39.942 32.387C39.942 34.155 38.395 35.182 36.562 35.182ZM42.7613 35.182C42.0853 35.182 41.5783 34.636 41.5783 33.934C41.5783 33.219 42.0853 32.686 42.7613 32.686C43.4503 32.686 43.9573 33.219 43.9573 33.934C43.9573 34.636 43.4503 35.182 42.7613 35.182ZM45.4418 35V33.895C48.0548 31.555 49.6018 29.748 49.6018 28.266C49.6018 27.291 49.0818 26.706 48.1588 26.706C47.4568 26.706 46.8848 27.161 46.3908 27.694L45.3508 26.654C46.2348 25.705 47.0928 25.198 48.4058 25.198C50.2258 25.198 51.4348 26.368 51.4348 28.162C51.4348 29.904 49.9918 31.776 48.2368 33.492C48.7178 33.44 49.3548 33.388 49.8098 33.388H51.8898V35H45.4418ZM56.3601 35.182C54.5271 35.182 53.1491 34.116 53.1491 32.608C53.1491 31.373 53.9031 30.567 54.8001 30.099V30.034C54.0591 29.501 53.5261 28.773 53.5261 27.746C53.5261 26.199 54.7611 25.211 56.4251 25.211C58.1281 25.211 59.2201 26.238 59.2201 27.772C59.2201 28.721 58.6221 29.514 57.9851 29.969V30.034C58.8691 30.515 59.5971 31.295 59.5971 32.608C59.5971 34.064 58.3101 35.182 56.3601 35.182ZM56.9711 29.501C57.4391 29.007 57.6601 28.461 57.6601 27.889C57.6601 27.109 57.1921 26.55 56.3861 26.55C55.7361 26.55 55.2161 26.979 55.2161 27.746C55.2161 28.656 55.9571 29.098 56.9711 29.501ZM56.4121 33.83C57.2311 33.83 57.8161 33.375 57.8161 32.543C57.8161 31.542 56.9321 31.126 55.6841 30.619C55.1641 31.035 54.8001 31.685 54.8001 32.4C54.8001 33.271 55.5151 33.83 56.4121 33.83ZM62.9494 31.295C61.5714 31.295 60.6094 30.164 60.6094 28.227C60.6094 26.303 61.5714 25.198 62.9494 25.198C64.3274 25.198 65.3024 26.303 65.3024 28.227C65.3024 30.164 64.3274 31.295 62.9494 31.295ZM62.9494 30.216C63.5084 30.216 63.9504 29.644 63.9504 28.227C63.9504 26.81 63.5084 26.277 62.9494 26.277C62.3904 26.277 61.9614 26.81 61.9614 28.227C61.9614 29.644 62.3904 30.216 62.9494 30.216ZM63.2744 35.182L68.5004 25.198H69.6314L64.4054 35.182H63.2744ZM69.9434 35.182C68.5784 35.182 67.6034 34.038 67.6034 32.114C67.6034 30.177 68.5784 29.072 69.9434 29.072C71.3084 29.072 72.2964 30.177 72.2964 32.114C72.2964 34.038 71.3084 35.182 69.9434 35.182ZM69.9434 34.09C70.5024 34.09 70.9444 33.531 70.9444 32.114C70.9444 30.697 70.5024 30.151 69.9434 30.151C69.3844 30.151 68.9554 30.697 68.9554 32.114C68.9554 33.531 69.3844 34.09 69.9434 34.09Z" fill="#E26C48"/>
|
||||
<path class="line-draw-fill" d="M81 38L72.9071 35.5992L74.5564 44.101L81 38ZM26 52L26.1428 52.7363L74.6014 40.4014L74.4586 39.6651L74.3157 38.9288L25.8572 51.2637L26 52Z" fill="#E26C48"/>
|
||||
<path class="line-draw" d="M26 62L81 49.5" stroke="#E26C48" stroke-width="1.5" stroke-dasharray="2 2"/>
|
||||
</g>
|
||||
|
||||
<!-- Step 2: 19.67% -->
|
||||
<g class="step-2">
|
||||
<path class="text-label" d="M122.835 26.182C120.872 26.182 119.572 24.466 119.572 21.151C119.572 17.823 120.872 16.198 122.835 16.198C124.798 16.198 126.085 17.836 126.085 21.151C126.085 24.466 124.798 26.182 122.835 26.182ZM122.835 24.687C123.667 24.687 124.278 23.855 124.278 21.151C124.278 18.46 123.667 17.68 122.835 17.68C122.003 17.68 121.379 18.46 121.379 21.151C121.379 23.855 122.003 24.687 122.835 24.687ZM128.761 26.182C128.085 26.182 127.578 25.636 127.578 24.934C127.578 24.219 128.085 23.686 128.761 23.686C129.45 23.686 129.957 24.219 129.957 24.934C129.957 25.636 129.45 26.182 128.761 26.182ZM133.301 26C133.47 22.659 134.029 20.527 135.862 17.979H131.533V16.367H137.929V17.537C135.693 20.267 135.394 22.23 135.238 26H133.301ZM142.542 21.294C142.022 21.294 141.411 21.58 140.969 22.308C141.151 24.063 141.801 24.739 142.607 24.739C143.322 24.739 143.92 24.141 143.92 22.958C143.92 21.827 143.374 21.294 142.542 21.294ZM142.646 26.182C140.813 26.182 139.188 24.713 139.188 21.32C139.188 17.732 140.969 16.198 142.906 16.198C144.089 16.198 144.934 16.692 145.519 17.29L144.505 18.434C144.167 18.044 143.582 17.732 143.023 17.732C141.918 17.732 141.008 18.564 140.93 20.982C141.45 20.332 142.282 19.942 142.906 19.942C144.518 19.942 145.662 20.904 145.662 22.958C145.662 24.934 144.284 26.182 142.646 26.182ZM148.949 22.295C147.571 22.295 146.609 21.164 146.609 19.227C146.609 17.303 147.571 16.198 148.949 16.198C150.327 16.198 151.302 17.303 151.302 19.227C151.302 21.164 150.327 22.295 148.949 22.295ZM148.949 21.216C149.508 21.216 149.95 20.644 149.95 19.227C149.95 17.81 149.508 17.277 148.949 17.277C148.39 17.277 147.961 17.81 147.961 19.227C147.961 20.644 148.39 21.216 148.949 21.216ZM149.274 26.182L154.5 16.198H155.631L150.405 26.182H149.274ZM155.943 26.182C154.578 26.182 153.603 25.038 153.603 23.114C153.603 21.177 154.578 20.072 155.943 20.072C157.308 20.072 158.296 21.177 158.296 23.114C158.296 25.038 157.308 26.182 155.943 26.182ZM155.943 25.09C156.502 25.09 156.944 24.531 156.944 23.114C156.944 21.697 156.502 21.151 155.943 21.151C155.384 21.151 154.955 21.697 154.955 23.114C154.955 24.531 155.384 25.09 155.943 25.09Z" fill="#E26C48"/>
|
||||
<path class="line-draw" d="M111 49L166.118 46.9297" stroke="#E26C48" stroke-width="1.5" stroke-dasharray="2 2"/>
|
||||
<path class="line-draw-fill" d="M167 34L159.278 30.2152L159.762 38.8619L167 34ZM111.441 38L111.483 38.7488L160.31 35.2335L160.268 34.4847L160.226 33.7359L111.399 37.2512L111.441 38Z" fill="#E26C48"/>
|
||||
</g>
|
||||
|
||||
<!-- Step 3: 27.62% -->
|
||||
<g class="step-3">
|
||||
<path class="text-label" d="M200.637 22.958V21.593H204.186V22.958H200.637ZM208.647 26.182C206.684 26.182 205.384 24.466 205.384 21.151C205.384 17.823 206.684 16.198 208.647 16.198C210.61 16.198 211.897 17.836 211.897 21.151C211.897 24.466 210.61 26.182 208.647 26.182ZM208.647 24.687C209.479 24.687 210.09 23.855 210.09 21.151C210.09 18.46 209.479 17.68 208.647 17.68C207.815 17.68 207.191 18.46 207.191 21.151C207.191 23.855 207.815 24.687 208.647 24.687ZM214.573 26.182C213.897 26.182 213.39 25.636 213.39 24.934C213.39 24.219 213.897 23.686 214.573 23.686C215.262 23.686 215.769 24.219 215.769 24.934C215.769 25.636 215.262 26.182 214.573 26.182ZM220.256 26.182C218.735 26.182 217.708 25.61 217.032 24.843L217.929 23.634C218.501 24.193 219.203 24.622 220.074 24.622C221.049 24.622 221.712 24.141 221.712 23.27C221.712 22.334 221.153 21.736 219.06 21.736V20.371C220.828 20.371 221.4 19.76 221.4 18.902C221.4 18.148 220.932 17.706 220.113 17.706C219.424 17.706 218.865 18.018 218.293 18.551L217.318 17.381C218.15 16.653 219.073 16.198 220.204 16.198C222.063 16.198 223.324 17.121 223.324 18.759C223.324 19.799 222.739 20.553 221.725 20.956V21.021C222.804 21.32 223.636 22.126 223.636 23.387C223.636 25.155 222.089 26.182 220.256 26.182ZM227.938 26.182C226.417 26.182 225.403 25.584 224.688 24.869L225.572 23.647C226.118 24.18 226.794 24.622 227.691 24.622C228.692 24.622 229.394 23.985 229.394 22.854C229.394 21.736 228.744 21.112 227.769 21.112C227.197 21.112 226.885 21.255 226.326 21.619L225.455 21.047L225.715 16.367H230.863V17.979H227.366L227.184 20.02C227.574 19.838 227.899 19.747 228.341 19.747C229.953 19.747 231.305 20.709 231.305 22.802C231.305 24.947 229.719 26.182 227.938 26.182ZM234.761 22.295C233.383 22.295 232.421 21.164 232.421 19.227C232.421 17.303 233.383 16.198 234.761 16.198C236.139 16.198 237.114 17.303 237.114 19.227C237.114 21.164 236.139 22.295 234.761 22.295ZM234.761 21.216C235.32 21.216 235.762 20.644 235.762 19.227C235.762 17.81 235.32 17.277 234.761 17.277C234.202 17.277 233.773 17.81 233.773 19.227C233.773 20.644 234.202 21.216 234.761 21.216ZM235.086 26.182L240.312 16.198H241.443L236.217 26.182H235.086ZM241.755 26.182C240.39 26.182 239.415 25.038 239.415 23.114C239.415 21.177 240.39 20.072 241.755 20.072C243.12 20.072 244.108 21.177 244.108 23.114C244.108 25.038 243.12 26.182 241.755 26.182ZM241.755 25.09C242.314 25.09 242.756 24.531 242.756 23.114C242.756 21.697 242.314 21.151 241.755 21.151C241.196 21.151 240.767 21.697 240.767 23.114C240.767 24.531 241.196 25.09 241.755 25.09Z" fill="#0069B8"/>
|
||||
<path class="line-draw-fill" d="M251 40L243.767 35.152L243.27 43.798L251 40ZM194 36L193.957 36.7488L244.224 40.2762L244.267 39.5275L244.31 38.7787L194.043 35.2512L194 36Z" fill="#0069B8"/>
|
||||
<path class="line-draw" d="M194 47L251 51" stroke="#0069B8" stroke-width="1.5" stroke-dasharray="2 2"/>
|
||||
</g>
|
||||
|
||||
<!-- Step 4: 38.75% -->
|
||||
<g class="step-4">
|
||||
<path class="text-label" d="M283.637 22.958V21.593H287.186V22.958H283.637ZM291.374 26.182C289.853 26.182 288.826 25.61 288.15 24.843L289.047 23.634C289.619 24.193 290.321 24.622 291.192 24.622C292.167 24.622 292.83 24.141 292.83 23.27C292.83 22.334 292.271 21.736 290.178 21.736V20.371C291.946 20.371 292.518 19.76 292.518 18.902C292.518 18.148 292.05 17.706 291.231 17.706C290.542 17.706 289.983 18.018 289.411 18.551L288.436 17.381C289.268 16.653 290.191 16.198 291.322 16.198C293.181 16.198 294.442 17.121 294.442 18.759C294.442 19.799 293.857 20.553 292.843 20.956V21.021C293.922 21.32 294.754 22.126 294.754 23.387C294.754 25.155 293.207 26.182 291.374 26.182ZM297.573 26.182C296.897 26.182 296.39 25.636 296.39 24.934C296.39 24.219 296.897 23.686 297.573 23.686C298.262 23.686 298.769 24.219 298.769 24.934C298.769 25.636 298.262 26.182 297.573 26.182ZM300.253 26V24.895C302.866 22.555 304.413 20.748 304.413 19.266C304.413 18.291 303.893 17.706 302.97 17.706C302.268 17.706 301.696 18.161 301.202 18.694L300.162 17.654C301.046 16.705 301.904 16.198 303.217 16.198C305.037 16.198 306.246 17.368 306.246 19.162C306.246 20.904 304.803 22.776 303.048 24.492C303.529 24.44 304.166 24.388 304.621 24.388H306.701V26H300.253ZM309.768 26C309.937 22.659 310.496 20.527 312.329 17.979H308V16.367H314.396V17.537C312.16 20.267 311.861 22.23 311.705 26H309.768ZM317.761 22.295C316.383 22.295 315.421 21.164 315.421 19.227C315.421 17.303 316.383 16.198 317.761 16.198C319.139 16.198 320.114 17.303 320.114 19.227C320.114 21.164 319.139 22.295 317.761 22.295ZM317.761 21.216C318.32 21.216 318.762 20.644 318.762 19.227C318.762 17.81 318.32 17.277 317.761 17.277C317.202 17.277 316.773 17.81 316.773 19.227C316.773 20.644 317.202 21.216 317.761 21.216ZM318.086 26.182L323.312 16.198H324.443L319.217 26.182H318.086ZM324.755 26.182C323.39 26.182 322.415 25.038 322.415 23.114C322.415 21.177 323.39 20.072 324.755 20.072C326.12 20.072 327.108 21.177 327.108 23.114C327.108 25.038 326.12 26.182 324.755 26.182ZM324.755 25.09C325.314 25.09 325.756 24.531 325.756 23.114C325.756 21.697 325.314 21.151 324.755 21.151C324.196 21.151 323.767 21.697 323.767 23.114C323.767 24.531 324.196 25.09 324.755 25.09Z" fill="#0069B8"/>
|
||||
<path class="line-draw" d="M279.241 51L331.162 59.5" stroke="#0069B8" stroke-width="1.5" stroke-dasharray="2 2"/>
|
||||
<path class="line-draw-fill" d="M331.999 50L325.121 44.4393L324.092 53.0383L331.999 50ZM279.241 41L279.152 41.7447L325.257 49.6096L325.346 48.8649L325.435 48.1202L279.33 40.2553L279.241 41Z" fill="#0069B8"/>
|
||||
</g>
|
||||
|
||||
<!-- Step 5: 54.25% -->
|
||||
<g class="step-5">
|
||||
<path class="text-label" d="M368.637 41.958V40.593H372.186V41.958H368.637ZM373.878 45V43.453H375.945V37.369H374.203V36.186C375.165 36.004 375.828 35.757 376.439 35.367H377.856V43.453H379.663V45H373.878ZM382.573 45.182C381.897 45.182 381.39 44.636 381.39 43.934C381.39 43.219 381.897 42.686 382.573 42.686C383.262 42.686 383.769 43.219 383.769 43.934C383.769 44.636 383.262 45.182 382.573 45.182ZM386.826 41.048H389.075V39.085C389.075 38.526 389.114 37.655 389.14 37.083H389.088C388.854 37.603 388.594 38.136 388.321 38.656L386.826 41.048ZM389.075 45V42.504H384.967V41.204L388.555 35.367H390.856V41.048H391.987V42.504H390.856V45H389.075ZM395.912 45.182C394.391 45.182 393.364 44.61 392.688 43.843L393.585 42.634C394.157 43.193 394.859 43.622 395.73 43.622C396.705 43.622 397.368 43.141 397.368 42.27C397.368 41.334 396.809 40.736 394.716 40.736V39.371C396.484 39.371 397.056 38.76 397.056 37.902C397.056 37.148 396.588 36.706 395.769 36.706C395.08 36.706 394.521 37.018 393.949 37.551L392.974 36.381C393.806 35.653 394.729 35.198 395.86 35.198C397.719 35.198 398.98 36.121 398.98 37.759C398.98 38.799 398.395 39.553 397.381 39.956V40.021C398.46 40.32 399.292 41.126 399.292 42.387C399.292 44.155 397.745 45.182 395.912 45.182ZM402.761 41.295C401.383 41.295 400.421 40.164 400.421 38.227C400.421 36.303 401.383 35.198 402.761 35.198C404.139 35.198 405.114 36.303 405.114 38.227C405.114 40.164 404.139 41.295 402.761 41.295ZM402.761 40.216C403.32 40.216 403.762 39.644 403.762 38.227C403.762 36.81 403.32 36.277 402.761 36.277C402.202 36.277 401.773 36.81 401.773 38.227C401.773 39.644 402.202 40.216 402.761 40.216ZM403.086 45.182L408.312 35.198H409.443L404.217 45.182H403.086ZM409.755 45.182C408.39 45.182 407.415 44.038 407.415 42.114C407.415 40.177 408.39 39.072 409.755 39.072C411.12 39.072 412.108 40.177 412.108 42.114C412.108 44.038 411.12 45.182 409.755 45.182ZM409.755 44.09C410.314 44.09 410.756 43.531 410.756 42.114C410.756 40.697 410.314 40.151 409.755 40.151C409.196 40.151 408.767 40.697 408.767 42.114C408.767 43.531 409.196 44.09 409.755 44.09Z" fill="#0069B8"/>
|
||||
<path class="line-draw" d="M362.264 60L416.93 65" stroke="#0069B8" stroke-width="1.5" stroke-dasharray="2 2"/>
|
||||
<path class="line-draw-fill" d="M416.93 57L409.95 51.7463L409.03 60.3575L416.93 57ZM362 50L361.92 50.7458L410.155 56.8925L410.234 56.1467L410.314 55.401L362.08 49.2542L362 50Z" fill="#0069B8"/>
|
||||
</g>
|
||||
|
||||
<!-- Step 6: 65.35% -->
|
||||
<g class="step-6">
|
||||
<path class="text-label" d="M451.637 41.958V40.593H455.186V41.958H451.637ZM459.647 45.182C457.684 45.182 456.384 43.466 456.384 40.151C456.384 36.823 457.684 35.198 459.647 35.198C461.61 35.198 462.897 36.836 462.897 40.151C462.897 43.466 461.61 45.182 459.647 45.182ZM459.647 43.687C460.479 43.687 461.09 42.855 461.09 40.151C461.09 37.46 460.479 36.68 459.647 36.68C458.815 36.68 458.191 37.46 458.191 40.151C458.191 42.855 458.815 43.687 459.647 43.687ZM465.573 45.182C464.897 45.182 464.39 44.636 464.39 43.934C464.39 43.219 464.897 42.686 465.573 42.686C466.262 42.686 466.769 43.219 466.769 43.934C466.769 44.636 466.262 45.182 465.573 45.182ZM469.969 38.409C469.969 39.54 470.502 40.073 471.334 40.073C471.867 40.073 472.478 39.774 472.92 39.033C472.751 37.291 472.088 36.641 471.269 36.641C470.554 36.641 469.969 37.226 469.969 38.409ZM471.009 45.182C469.813 45.182 468.942 44.675 468.37 44.09L469.384 42.933C469.735 43.323 470.32 43.622 470.892 43.622C471.971 43.622 472.855 42.803 472.946 40.398C472.439 41.048 471.62 41.438 470.97 41.438C469.371 41.438 468.214 40.45 468.214 38.409C468.214 36.433 469.592 35.198 471.243 35.198C473.063 35.198 474.701 36.628 474.701 39.969C474.701 43.609 472.92 45.182 471.009 45.182ZM479.354 40.294C478.834 40.294 478.223 40.58 477.781 41.308C477.963 43.063 478.613 43.739 479.419 43.739C480.134 43.739 480.732 43.141 480.732 41.958C480.732 40.827 480.186 40.294 479.354 40.294ZM479.458 45.182C477.625 45.182 476 43.713 476 40.32C476 36.732 477.781 35.198 479.718 35.198C480.901 35.198 481.746 35.692 482.331 36.29L481.317 37.434C480.979 37.044 480.394 36.732 479.835 36.732C478.73 36.732 477.82 37.564 477.742 39.982C478.262 39.332 479.094 38.942 479.718 38.942C481.33 38.942 482.474 39.904 482.474 41.958C482.474 43.934 481.096 45.182 479.458 45.182ZM485.761 41.295C484.383 41.295 483.421 40.164 483.421 38.227C483.421 36.303 484.383 35.198 485.761 35.198C487.139 35.198 488.114 36.303 488.114 38.227C488.114 40.164 487.139 41.295 485.761 41.295ZM485.761 40.216C486.32 40.216 486.762 39.644 486.762 38.227C486.762 36.81 486.32 36.277 485.761 36.277C485.202 36.277 484.773 36.81 484.773 38.227C484.773 39.644 485.202 40.216 485.761 40.216ZM486.086 45.182L491.312 35.198H492.443L487.217 45.182H486.086ZM492.755 45.182C491.39 45.182 490.415 44.038 490.415 42.114C490.415 40.177 491.39 39.072 492.755 39.072C494.12 39.072 495.108 40.177 495.108 42.114C495.108 44.038 494.12 45.182 492.755 45.182ZM492.755 44.09C493.314 44.09 493.756 43.531 493.756 42.114C493.756 40.697 493.314 40.151 492.755 40.151C492.196 40.151 491.767 40.697 491.767 42.114C491.767 43.531 492.196 44.09 492.755 44.09Z" fill="#0069B8"/>
|
||||
<path class="line-draw" d="M447.953 65L500.812 70" stroke="#0069B8" stroke-width="1.5" stroke-dasharray="2 2"/>
|
||||
<path class="line-draw-fill" d="M501 61L493.771 56.1231L493.27 64.7688L501 61ZM447 57L446.957 57.7487L494.225 61.2501L494.268 60.5014L494.312 59.7526L447.043 56.2513L447 57Z" fill="#0069B8"/>
|
||||
</g>
|
||||
|
||||
<!-- Step 7: 68.45% -->
|
||||
<g class="step-7">
|
||||
<path class="text-label" d="M539.559 40V38.895C542.172 36.555 543.719 34.748 543.719 33.266C543.719 32.291 543.199 31.706 542.276 31.706C541.574 31.706 541.002 32.161 540.508 32.694L539.468 31.654C540.352 30.705 541.21 30.198 542.523 30.198C544.343 30.198 545.552 31.368 545.552 33.162C545.552 34.904 544.109 36.776 542.354 38.492C542.835 38.44 543.472 38.388 543.927 38.388H546.007V40H539.559ZM548.761 40.182C548.085 40.182 547.578 39.636 547.578 38.934C547.578 38.219 548.085 37.686 548.761 37.686C549.45 37.686 549.957 38.219 549.957 38.934C549.957 39.636 549.45 40.182 548.761 40.182ZM553.158 33.409C553.158 34.54 553.691 35.073 554.523 35.073C555.056 35.073 555.667 34.774 556.109 34.033C555.94 32.291 555.277 31.641 554.458 31.641C553.743 31.641 553.158 32.226 553.158 33.409ZM554.198 40.182C553.002 40.182 552.131 39.675 551.559 39.09L552.573 37.933C552.924 38.323 553.509 38.622 554.081 38.622C555.16 38.622 556.044 37.803 556.135 35.398C555.628 36.048 554.809 36.438 554.159 36.438C552.56 36.438 551.403 35.45 551.403 33.409C551.403 31.433 552.781 30.198 554.432 30.198C556.252 30.198 557.89 31.628 557.89 34.969C557.89 38.609 556.109 40.182 554.198 40.182ZM562.542 35.294C562.022 35.294 561.411 35.58 560.969 36.308C561.151 38.063 561.801 38.739 562.607 38.739C563.322 38.739 563.92 38.141 563.92 36.958C563.92 35.827 563.374 35.294 562.542 35.294ZM562.646 40.182C560.813 40.182 559.188 38.713 559.188 35.32C559.188 31.732 560.969 30.198 562.906 30.198C564.089 30.198 564.934 30.692 565.519 31.29L564.505 32.434C564.167 32.044 563.582 31.732 563.023 31.732C561.918 31.732 561.008 32.564 560.93 34.982C561.45 34.332 562.282 33.942 562.906 33.942C564.518 33.942 565.662 34.904 565.662 36.958C565.662 38.934 564.284 40.182 562.646 40.182ZM568.949 36.295C567.571 36.295 566.609 35.164 566.609 33.227C566.609 31.303 567.571 30.198 568.949 30.198C570.327 30.198 571.302 31.303 571.302 33.227C571.302 35.164 570.327 36.295 568.949 36.295ZM568.949 35.216C569.508 35.216 569.95 34.644 569.95 33.227C569.95 31.81 569.508 31.277 568.949 31.277C568.39 31.277 567.961 31.81 567.961 33.227C567.961 34.644 568.39 35.216 568.949 35.216ZM569.274 40.182L574.5 30.198H575.631L570.405 40.182H569.274ZM575.943 40.182C574.578 40.182 573.603 39.038 573.603 37.114C573.603 35.177 574.578 34.072 575.943 34.072C577.308 34.072 578.296 35.177 578.296 37.114C578.296 39.038 577.308 40.182 575.943 40.182ZM575.943 39.09C576.502 39.09 576.944 38.531 576.944 37.114C576.944 35.697 576.502 35.151 575.943 35.151C575.384 35.151 574.955 35.697 574.955 37.114C574.955 38.531 575.384 39.09 575.943 39.09Z" fill="#E26C48"/>
|
||||
<path class="line-draw" d="M532.63 68.9997L580.863 58.4985" stroke="#E26C48" stroke-width="1.5" stroke-dasharray="2 2"/>
|
||||
<path class="line-draw-fill" d="M583 47L574.952 44.5245L576.48 53.0489L583 47ZM530 60L530.132 60.7382L576.577 49.3462L576.444 48.608L576.312 47.8698L529.868 59.2618L530 60Z" fill="#E26C48"/>
|
||||
</g>
|
||||
|
||||
<!-- Step 8: 73.28%, 80.49%, 88.41%, 95.08% -->
|
||||
<g class="step-8">
|
||||
<path class="text-label" d="M620.559 33V31.895C623.172 29.555 624.719 27.748 624.719 26.266C624.719 25.291 624.199 24.706 623.276 24.706C622.574 24.706 622.002 25.161 621.508 25.694L620.468 24.654C621.352 23.705 622.21 23.198 623.523 23.198C625.343 23.198 626.552 24.368 626.552 26.162C626.552 27.904 625.109 29.776 623.354 31.492C623.835 31.44 624.472 31.388 624.927 31.388H627.007V33H620.559ZM629.761 33.182C629.085 33.182 628.578 32.636 628.578 31.934C628.578 31.219 629.085 30.686 629.761 30.686C630.45 30.686 630.957 31.219 630.957 31.934C630.957 32.636 630.45 33.182 629.761 33.182ZM632.949 33V31.453H635.016V25.369H633.274V24.186C634.236 24.004 634.899 23.757 635.51 23.367H636.927V31.453H638.734V33H632.949ZM641.813 26.409C641.813 27.54 642.346 28.073 643.178 28.073C643.711 28.073 644.322 27.774 644.764 27.033C644.595 25.291 643.932 24.641 643.113 24.641C642.398 24.641 641.813 25.226 641.813 26.409ZM642.853 33.182C641.657 33.182 640.786 32.675 640.214 32.09L641.228 30.933C641.579 31.323 642.164 31.622 642.736 31.622C643.815 31.622 644.699 30.803 644.79 28.398C644.283 29.048 643.464 29.438 642.814 29.438C641.215 29.438 640.058 28.45 640.058 26.409C640.058 24.433 641.436 23.198 643.087 23.198C644.907 23.198 646.545 24.628 646.545 27.969C646.545 31.609 644.764 33.182 642.853 33.182ZM649.949 29.295C648.571 29.295 647.609 28.164 647.609 26.227C647.609 24.303 648.571 23.198 649.949 23.198C651.327 23.198 652.302 24.303 652.302 26.227C652.302 28.164 651.327 29.295 649.949 29.295ZM649.949 28.216C650.508 28.216 650.95 27.644 650.95 26.227C650.95 24.81 650.508 24.277 649.949 24.277C649.39 24.277 648.961 24.81 648.961 26.227C648.961 27.644 649.39 28.216 649.949 28.216ZM650.274 33.182L655.5 23.198H656.631L651.405 33.182H650.274ZM656.943 33.182C655.578 33.182 654.603 32.038 654.603 30.114C654.603 28.177 655.578 27.072 656.943 27.072C658.308 27.072 659.296 28.177 659.296 30.114C659.296 32.038 658.308 33.182 656.943 33.182ZM656.943 32.09C657.502 32.09 657.944 31.531 657.944 30.114C657.944 28.697 657.502 28.151 656.943 28.151C656.384 28.151 655.955 28.697 655.955 30.114C655.955 31.531 656.384 32.09 656.943 32.09Z" fill="#E26C48"/>
|
||||
<path class="line-draw" d="M613.807 58.029L666 48.5027" stroke="#E26C48" stroke-width="1.5" stroke-dasharray="2 2"/>
|
||||
<path class="line-draw-fill" d="M668 40L659.993 37.0335L661.241 45.6033L668 40ZM612 50L612.108 50.7422L661.463 41.9288L661.355 41.1866L661.247 40.4444L611.892 49.2578L612 50Z" fill="#E26C48"/>
|
||||
</g>
|
||||
<g class="step-9">
|
||||
<path class="text-label" d="M709.562 21.182C708.041 21.182 707.014 20.61 706.338 19.843L707.235 18.634C707.807 19.193 708.509 19.622 709.38 19.622C710.355 19.622 711.018 19.141 711.018 18.27C711.018 17.334 710.459 16.736 708.366 16.736V15.371C710.134 15.371 710.706 14.76 710.706 13.902C710.706 13.148 710.238 12.706 709.419 12.706C708.73 12.706 708.171 13.018 707.599 13.551L706.624 12.381C707.456 11.653 708.379 11.198 709.51 11.198C711.369 11.198 712.63 12.121 712.63 13.759C712.63 14.799 712.045 15.553 711.031 15.956V16.021C712.11 16.32 712.942 17.126 712.942 18.387C712.942 20.155 711.395 21.182 709.562 21.182ZM715.761 21.182C715.085 21.182 714.578 20.636 714.578 19.934C714.578 19.219 715.085 18.686 715.761 18.686C716.45 18.686 716.957 19.219 716.957 19.934C716.957 20.636 716.45 21.182 715.761 21.182ZM718.949 21V19.453H721.016V13.369H719.274V12.186C720.236 12.004 720.899 11.757 721.51 11.367H722.927V19.453H724.734V21H718.949ZM726.097 21V19.895C728.71 17.555 730.257 15.748 730.257 14.266C730.257 13.291 729.737 12.706 728.814 12.706C728.112 12.706 727.54 13.161 727.046 13.694L726.006 12.654C726.89 11.705 727.748 11.198 729.061 11.198C730.881 11.198 732.09 12.368 732.09 14.162C732.09 15.904 730.647 17.776 728.892 19.492C729.373 19.44 730.01 19.388 730.465 19.388H732.545V21H726.097ZM735.949 17.295C734.571 17.295 733.609 16.164 733.609 14.227C733.609 12.303 734.571 11.198 735.949 11.198C737.327 11.198 738.302 12.303 738.302 14.227C738.302 16.164 737.327 17.295 735.949 17.295ZM735.949 16.216C736.508 16.216 736.95 15.644 736.95 14.227C736.95 12.81 736.508 12.277 735.949 12.277C735.39 12.277 734.961 12.81 734.961 14.227C734.961 15.644 735.39 16.216 735.949 16.216ZM736.274 21.182L741.5 11.198H742.631L737.405 21.182H736.274ZM742.943 21.182C741.578 21.182 740.603 20.038 740.603 18.114C740.603 16.177 741.578 15.072 742.943 15.072C744.308 15.072 745.296 16.177 745.296 18.114C745.296 20.038 744.308 21.182 742.943 21.182ZM742.943 20.09C743.502 20.09 743.944 19.531 743.944 18.114C743.944 16.697 743.502 16.151 742.943 16.151C742.384 16.151 741.955 16.697 741.955 18.114C741.955 19.531 742.384 20.09 742.943 20.09Z" fill="#E26C48"/>
|
||||
<path class="line-draw" d="M701.656 49.5L749.017 37.001" stroke="#E26C48" stroke-width="1.5" stroke-dasharray="2 2"/>
|
||||
<path class="line-draw-fill" d="M753 28L744.853 25.7763L746.695 34.2384L753 28ZM699 43L699.16 43.7328L746.656 30.5394L746.496 29.8066L746.337 29.0738L698.84 42.2672L699 43Z" fill="#E26C48"/>
|
||||
</g>
|
||||
<g class="step-10">
|
||||
<path class="text-label" d="M787.637 17.958V16.593H791.186V17.958H787.637ZM795.647 21.182C793.684 21.182 792.384 19.466 792.384 16.151C792.384 12.823 793.684 11.198 795.647 11.198C797.61 11.198 798.897 12.836 798.897 16.151C798.897 19.466 797.61 21.182 795.647 21.182ZM795.647 19.687C796.479 19.687 797.09 18.855 797.09 16.151C797.09 13.46 796.479 12.68 795.647 12.68C794.815 12.68 794.191 13.46 794.191 16.151C794.191 18.855 794.815 19.687 795.647 19.687ZM801.573 21.182C800.897 21.182 800.39 20.636 800.39 19.934C800.39 19.219 800.897 18.686 801.573 18.686C802.262 18.686 802.769 19.219 802.769 19.934C802.769 20.636 802.262 21.182 801.573 21.182ZM807.282 21.182C805.761 21.182 804.747 20.584 804.032 19.869L804.916 18.647C805.462 19.18 806.138 19.622 807.035 19.622C808.036 19.622 808.738 18.985 808.738 17.854C808.738 16.736 808.088 16.112 807.113 16.112C806.541 16.112 806.229 16.255 805.67 16.619L804.799 16.047L805.059 11.367H810.207V12.979H806.71L806.528 15.02C806.918 14.838 807.243 14.747 807.685 14.747C809.297 14.747 810.649 15.709 810.649 17.802C810.649 19.947 809.063 21.182 807.282 21.182ZM813.482 17.048H815.731V15.085C815.731 14.526 815.77 13.655 815.796 13.083H815.744C815.51 13.603 815.25 14.136 814.977 14.656L813.482 17.048ZM815.731 21V18.504H811.623V17.204L815.211 11.367H817.512V17.048H818.643V18.504H817.512V21H815.731ZM821.761 17.295C820.383 17.295 819.421 16.164 819.421 14.227C819.421 12.303 820.383 11.198 821.761 11.198C823.139 11.198 824.114 12.303 824.114 14.227C824.114 16.164 823.139 17.295 821.761 17.295ZM821.761 16.216C822.32 16.216 822.762 15.644 822.762 14.227C822.762 12.81 822.32 12.277 821.761 12.277C821.202 12.277 820.773 12.81 820.773 14.227C820.773 15.644 821.202 16.216 821.761 16.216ZM822.086 21.182L827.312 11.198H828.443L823.217 21.182H822.086ZM828.755 21.182C827.39 21.182 826.415 20.038 826.415 18.114C826.415 16.177 827.39 15.072 828.755 15.072C830.12 15.072 831.108 16.177 831.108 18.114C831.108 20.038 830.12 21.182 828.755 21.182ZM828.755 20.09C829.314 20.09 829.756 19.531 829.756 18.114C829.756 16.697 829.314 16.151 828.755 16.151C828.196 16.151 827.767 16.697 827.767 18.114C827.767 19.531 828.196 20.09 828.755 20.09Z" fill="#0069B8"/>
|
||||
<path class="line-draw" d="M784.024 36.832L833.87 41" stroke="#0069B8" stroke-width="1.5" stroke-dasharray="2 2"/>
|
||||
<path class="line-draw-fill" d="M836 33L828.911 27.8249L828.188 36.4549L836 33ZM784.024 27L783.962 27.7474L829.232 32.9733L829.295 32.2259L829.357 31.4785L784.087 26.2526L784.024 27Z" fill="#0069B8"/>
|
||||
</g>
|
||||
|
||||
|
||||
<defs>
|
||||
<pattern id="pattern0_1333_2995" patternContentUnits="objectBoundingBox" width="1" height="1">
|
||||
<use xlink:href="#image0_1333_2995" transform="scale(0.002849 0.0222222)"/>
|
||||
</pattern>
|
||||
<image id="image0_1333_2995" width="351" height="45" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAV8AAAAtCAYAAAAJKGj/AAAACXBIWXMAAC4jAAAuIwF4pT92AAAE9klEQVR4nO2dAXKcMAxF2U7OugdIz5EcoJfdDml2SnbAlmVJluG9mTRNwxpj5I8sS/T2eDyWDT9+AAAAc25rg2/frW5F9w9jDQDgwv1bb29Pz/eB6AIAhLAK8PKLsQYACOXL0X3LMua/39/v258/Pj/xxEHFSFvCjkFKGvEFeLIVsJnE61V4AUqIxdfasCwmlbex47XEcXQvZxVigBp4vgM5EpxekfFq1+McLQ/Q57GziLB1PyPuayasr3evvZFjh/gGIxEbjch4tas9h+Q82pXL+rlsguO1Cou4r5Z9KSHpn8f1ltrsbatnzIdlO6wXsf0a1Y9IWq9TerxXu56fIT5aR3NfZx5XDzu2nEPWYyv2fLcKL3HfS08Iq4uIWEaPbr/m5UV4j1ET+qg/e+fP6P1u8QodnZWoVVBJh3ra0kCebwC9E0n7+dU4eoW7p+8tYlrqZ/aYprVQjrKXrGjtuBYi6AnrWdgkMV9nNJsGLZNnbacWZ33+m+Wk9PDGa+e7eqgi48rAM2vpSCyj7cDrfEPEd++GnXVi7YmG9aTwmmTa3earp4R5XH9tZXBGbzdBN3ax6hthhwC2N2t2Ybq6sL4SEXJgzH8S6bx5PtSGeL4zPKVn8U4BlgPvN/um5IxYjieeL4hhItdhjPyJWh14hwvZcCPndJfamJR+HzERMoDd/ERbCu7ltb+2my29EvFNhsdT3bJM06ICiSXyOSht9Fm8k2PPJnrnh9Zp8LDNqbIdIj2NERsfFtcnbcNLeF+P10wMSUFORqG+2sOjpXpMkiFzlDLX00dNJkiUzpi91Uzzezyd/0SKTIZxl3pNWSHk0EaPAJeOlx5Xa3dEkQ9hhwSMShrvMSrp6qU06bT5qTy0cyEJDSwCAfZcWe0VaEhsWHptR+2VINshMRnDHKVST01/Wz+TVXiv+EA4soVaOfAePe92aDn+2bfW0KfkpUWtfRnm+XpPVM3Lf7T96sE63NDqWVhvdGk202plo9mE7aohh+hKyr1zRpZSa/dFpJ9TvdUMbIgWm94yVG8bwMbORU9WS2uoqleAa15vqW/aOZUm5stO8T8QoPngnunRhr68Vx+9ecoSXMSXTZQyI4X3jC9hiYSx82d06K8380HqhZuKb49hWuzAz8AsHu8IkSYdUQ9jp2Pkw9RMfK0uorcEMLPBZRBePDdbIu7drNV/Mz4QIvtnkmpmXVV1RoHwFF5JGowF2irE6Am3TSeyPHfEGEdUHmrJZGcznecI1w23oxzA7c9X8MS8hXf7d8sk9qM2js6BV+3HUVhuhFDVQoStVWqt2Qte12wVzzVPNSt1pqcDXrHFnnQWS1pSWFr7a1ELX9tc6D3HmeOOI1ICPd/d0Yqlre3haWeWmqNty6XCzaJqCS8qB9YlyLMSbY/e4/4MIWy/Ssdq+yLpU4bCppb+ScetBuXFE9M7QVvr4lvbV3UM0o17b+zcexXae83WFZ7SY1OIL16uHs3E8J7UVxDeqGvMNO7ettbafuQ7JCTnau3L7fF4rN/XP8xL86TLH+vPWoIHF4fn/bQuPZ3dLsgLHs7dNdvh6PVteLoAcHVMxFeSscAOOczIWT1E5th4zGK+VjcTowCAK2AS832FF+sAABS5u4jvHrX/vgMA4ELEiS8AAHzx5YhuY75kIAAAxHB7er7Lt/cLAAD+3LapZjcGHAAggGVZ/gLAiqPuIHEBbwAAAABJRU5ErkJggss="/>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 32 KiB |
BIN
kngil/img/analysis/img_statistics_03.jpg
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
kngil/img/analysis/img_statistics_03.png
Normal file
|
After Width: | Height: | Size: 93 KiB |
261
kngil/img/analysis/img_statistics_03_apx.svg
Normal file
|
After Width: | Height: | Size: 103 KiB |
21
kngil/img/atom_line.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<svg width="326" height="353" viewBox="0 0 326 353" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css">
|
||||
|
||||
.cls-1 {
|
||||
stroke-dasharray:600;
|
||||
stroke-dashoffset:-600;
|
||||
animation: anime 5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes anime {
|
||||
0% {stroke-dashoffset: 600;}
|
||||
50% {stroke-dashoffset: 0;}
|
||||
100% {stroke-dashoffset: 600;}
|
||||
}
|
||||
</style>
|
||||
<path class="cls-1" d="M133.69 14.9265C141.486 8.5028 149.895 5.01562 158.611 5.01562C199.614 5.01562 232.883 81.7947 232.883 176.438C232.883 271.081 199.614 347.86 158.611 347.86C117.608 347.86 84.3389 271.081 84.3389 176.438C84.3389 121.255 95.6332 72.1284 113.188 40.8051" stroke="#249473" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<path class="cls-1" d="M42.6605 281.971C27.2536 279.218 15.7138 272.672 9.63694 262.211C-10.8647 226.788 39.2231 159.737 121.475 112.385C203.727 65.0324 287.084 55.3662 307.585 90.7885C328.087 126.211 277.999 193.263 195.747 240.615C152.78 265.331 109.567 279.769 75.1316 282.889" stroke="#DA8858" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<path class="cls-1" d="M299.422 205.498C281.007 174.542 243.871 140.098 195.747 112.385C113.495 65.0324 30.1385 55.3662 9.63694 90.7885C-10.8647 126.211 39.2231 193.263 121.475 240.615C203.727 287.967 287.084 297.633 307.585 262.211C311.882 254.808 313.11 245.998 311.514 236.21" stroke="#D5BE9A" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
33
kngil/img/bg_atom_line.svg
Normal file
@@ -0,0 +1,33 @@
|
||||
<svg width="385" height="418" viewBox="0 0 385 418" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css">
|
||||
.cls-1 {
|
||||
stroke-dasharray: 600;
|
||||
stroke-dashoffset: -600;
|
||||
animation: anime 5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
stroke-dasharray: 600;
|
||||
stroke-dashoffset: -600;
|
||||
animation: anime 5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
stroke-dasharray: 600;
|
||||
stroke-dashoffset: -600;
|
||||
animation: anime 5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes anime {
|
||||
0% {stroke-dashoffset: 600;}
|
||||
50% {stroke-dashoffset: 0;}
|
||||
100% {stroke-dashoffset: 600;}
|
||||
}
|
||||
</style>
|
||||
|
||||
<path class="cls-1" d="M368.631 93.0189C332.681 63.367 238.631 77.921 145.71 130.006C78.1523 167.875 27.9846 216.113 8.8828 256.936C3.38148 268.692 0.45687 279.834 0.435663 289.936C0.418642 298.043 2.2718 305.48 6.16402 312.028C13.7464 324.738 28.1452 332.69 47.3691 336.035C55.1896 337.118 74.2413 338.858 87.885 337.15C130.852 333.359 184.771 315.819 238.383 285.791C334.124 232.125 394.939 157.631 381.904 112.936" stroke="#D5BE9A" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<path class="cls-2" d="M367.743 243.129C344.766 205.52 298.43 163.675 238.383 130.006C135.753 72.4786 31.7449 60.7353 6.16402 103.769C-19.4169 146.804 43.0802 228.264 145.71 285.791C248.34 343.319 352.349 355.062 377.929 312.028C383.291 303.035 384.822 292.332 382.831 280.44" stroke="#DA8858" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<path class="cls-3" d="M160.867 12.4857C170.575 4.67416 181.047 0.433594 191.902 0.433594C242.964 0.433594 284.395 93.8005 284.395 208.891C284.395 323.982 242.964 417.348 191.902 417.348C140.839 417.348 99.4082 323.982 99.4082 208.891C99.4082 141.786 113.473 82.0459 135.335 43.9552" stroke="#249473" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
BIN
kngil/img/bg_atom_obj.png
Normal file
|
After Width: | Height: | Size: 65 KiB |
34
kngil/img/bg_atom_obj.svg
Normal file
@@ -0,0 +1,34 @@
|
||||
<svg width="385" height="418" viewBox="0 0 385 418" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.16402 312.028C13.7464 324.738 28.1452 332.69 47.3691 336.035C55.1896 337.118 74.2413 338.858 87.885 337.15C130.852 333.359 184.771 315.819 238.383 285.791C334.124 232.125 394.939 157.631 381.904 112.936L368.631 93.0189C332.681 63.367 238.631 77.921 145.71 130.006C78.1523 167.875 27.9846 216.113 8.8828 256.936C3.38148 268.692 0.45687 279.834 0.435663 289.936C0.418642 298.043 2.2718 305.48 6.16402 312.028Z" fill="url(#paint0_linear_635_10694)" fill-opacity="0.5"/>
|
||||
<path d="M368.631 93.0189C332.681 63.367 238.631 77.921 145.71 130.006C78.1523 167.875 27.9846 216.113 8.8828 256.936C3.38148 268.692 0.45687 279.834 0.435663 289.936C0.418642 298.043 2.2718 305.48 6.16402 312.028C13.7464 324.738 28.1452 332.69 47.3691 336.035C55.1896 337.118 74.2413 338.858 87.885 337.15C130.852 333.359 184.771 315.819 238.383 285.791C334.124 232.125 394.939 157.631 381.904 112.936" stroke="none" stroke-opacity="0.6" stroke-width="0.870541" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M367.743 243.129C344.766 205.52 298.43 163.675 238.383 130.006C135.753 72.4786 31.7449 60.7353 6.16402 103.769C-19.4169 146.804 43.0802 228.264 145.71 285.791C248.34 343.319 352.349 355.062 377.929 312.028C383.291 303.035 384.822 292.332 382.831 280.44" fill="url(#paint2_linear_635_10694)" fill-opacity="0.5"/>
|
||||
<path d="M367.743 243.129C344.766 205.52 298.43 163.675 238.383 130.006C135.753 72.4786 31.7449 60.7353 6.16402 103.769C-19.4169 146.804 43.0802 228.264 145.71 285.791C248.34 343.319 352.349 355.062 377.929 312.028C383.291 303.035 384.822 292.332 382.831 280.44" stroke="none" stroke-opacity="0.6" stroke-width="0.870541" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M160.867 12.4857C170.575 4.67416 181.047 0.433594 191.902 0.433594C242.964 0.433594 284.395 93.8005 284.395 208.891C284.395 323.982 242.964 417.349 191.902 417.349C140.839 417.349 99.4082 323.982 99.4082 208.891C99.4082 141.786 113.473 82.0459 135.335 43.9552" fill="url(#paint4_linear_635_10694)" fill-opacity="0.6"/>
|
||||
<path d="M160.867 12.4857C170.575 4.67416 181.047 0.433594 191.902 0.433594C242.964 0.433594 284.395 93.8005 284.395 208.891C284.395 323.982 242.964 417.348 191.902 417.348C140.839 417.348 99.4082 323.982 99.4082 208.891C99.4082 141.786 113.473 82.0459 135.335 43.9552" stroke="none" stroke-opacity="0.6" stroke-width="0.870541" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_635_10694" x1="13.6308" y1="315.936" x2="383.631" y2="103.936" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E9BF87" stop-opacity="0.2"/>
|
||||
<stop offset="0.21" stop-color="#E9BF87" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_635_10694" x1="375.631" y1="96.4355" x2="8.63086" y2="315.936" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C8C8C8"/>
|
||||
<stop offset="1" stop-color="#E9BF87"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_635_10694" x1="378.422" y1="312.936" x2="0.682158" y2="126.027" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E9BF87" stop-opacity="0.2"/>
|
||||
<stop offset="0.21" stop-color="#E9BF87" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_635_10694" x1="378.422" y1="297.436" x2="14.4219" y2="92.4356" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E9BF87"/>
|
||||
<stop offset="1" stop-color="#C8C8C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_635_10694" x1="188.424" y1="409.434" x2="191.631" y2="0.433592" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.79" stop-color="#E9BF87" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#E9BF87" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_635_10694" x1="191.631" y1="422.934" x2="-9.91212" y2="260.619" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C8C8C8"/>
|
||||
<stop offset="1" stop-color="#E9BF87"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
BIN
kngil/img/buy/bg_buy_content.png
Normal file
|
After Width: | Height: | Size: 740 KiB |
BIN
kngil/img/buy/bg_buy_title.jpg
Normal file
|
After Width: | Height: | Size: 308 KiB |
BIN
kngil/img/buy/bg_buy_title.png
Normal file
|
After Width: | Height: | Size: 702 KiB |
BIN
kngil/img/buy/bg_grid.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
3
kngil/img/buy/ico-alert.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="17" height="19" viewBox="0 0 17 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0 16.15V14.25H2.125V7.6C2.125 6.28583 2.56771 5.11828 3.45312 4.09735C4.33854 3.07642 5.48958 2.4073 6.90625 2.09V0H10.0938V2.09C11.5104 2.40667 12.6615 3.07578 13.5469 4.09735C14.4323 5.11892 14.875 6.28647 14.875 7.6V14.25H17V16.15H0ZM8.5 19C7.91563 19 7.41554 18.8141 6.99975 18.4423C6.58396 18.0706 6.37571 17.6231 6.375 17.1H10.625C10.625 17.6225 10.4171 18.0699 10.0013 18.4423C9.58552 18.8147 9.08508 19.0006 8.5 19ZM7.4375 10.45H9.5625V5.7H7.4375V10.45ZM8.5 13.3C8.80104 13.3 9.05356 13.2088 9.25756 13.0264C9.46156 12.844 9.56321 12.6185 9.5625 12.35C9.56179 12.0815 9.45979 11.856 9.2565 11.6736C9.05321 11.4912 8.80104 11.4 8.5 11.4C8.19896 11.4 7.94679 11.4912 7.7435 11.6736C7.54021 11.856 7.43821 12.0815 7.4375 12.35C7.43679 12.6185 7.53879 12.8443 7.7435 13.0273C7.94821 13.2104 8.20037 13.3013 8.5 13.3Z" fill="#553E00"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 952 B |
3
kngil/img/buy/ico_brochure.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.5129 0C11.868 0 11.28 0.343041 10.106 1.02609L3.67499 4.76524C2.56741 5.39621 1.64442 6.31082 0.999174 7.41675C0.353932 8.52268 0.00927688 9.78078 0 11.0641L0 11.3022C0.00934894 12.5838 0.353211 13.8403 0.996963 14.9452C1.64071 16.0501 2.56163 16.9644 3.66699 17.596L7.68997 19.9397C10.044 21.3119 11.221 22 12.514 22C13.8059 22.001 14.9839 21.3159 17.3389 19.9438L21.5899 17.4688C22.7669 16.7828 23.3539 16.4397 23.6769 15.8757C23.9999 15.3107 24.0009 14.6246 23.9999 13.2525V10.5989C24.0001 10.4149 23.9523 10.2339 23.8613 10.0744C23.7703 9.91482 23.6393 9.78223 23.4814 9.68991C23.3236 9.5976 23.1444 9.54881 22.9619 9.54845C22.7795 9.54809 22.6001 9.59618 22.4419 9.68787L13.7139 14.7568C13.1269 15.0968 12.8339 15.2683 12.5129 15.2683C12.19 15.2683 11.897 15.0988 11.309 14.7578L5.40498 11.3345C5.10798 11.1619 4.95898 11.0762 4.83998 11.061C4.70849 11.0435 4.57495 11.0705 4.46025 11.1376C4.34554 11.2048 4.25613 11.3084 4.20598 11.4323C4.16098 11.5443 4.16098 11.7169 4.16298 12.0629C4.16498 12.3172 4.16298 12.4443 4.18798 12.5613C4.24098 12.8227 4.37698 13.0587 4.57498 13.2343C4.66398 13.312 4.77298 13.3756 4.99098 13.5027L11.306 17.1853C11.895 17.5284 12.19 17.6999 12.5129 17.6999C12.8359 17.6999 13.1299 17.5284 13.7189 17.1863L21.4589 12.6774C21.6609 12.5603 21.7609 12.5038 21.8359 12.5462C21.9109 12.5906 21.9109 12.7076 21.9109 12.9417V14.1454C21.9109 14.4884 21.9119 14.6599 21.8309 14.8002C21.7509 14.9414 21.6039 15.0262 21.3089 15.1977L14.9269 18.9157C13.7489 19.6017 13.1599 19.9448 12.514 19.9448C11.868 19.9448 11.278 19.6017 10.102 18.9136L4.13198 15.4308L4.08898 15.4055C3.47373 15.0427 2.96284 14.5243 2.60668 13.9016C2.25053 13.2788 2.06141 12.5731 2.05799 11.8541V10.6978C2.05828 10.3006 2.16187 9.91042 2.3584 9.56624C2.55494 9.22205 2.83754 8.93593 3.17799 8.73644C3.47913 8.56057 3.8209 8.46788 4.16885 8.46771C4.5168 8.46753 4.85866 8.55987 5.15998 8.73543L10.106 11.619C11.28 12.3041 11.868 12.6471 12.5129 12.6481C13.1579 12.6481 13.7459 12.3051 14.9229 11.622L22.4049 7.2775C22.5711 7.18098 22.7091 7.04198 22.8051 6.87451C22.901 6.70704 22.9516 6.517 22.9516 6.32355C22.9516 6.1301 22.901 5.94006 22.8051 5.77259C22.7091 5.60511 22.5711 5.46611 22.4049 5.36959L14.9199 1.02206C13.7449 0.341023 13.1579 0 12.514 0H12.5129Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
3
kngil/img/buy/ico_contact.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22 17.1012C21.9999 18.4779 21.5326 19.8133 20.6755 20.8861C19.8183 21.9589 18.6228 22.7047 17.287 23L16.649 21.0733C17.2333 20.9767 17.789 20.7506 18.276 20.4115C18.763 20.0724 19.1691 19.6287 19.465 19.1125H17C16.4696 19.1125 15.9609 18.9003 15.5858 18.5228C15.2107 18.1452 15 17.6332 15 17.0992V13.0728C15 12.5388 15.2107 12.0267 15.5858 11.6492C15.9609 11.2716 16.4696 11.0595 17 11.0595H19.938C19.694 9.11364 18.7529 7.32426 17.2914 6.02714C15.8299 4.73002 13.9484 4.01431 12 4.01431C10.0516 4.01431 8.17007 4.73002 6.70857 6.02714C5.24708 7.32426 4.30603 9.11364 4.062 11.0595H7C7.53043 11.0595 8.03914 11.2716 8.41421 11.6492C8.78929 12.0267 9 12.5388 9 13.0728V17.0992C9 17.6332 8.78929 18.1452 8.41421 18.5228C8.03914 18.9003 7.53043 19.1125 7 19.1125H4C3.46957 19.1125 2.96086 18.9003 2.58579 18.5228C2.21071 18.1452 2 17.6332 2 17.0992V12.0661C2 6.50662 6.477 2 12 2C17.523 2 22 6.50662 22 12.0661V17.1012Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
6
kngil/img/buy/ico_coordinate.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="40" height="50" viewBox="0 0 40 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.8">
|
||||
<path d="M19.9904 4C11.1708 4 4 11.481 4 20.6915C4 27.4924 8.06471 33.7104 14.1234 36.2171L18.4949 44.1062C18.8017 44.6502 19.3769 45 20.0096 45C20.6423 45 21.2175 44.6502 21.5243 44.1062L25.8957 36.2171C26.6435 35.9062 27.3721 35.537 28.0623 35.1095C28.8868 34.6043 29.136 33.5355 28.6567 32.7C28.1582 31.8645 27.1037 31.6118 26.2792 32.0976C25.704 32.4474 25.0905 32.7583 24.4769 33.0109C23.825 33.2635 23.2882 33.7493 22.9431 34.3711L20.0096 39.6758L17.0761 34.3711C16.731 33.7493 16.1941 33.2829 15.5422 33.0109C10.7106 31.0678 7.47034 26.1322 7.47034 20.6915C7.47034 13.4242 13.0881 7.51706 20.0096 7.51706C26.9311 7.51706 32.5488 13.4242 32.5488 20.6915C32.5488 23.4507 31.686 26.2294 30.0947 28.4834C29.5386 29.2801 29.7304 30.3682 30.4973 30.9318C31.2834 31.4953 32.3571 31.3009 32.9131 30.5237C34.9263 27.6284 36 24.228 36 20.6915C36 11.481 28.8101 4 19.9904 4Z" fill="#1A543D"/>
|
||||
<path d="M26.2422 18.7781C25.2656 18.7781 24.4844 19.5434 24.4844 20.5C24.4844 22.7194 22.707 24.537 20.5 24.537C18.293 24.537 16.5156 22.7194 16.5156 20.5C16.5156 18.2806 18.293 16.463 20.5 16.463C21.2422 16.463 21.9648 16.6735 22.6094 17.0753C23.4297 17.5918 24.5234 17.3622 25.0508 16.5587C25.5781 15.7551 25.3438 14.6837 24.5234 14.1671C23.332 13.4018 21.9258 13 20.5 13C16.3594 13 13 16.3673 13 20.5C13 24.6327 16.3594 28 20.5 28C24.6406 28 28 24.6327 28 20.5C28 19.5434 27.2188 18.7781 26.2422 18.7781Z" fill="#1A543D"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
13
kngil/img/buy/ico_data.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.8">
|
||||
<path d="M6 34.5315C6.18795 32.8363 7.56628 31.3271 9.15344 30.7896C9.0699 30.2107 9.25785 29.3218 9.13255 28.7842C9.00725 28.2674 7.96307 26.9856 7.67069 26.3448C6.62651 24.0293 7.98395 21.3418 10.5735 21.0937C11.743 20.9903 14.792 20.949 15.9198 21.0937C17.4025 21.3004 17.9872 23.1404 17.0684 24.2567C16.8177 24.5875 16.5045 24.6082 16.233 24.8563C16.0659 26.1587 16.4001 27.8126 16.1912 29.053C16.0659 29.7559 15.4812 30.2521 14.8547 30.5208C14.9382 30.7276 15.3768 30.6242 15.5647 30.6655C16.421 30.8309 17.2354 31.1617 17.9037 31.7199C19.6997 33.5598 21.2033 35.6685 22.8949 37.6119C24.3776 37.5292 26.0901 37.7773 27.552 37.6119C27.8443 37.5912 29.7447 37.1157 29.9327 37.0123C30.1624 36.7436 30.3086 36.3508 30.4757 36.0407C31.0395 34.9036 31.5616 33.2911 32.209 32.2574C32.3343 32.0713 32.4805 31.9473 32.7102 31.906L42.1079 31.8646C42.6926 31.8853 43.1312 32.154 42.9641 32.7949L39.2259 40.8576C39.2259 42.2014 39.2259 43.5865 37.6597 43.9587H24.8997C24.1688 43.8553 23.6467 43.4005 23.3335 42.7182C21.9969 42.6769 20.7648 42.9456 19.5744 42.2634C18.739 41.7879 18.2587 40.8783 17.5278 40.2581V44H16.2539V38.873L13.894 36.2267C13.8105 35.958 14.625 35.4205 14.8547 35.2757L20.18 41.085C20.3471 41.2504 20.9527 41.4571 21.1616 41.4571H25.7977V38.9143H22.3519C22.164 38.7282 21.976 38.5628 21.8089 38.3561C20.4306 36.7642 19.1567 34.8623 17.7366 33.3531C16.9013 32.4641 16.1495 32.0507 14.8965 31.9473C13.6434 31.8439 10.4691 31.8233 9.36227 32.1954C8.35986 32.5468 7.35744 33.8906 7.35744 34.945V43.9793H6.08353V34.5315H6ZM14.9173 24.8976L13.9776 24.939C13.7478 25.4144 13.1005 25.952 13.0378 26.4688C12.996 26.7996 12.996 28.3914 13.1213 28.5982C13.2049 28.7429 13.7896 29.2597 13.9567 29.3011C14.3326 29.3838 14.9173 29.1977 14.9173 28.7636V24.8976ZM12.1607 29.4044H10.5109V30.5828H13.5599C13.4555 30.4175 13.184 30.3761 13.0169 30.2521C12.8498 30.1074 12.2651 29.4251 12.1607 29.4044ZM41.2517 33.2084H33.2323L31.2484 37.5292C31.9584 37.984 33.7544 38.6869 33.9841 39.4932C34.0468 39.7206 34.0468 39.9273 34.0468 40.1547H37.9938L41.2517 33.2084ZM27.0716 38.8936V41.4365C27.3222 41.4778 27.4893 41.3538 27.6981 41.2504C28.2411 40.9403 29.6821 39.5759 30.1207 39.4932L32.7729 39.9893L30.1415 38.3354C29.0974 38.4388 28.1367 38.9556 27.0716 38.8936ZM30.8098 41.4365H29.5777C29.5777 41.4365 28.7006 42.2427 28.4917 42.3048L27.7399 42.7182H30.8934L30.8098 41.4365ZM37.8476 41.4365H32.1464C32.1255 41.9533 32.1464 42.5322 32.7311 42.6769C33.3785 42.8216 36.0934 42.7803 36.8661 42.7182C37.7641 42.6562 37.8894 42.3048 37.8476 41.4365Z" fill="#1A543D"/>
|
||||
<path d="M39.7269 26.6406H41V28H18V26.6406H19.2731V23.9835C19.2731 23.9835 19.6488 23.5097 19.7323 23.5097H23.0926V21.4293C23.0926 21.4293 23.4682 20.9556 23.5517 20.9556H26.912V18.2161C26.912 18.2161 27.2877 17.7424 27.3711 17.7424H30.7314V15.0853C30.7314 15.0853 31.1071 14.6115 31.1906 14.6115H34.5508V12.5311C34.5508 12.3458 34.9265 12.0986 35.1143 12.078C35.8866 11.9544 38.2033 11.9956 39.0172 12.078C39.2677 12.0986 39.7269 12.2634 39.7269 12.5517V26.62V26.6406ZM38.3702 13.3551H35.9074V26.62H38.3702V13.3551ZM34.5508 15.8886H32.088V26.62H34.5508V15.8886ZM30.7314 19.1018H28.2686V26.62H30.7314V19.1018ZM26.912 22.2327H24.4492V26.62H26.912V22.2327ZM23.0926 24.7662H20.6298V26.62H23.0926V24.7662Z" fill="#1A543D"/>
|
||||
<path d="M17.0816 31V29.6273H42.2559C42.445 29.6273 42.8022 29.1281 42.7392 28.8993L42.6972 7.76789C42.5921 7.37271 42.2979 7.28952 41.9407 7.24792H12.0803C11.8492 7.16473 11.3659 7.5183 11.3659 7.72629V20.0599H10V7.91348C10 7.91348 10.1471 7.28952 10.1891 7.16473C10.4203 6.54077 11.0927 6.10399 11.7441 6H42.1718C43.1805 6.0624 43.9159 6.83195 44 7.83028V29.2529C43.8949 29.8977 43.4536 30.584 42.8232 30.8128C42.6972 30.8544 42.1508 31 42.0667 31H17.0816Z" fill="#1A543D"/>
|
||||
<path d="M38 10.2646V11.5744H34.1963C33.7028 12.4616 33.086 12.9897 32.0168 12.8841C31.7084 12.8419 31.3589 12.5884 31.1533 12.6729L28.5421 14.6586L28.4804 14.8276C29.015 16.7923 27.0411 18.2288 25.4374 17.0669L22.2299 19.5174C22.7645 22.0525 19.5364 22.982 18.5495 20.7004H16V19.3907H18.5495C18.9402 18.4823 19.7215 17.9542 20.7084 18.102C20.9963 18.1443 21.243 18.3978 21.5103 18.3133C21.7159 18.2499 23.5252 16.8134 23.8336 16.5599C23.9776 16.4543 24.6972 15.8839 24.7178 15.8416C24.8617 15.5248 24.6766 15.0178 24.985 14.4896C25.5607 13.4756 26.6093 13.37 27.6168 13.6658L30.4131 11.4687C29.9402 8.9337 33.1065 8.02532 34.1551 10.3068H37.9589L38 10.2646ZM32.2019 10.2646C31.3383 10.4336 31.729 11.9124 32.5925 11.4476C33.2299 11.1096 32.8393 10.1378 32.2019 10.2646ZM26.4243 14.8699C25.7664 15.0811 26.0131 16.3275 26.8972 16.0529C27.5551 15.8416 27.3084 14.5953 26.4243 14.8699ZM20.2561 19.3696C19.4953 19.5386 19.7009 20.8272 20.5439 20.6371C21.3047 20.4681 21.0991 19.1794 20.2561 19.3696Z" fill="#1A543D"/>
|
||||
<path d="M41 10H40V11H41V10Z" fill="#1A543D"/>
|
||||
<path d="M15 19H14V20H15V19Z" fill="#1A543D"/>
|
||||
<path d="M14.3546 8.01831C15.0891 7.85273 15.2115 8.86127 14.6454 8.98169C13.9109 9.14727 13.7885 8.13873 14.3546 8.01831Z" fill="#1A543D"/>
|
||||
<path d="M12.3788 8.0121C13.1204 7.8757 13.2193 8.93657 12.5601 8.99719C11.9009 9.05781 11.802 8.11818 12.3788 8.0121Z" fill="#1A543D"/>
|
||||
<path d="M16.3788 8.0121C17.1204 7.8757 17.2193 8.93657 16.5601 8.99719C15.9009 9.05781 15.802 8.11818 16.3788 8.0121Z" fill="#1A543D"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.3 KiB |
9
kngil/img/buy/ico_gis.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.8">
|
||||
<path d="M34.1305 29.4241C34.3718 29.2152 34.4924 28.9304 34.4723 28.6266C34.4522 28.3228 34.2712 28.057 33.9898 27.8861L31.9393 26.7468C32.08 26.6709 32.2006 26.5949 32.3413 26.519L32.5424 26.4051C32.9846 26.1582 33.447 25.9114 33.8893 25.6456C33.9496 25.6076 34.0099 25.5696 34.0501 25.5127C34.412 25.0949 34.3517 24.4684 33.9697 24.1646C33.9295 24.1266 33.8692 24.0886 33.8491 24.0696L32.2006 23.1392C32.7635 22.8354 33.3264 22.5127 33.8893 22.1519C34.0903 22.038 34.4522 21.8101 34.4924 21.3734C34.5326 21.0886 34.412 20.8228 34.1707 20.5949C34.1506 20.557 34.0501 20.5 34.0099 20.462L26.3506 16.0949C26.2501 16.038 26.1295 16 26.0088 16H25.8279C25.6872 16 25.5465 16.038 25.4459 16.0949L18.0681 20.5C18.0681 20.5 17.9273 20.6139 17.8871 20.6709C17.5856 21.0506 17.6057 21.5633 17.9474 21.9241C17.9877 21.981 18.048 22.019 18.1083 22.057L19.7768 23.0443L17.9474 24.0886L17.9072 24.1266C17.5052 24.4494 17.4851 24.8291 17.5052 24.962C17.5052 25.1899 17.6459 25.5316 18.1284 25.7975C18.7516 26.1392 19.3748 26.5 19.9779 26.8797C19.8975 26.8797 19.8372 26.9177 19.7567 26.9557C19.4351 27.0696 19.1536 27.2785 18.8119 27.5063C18.6511 27.6203 18.3696 27.8101 18.1887 27.8861C18.0681 27.943 17.9676 28.019 17.8871 28.1139C17.7062 28.3797 17.6258 28.6456 17.6861 28.8924C17.7665 29.2911 18.1083 29.5 18.2892 29.6139L18.3495 29.6519C19.4753 30.3734 20.6614 31.057 21.7067 31.6835L21.8274 31.7595C22.8325 32.3481 24.099 33.0696 25.2449 33.8101C25.4459 33.943 25.6671 34 25.8882 34C26.049 34 26.2099 33.962 26.2903 33.924C26.2903 33.924 26.3707 33.8861 26.4109 33.8671L34.0501 29.5C34.0501 29.5 34.1104 29.443 34.1305 29.443V29.4241ZM25.9083 24.4114L20.6413 21.2405L25.8882 18.1266L31.3965 21.3165L25.9083 24.4304V24.4114ZM25.8279 26.538H25.9485C26.049 26.538 26.1898 26.5 26.3104 26.443C27.6171 25.7215 29.0846 24.8861 30.5723 24.0506C30.5924 24.1835 30.6527 24.3165 30.7331 24.4494C30.7934 24.5443 30.8738 24.6203 30.9542 24.6582L31.3161 24.8671L25.7274 28.019L20.4805 24.8481L21.6866 24.1835L25.4459 26.4241C25.5666 26.5 25.6872 26.538 25.8279 26.538ZM25.8279 30.1646C25.8279 30.1646 26.0088 30.1266 26.1093 30.0696L29.9491 27.9051L31.4166 28.7215L25.9083 31.8734L20.6212 28.7025C20.7418 28.6266 20.8624 28.5316 20.9629 28.4367C21.1841 28.2089 21.2645 27.9051 21.2243 27.6392C21.3047 27.6962 21.3851 27.7532 21.4856 27.7911L21.5459 27.8291C22.6717 28.5506 23.8578 29.2911 25.1042 29.9557C25.2449 30.0316 25.466 30.1835 25.848 30.1266L25.8279 30.1646Z" fill="#1A543D"/>
|
||||
<path d="M34.9152 7.04797L34.8201 6.99046C34.0786 6.60711 33.2611 6.16625 32.7858 6.05125C32.3105 5.93624 31.8542 6.01291 31.569 6.30043C31.2838 6.56877 31.1887 6.95213 31.2648 7.41215C31.3598 7.92968 32.0633 8.25553 33.109 8.67722L33.2041 8.71556C33.3562 8.77306 33.4702 8.83056 33.5653 8.8689C38.7938 11.5332 42.3682 16.5935 43.1287 22.4396C43.9082 28.3624 41.8358 34.0552 37.4249 38.0613C36.3412 39.0388 35.1814 39.8631 34.0596 40.4381C34.0977 40.0931 33.9836 39.7864 33.6984 39.5372C33.2611 39.1347 32.5956 39.1347 32.1393 39.5372C32.1013 39.5564 32.0823 39.5947 32.0443 39.6522L30.5803 42.2207C30.3521 42.9682 30.6373 43.2557 31.0936 43.6008C31.2838 43.7541 33.2611 44.9617 33.7174 45C33.7744 45 33.8315 45 33.8885 45C34.4399 45 34.8011 44.7125 34.9342 44.2141C35.1243 43.4858 34.7061 43.1024 34.3258 42.8724C38.6987 40.6681 42.121 37.0262 43.9653 32.5985C47.9389 23.0722 43.9462 11.8591 34.8772 7.06713L34.9152 7.04797Z" fill="#1A543D"/>
|
||||
<path d="M17.0626 41.2877C16.8706 41.2108 16.717 41.1531 16.6018 41.0954C9.76557 37.6329 5.8674 30.2078 6.94276 22.5903C7.71087 17.0503 11.1674 12.1066 15.9873 9.50978C15.9297 9.77909 15.9489 10.0484 16.1409 10.3562C16.3521 10.6639 16.6402 10.8563 16.9858 10.8755C17.3507 10.914 17.7347 10.7217 17.9844 10.3946C18.2724 10.0484 19.1941 8.43256 19.367 7.99014C19.5398 7.58618 19.6358 7.06681 19.0597 6.54743C18.7909 6.3166 16.8706 5.22015 16.5634 5.08549C16.1217 4.91237 15.68 5.00855 15.3344 5.31633C14.9887 5.64334 14.8927 6.12424 15.0463 6.5859C15.1231 6.83597 15.3344 7.0091 15.5648 7.14375C10.0728 9.85603 5.98262 15.2614 4.84965 21.3592C3.21741 30.1501 7.40363 38.8255 15.2384 42.942L15.3152 42.9805C16.0833 43.3844 16.9282 43.8076 17.3891 43.9423C17.5235 43.9808 17.6771 44 17.8115 44C18.138 44 18.4068 43.9038 18.6181 43.6922C18.9061 43.4229 19.0021 43.0382 18.9253 42.5765C18.8293 42.0572 18.1188 41.7301 17.0626 41.2877Z" fill="#1A543D"/>
|
||||
<path d="M25.1188 38.0302C23.6189 38.14 22.2609 38.8356 21.3894 39.9706C20.5381 41.0872 20.2746 42.4785 20.7003 43.7782C21.2272 45.4074 22.646 46.579 24.5107 46.9085C24.8553 46.9634 25.1998 47 25.5241 47C27.024 47 28.4225 46.3959 29.4156 45.2976C30.652 43.9063 30.8547 42.0391 29.9021 40.4282C28.9495 38.799 27.1456 37.8837 25.1188 38.0119V38.0302ZM27.2469 40.5747C27.2469 40.5747 27.2267 40.5747 27.2064 40.5747C26.9226 40.6479 26.4767 41.0506 25.5647 41.9476C25.3417 42.1673 25.0782 42.4236 24.9161 42.5517C24.835 42.4785 24.7539 42.4053 24.6728 42.3137C24.308 41.9659 23.9432 41.5998 23.5581 41.5815H23.5378C23.2541 41.5815 23.0108 41.7096 22.8487 41.9293C22.6663 42.1673 22.6258 42.4785 22.7474 42.7531C22.8284 42.9361 24.3486 44.2541 24.4296 44.3091C24.612 44.4189 24.7742 44.4555 24.9161 44.4555C25.2201 44.4555 25.443 44.2908 25.6255 44.1443C25.9295 43.9246 27.9563 42.149 28.159 41.8012C28.3211 41.5266 28.3211 41.2154 28.159 40.9774C28.2603 41.1239 28.3819 41.2337 28.463 41.3984C29.0508 42.6432 28.6252 44.0162 27.3888 44.8765C26.4767 45.4989 25.3012 45.6271 24.2067 45.1877C23.0717 44.7301 22.3217 43.7782 22.2204 42.6981C22.119 41.2886 23.3757 39.8241 24.8755 39.6411C26.1727 39.4763 27.328 39.9523 28.0374 40.8127C27.8347 40.6296 27.5509 40.5198 27.2267 40.593L27.2469 40.5747Z" fill="#1A543D"/>
|
||||
<path d="M24.5107 11.9085C24.8553 11.9634 25.1998 12 25.5241 12C27.024 12 28.4225 11.3959 29.4156 10.2975C30.652 8.90626 30.8547 7.03904 29.9021 5.4281C28.9495 3.81716 27.1659 2.88354 25.1188 3.01169C23.6189 3.12152 22.2609 3.81716 21.3894 4.95214C20.5381 6.06881 20.2746 7.46008 20.7003 8.75981C21.2272 10.3891 22.646 11.5607 24.5107 11.8902V11.9085ZM24.9161 4.64093C26.2132 4.47618 27.3685 4.95214 28.0779 5.81252C27.8752 5.62946 27.5915 5.51963 27.2672 5.59285C27.2672 5.59285 27.2469 5.59285 27.2267 5.59285C26.9429 5.66608 26.497 6.06881 25.5849 6.96581C25.362 7.18549 25.0985 7.44177 24.9363 7.56991C24.8553 7.49669 24.7742 7.42347 24.6931 7.33193C24.3283 6.98412 23.9635 6.618 23.5784 6.59969C23.2946 6.59969 23.0311 6.70953 22.869 6.94751C22.6866 7.18549 22.646 7.49669 22.7676 7.77128C22.8487 7.95434 24.3688 9.27239 24.4499 9.3273C24.6323 9.43714 24.7945 9.47375 24.9363 9.47375C25.2404 9.47375 25.4633 9.309 25.6457 9.16255C25.9498 8.94287 27.9766 7.16718 28.1793 6.81936C28.3414 6.54477 28.3211 6.23357 28.1793 5.99559C28.2806 6.14204 28.4022 6.25187 28.4833 6.41663C29.0711 7.66145 28.6454 9.03441 27.4091 9.89479C26.497 10.5172 25.3214 10.6453 24.2269 10.206C23.0919 9.74835 22.342 8.79643 22.2407 7.71636C22.1393 6.30679 23.3959 4.8423 24.8958 4.65924L24.9161 4.64093Z" fill="#1A543D"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.9 KiB |
21
kngil/img/buy/ico_mail.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16 0.5C24.5604 0.5 31.5 7.43959 31.5 16C31.5 24.5604 24.5604 31.5 16 31.5C7.43959 31.5 0.5 24.5604 0.5 16C0.5 7.43959 7.43959 0.5 16 0.5Z" fill="url(#paint0_linear_1756_3446)"/>
|
||||
<path d="M16 0.5C24.5604 0.5 31.5 7.43959 31.5 16C31.5 24.5604 24.5604 31.5 16 31.5C7.43959 31.5 0.5 24.5604 0.5 16C0.5 7.43959 7.43959 0.5 16 0.5Z" stroke="url(#paint1_linear_1756_3446)"/>
|
||||
<path d="M16 0.5C24.5604 0.5 31.5 7.43959 31.5 16C31.5 24.5604 24.5604 31.5 16 31.5C7.43959 31.5 0.5 24.5604 0.5 16C0.5 7.43959 7.43959 0.5 16 0.5Z" stroke="white" stroke-opacity="0.3"/>
|
||||
<path d="M8.8 24C8.305 24 7.8814 23.8043 7.5292 23.413C7.177 23.0217 7.0006 22.5507 7 22V10C7 9.45 7.1764 8.97933 7.5292 8.588C7.882 8.19667 8.3056 8.00067 8.8 8H23.2C23.695 8 24.1189 8.196 24.4717 8.588C24.8245 8.98 25.0006 9.45067 25 10V22C25 22.55 24.8239 23.021 24.4717 23.413C24.1195 23.805 23.6956 24.0007 23.2 24H8.8ZM16 17L8.8 12V22H23.2V12L16 17ZM16 15L23.2 10H8.8L16 15ZM8.8 12V10V22V12Z" fill="#00832A"/>
|
||||
<path d="M8.8 24C8.305 24 7.8814 23.8043 7.5292 23.413C7.177 23.0217 7.0006 22.5507 7 22V10C7 9.45 7.1764 8.97933 7.5292 8.588C7.882 8.19667 8.3056 8.00067 8.8 8H23.2C23.695 8 24.1189 8.196 24.4717 8.588C24.8245 8.98 25.0006 9.45067 25 10V22C25 22.55 24.8239 23.021 24.4717 23.413C24.1195 23.805 23.6956 24.0007 23.2 24H8.8ZM16 17L8.8 12V22H23.2V12L16 17ZM16 15L23.2 10H8.8L16 15ZM8.8 12V10V22V12Z" fill="url(#paint2_linear_1756_3446)" fill-opacity="0.4" style="mix-blend-mode:overlay"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1756_3446" x1="16" y1="0" x2="16" y2="32" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0.85"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1756_3446" x1="16" y1="0" x2="16" y2="32" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#48C06E"/>
|
||||
<stop offset="1" stop-color="#21A14A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1756_3446" x1="16" y1="8" x2="16" y2="24" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
12
kngil/img/buy/ico_natural.svg
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
28
kngil/img/buy/ico_standard.svg
Normal file
@@ -0,0 +1,28 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.8" clip-path="url(#clip0_1756_3405)">
|
||||
<path d="M10.7787 40.3333H22.2436L20.6792 44.5886H19.0738V46H32.9262V44.5886H31.3208L29.7564 40.3333H41.2213C42.7444 40.3333 44 39.0694 44 37.4895V26.8513H42.6209V34.6456H9.37907V14.8228C9.37907 14.0434 9.99657 13.4114 10.7581 13.4114H24.6106V12H10.7787C9.25557 12 8 13.2639 8 14.8439V37.5105C8 39.0694 9.23499 40.3544 10.7787 40.3544V40.3333ZM29.8593 44.5886H22.1612L23.7256 40.3333H28.295L29.8593 44.5886ZM9.37907 36.0781H42.6003V37.4895C42.6003 38.2689 41.9828 38.9009 41.2213 38.9009H10.7787C10.0172 38.9009 9.39966 38.2689 9.39966 37.4895V36.0781H9.37907Z" fill="#1A543D"/>
|
||||
<path d="M12 15H11V16H12V15Z" fill="#1A543D"/>
|
||||
<path d="M15 15H14V16H15V15Z" fill="#1A543D"/>
|
||||
<path d="M17 15H16V16H17V15Z" fill="#1A543D"/>
|
||||
<path d="M24.9792 18H11V19H25V18H24.9792Z" fill="#1A543D"/>
|
||||
<path d="M14.9802 21H11V22H15V21H14.9802Z" fill="#1A543D"/>
|
||||
<path d="M14.9802 24H11V25H15V24H14.9802Z" fill="#1A543D"/>
|
||||
<path d="M14.9802 26H11V27H15V26H14.9802Z" fill="#1A543D"/>
|
||||
<path d="M14.9802 29H11V30H15V29H14.9802Z" fill="#1A543D"/>
|
||||
<path d="M14.9802 32H11V33H15V32H14.9802Z" fill="#1A543D"/>
|
||||
<path d="M17 21H16V34H17V21Z" fill="#1A543D"/>
|
||||
<path d="M22 21H19V22H22V21Z" fill="#1A543D"/>
|
||||
<path d="M26 24H23V25H26V24Z" fill="#1A543D"/>
|
||||
<path d="M29 26H26V27H29V26Z" fill="#1A543D"/>
|
||||
<path d="M36 29H30V30H36V29Z" fill="#1A543D"/>
|
||||
<path d="M40 32H36V33H40V32Z" fill="#1A543D"/>
|
||||
<path d="M49.2867 13.1678H47.4615C47.2727 12.5175 47 11.8881 46.6853 11.3007L47.986 10C48.2587 9.72727 48.2587 9.28671 47.986 9.01399L44.986 6.01399C44.7133 5.74126 44.2727 5.74126 44 6.01399L42.6993 7.31469C42.1119 7 41.4825 6.72727 40.8322 6.53846V4.71329C40.8322 4.33566 40.5175 4 40.1189 4H35.8811C35.4825 4 35.1678 4.31469 35.1678 4.71329V6.53846C34.5175 6.72727 33.8881 7 33.3007 7.31469L32 6.01399C31.7273 5.74126 31.2867 5.74126 31.014 6.01399L28.014 9.01399C27.7413 9.28671 27.7413 9.72727 28.014 10L29.3147 11.3007C29 11.8881 28.7273 12.5175 28.5385 13.1678H26.7133C26.3147 13.1678 26 13.4825 26 13.8811V18.1189C26 18.5175 26.3147 18.8322 26.7133 18.8322H28.5385C28.7273 19.4825 29 20.1119 29.3147 20.6993L28.014 22C27.7413 22.2727 27.7413 22.7133 28.014 22.986L31.014 25.986C31.2867 26.2587 31.7273 26.2587 32 25.986L33.3007 24.6853C33.8881 25 34.5175 25.2727 35.1678 25.4615V27.2867C35.1678 27.6643 35.4825 28 35.8811 28H40.1189C40.4965 28 40.8322 27.6853 40.8322 27.2867V25.4615C41.4825 25.2727 42.1119 25 42.6993 24.6853L44 25.986C44.2727 26.2587 44.7133 26.2587 44.986 25.986L47.986 22.986C48.2587 22.7133 48.2587 22.2727 47.986 22L46.6853 20.6993C47 20.1119 47.2727 19.4825 47.4615 18.8322H49.2867C49.6853 18.8322 50 18.5175 50 18.1189V13.8811C50 13.4825 49.6853 13.1678 49.2867 13.1678ZM48.5944 17.4056H46.9371C46.6224 17.4056 46.3287 17.6364 46.2448 17.951C46.035 18.8322 45.6783 19.6713 45.2168 20.4266C45.049 20.6993 45.0909 21.0769 45.3217 21.2867L46.4965 22.4615L44.5035 24.4545L43.3287 23.2797C43.0979 23.049 42.7413 23.007 42.4685 23.1748C41.6923 23.6573 40.8741 23.993 39.993 24.2028C39.6783 24.2867 39.4476 24.5594 39.4476 24.8951V26.5524H36.6154V24.8951C36.6154 24.5804 36.3846 24.2867 36.0699 24.2028C35.1888 23.993 34.3497 23.6364 33.5944 23.1748C33.3217 23.007 32.9441 23.049 32.7343 23.2797L31.5594 24.4545L29.5664 22.4615L30.7413 21.2867C30.972 21.0559 31.014 20.6993 30.8462 20.4266C30.3636 19.6503 30.028 18.8322 29.8182 17.951C29.7343 17.6364 29.4615 17.4056 29.1259 17.4056H27.4685V14.5734H29.1259C29.4406 14.5734 29.7343 14.3427 29.8182 14.028C30.028 13.1469 30.3846 12.3077 30.8462 11.5524C31.014 11.2797 30.972 10.9021 30.7413 10.6923L29.5664 9.51748L31.5594 7.52448L32.7343 8.6993C32.965 8.93007 33.3217 8.97203 33.5944 8.8042C34.3706 8.32168 35.1888 7.98601 36.0699 7.77622C36.3846 7.69231 36.6154 7.41958 36.6154 7.08392V5.42657H39.4476V7.08392C39.4476 7.3986 39.6783 7.69231 39.993 7.77622C40.8741 7.98601 41.7133 8.34266 42.4685 8.8042C42.7413 8.97203 43.1189 8.93007 43.3287 8.6993L44.5035 7.52448L46.4965 9.51748L45.3217 10.6923C45.0909 10.9231 45.049 11.2797 45.2168 11.5524C45.6993 12.3287 46.035 13.1469 46.2448 14.028C46.3287 14.3427 46.6014 14.5734 46.9371 14.5734H48.5944V17.4056Z" fill="#1A543D"/>
|
||||
<path d="M38.5 10C34.9175 10 32 12.9175 32 16.5C32 20.0825 34.9175 23 38.5 23C42.0825 23 45 20.0825 45 16.5V15.7706C45 15.2772 44.8713 14.8053 44.6353 14.3762C43.7343 11.7591 41.2673 10 38.5 10ZM38.5 21.5413C35.7112 21.5413 33.4587 19.2888 33.4587 16.5C33.4587 13.7112 35.7112 11.4587 38.5 11.4587C41.2888 11.4587 43.5413 13.7112 43.5413 16.5C43.5413 19.2888 41.2673 21.5413 38.5 21.5413Z" fill="#1A543D"/>
|
||||
<path d="M38 13C36.3556 13 35 14.3333 35 16C35 17.6667 36.3333 19 38 19C39.6667 19 41 17.6667 41 16C41 14.3333 39.6667 13 38 13ZM38 17.4889C37.1778 17.4889 36.5111 16.8222 36.5111 16C36.5111 15.1778 37.1778 14.5111 38 14.5111C38.8222 14.5111 39.4889 15.1778 39.4889 16C39.4889 16.8222 38.8222 17.4889 38 17.4889Z" fill="#1A543D"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1756_3405">
|
||||
<rect width="50" height="50" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
21
kngil/img/buy/ico_tel.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="0.5" y="0.5" width="31" height="31" rx="15.5" fill="url(#paint0_linear_1756_3441)"/>
|
||||
<rect x="0.5" y="0.5" width="31" height="31" rx="15.5" stroke="url(#paint1_linear_1756_3441)"/>
|
||||
<rect x="0.5" y="0.5" width="31" height="31" rx="15.5" stroke="white" stroke-opacity="0.3"/>
|
||||
<path d="M23.0667 25C23.3333 25 23.5556 24.9 23.7333 24.7C23.9111 24.5 24 24.25 24 23.95V19.9C24 19.6833 23.9333 19.4877 23.8 19.313C23.6667 19.1383 23.4963 19.0173 23.2889 18.95L20.2222 18.25C20.0148 18.2167 19.8036 18.2377 19.5884 18.313C19.3733 18.3883 19.1994 18.5007 19.0667 18.65L16.9778 21C16.4148 20.6333 15.8815 20.229 15.3778 19.787C14.8741 19.345 14.3926 18.866 13.9333 18.35C13.4444 17.8167 12.9961 17.2627 12.5884 16.688C12.1807 16.1133 11.829 15.5173 11.5333 14.9L13.6889 12.45C13.8074 12.3167 13.8889 12.1583 13.9333 11.975C13.9778 11.7917 13.9852 11.5667 13.9556 11.3L13.3778 7.8C13.3481 7.58333 13.2519 7.396 13.0889 7.238C12.9259 7.08 12.7407 7.00067 12.5333 7H8.93333C8.66667 7 8.44444 7.1 8.26667 7.3C8.08889 7.5 8 7.75 8 8.05C8 10.1333 8.40355 12.1917 9.21067 14.225C10.0178 16.2583 11.1624 18.1083 12.6444 19.775C14.1265 21.4417 15.771 22.7293 17.5778 23.638C19.3846 24.5467 21.2142 25.0007 23.0667 25Z" fill="#00832A"/>
|
||||
<path d="M23.0667 25C23.3333 25 23.5556 24.9 23.7333 24.7C23.9111 24.5 24 24.25 24 23.95V19.9C24 19.6833 23.9333 19.4877 23.8 19.313C23.6667 19.1383 23.4963 19.0173 23.2889 18.95L20.2222 18.25C20.0148 18.2167 19.8036 18.2377 19.5884 18.313C19.3733 18.3883 19.1994 18.5007 19.0667 18.65L16.9778 21C16.4148 20.6333 15.8815 20.229 15.3778 19.787C14.8741 19.345 14.3926 18.866 13.9333 18.35C13.4444 17.8167 12.9961 17.2627 12.5884 16.688C12.1807 16.1133 11.829 15.5173 11.5333 14.9L13.6889 12.45C13.8074 12.3167 13.8889 12.1583 13.9333 11.975C13.9778 11.7917 13.9852 11.5667 13.9556 11.3L13.3778 7.8C13.3481 7.58333 13.2519 7.396 13.0889 7.238C12.9259 7.08 12.7407 7.00067 12.5333 7H8.93333C8.66667 7 8.44444 7.1 8.26667 7.3C8.08889 7.5 8 7.75 8 8.05C8 10.1333 8.40355 12.1917 9.21067 14.225C10.0178 16.2583 11.1624 18.1083 12.6444 19.775C14.1265 21.4417 15.771 22.7293 17.5778 23.638C19.3846 24.5467 21.2142 25.0007 23.0667 25Z" fill="url(#paint2_linear_1756_3441)" fill-opacity="0.4" style="mix-blend-mode:overlay"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1756_3441" x1="16" y1="0" x2="16" y2="32" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0.85"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1756_3441" x1="16" y1="0" x2="16" y2="32" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#48C06E"/>
|
||||
<stop offset="1" stop-color="#21A14A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1756_3441" x1="16" y1="7" x2="16" y2="25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
4
kngil/img/ico/ico_check_list.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="39" height="39" viewBox="0 0 39 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.625 8.125H11.375C10.513 8.125 9.6864 8.46741 9.0769 9.0769C8.46741 9.6864 8.125 10.513 8.125 11.375V30.875C8.125 31.737 8.46741 32.5636 9.0769 33.1731C9.6864 33.7826 10.513 34.125 11.375 34.125H27.625C28.487 34.125 29.3136 33.7826 29.9231 33.1731C30.5326 32.5636 30.875 31.737 30.875 30.875V11.375C30.875 10.513 30.5326 9.6864 29.9231 9.0769C29.3136 8.46741 28.487 8.125 27.625 8.125H24.375" stroke="black" stroke-width="3.25" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M14.625 22.75H14.6413M14.625 27.625H14.6413M19.5 26L21.125 27.625L26 22.75M14.625 8.125C14.625 7.26305 14.9674 6.4364 15.5769 5.8269C16.1864 5.21741 17.013 4.875 17.875 4.875H21.125C21.987 4.875 22.8136 5.21741 23.4231 5.8269C24.0326 6.4364 24.375 7.26305 24.375 8.125C24.375 8.98695 24.0326 9.8136 23.4231 10.4231C22.8136 11.0326 21.987 11.375 21.125 11.375H17.875C17.013 11.375 16.1864 11.0326 15.5769 10.4231C14.9674 9.8136 14.625 8.98695 14.625 8.125Z" stroke="#1A543D" stroke-width="3.25" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -1,29 +1,29 @@
|
||||
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M23.541 30.7921C23.541 28.9943 23.541 28.0974 23.9386 27.318C24.3381 26.5405 25.0803 25.9883 26.5647 24.8857L27.5438 24.1572C29.8547 22.4398 31.0101 21.582 32.3535 21.582C33.6969 21.582 34.8523 22.4398 37.1632 24.1572L38.1423 24.8857C39.6268 25.9883 40.369 26.5405 40.7665 27.318C41.1641 28.0954 41.166 28.9943 41.166 30.7921V33.6806C41.166 37.2095 41.166 38.974 40.0184 40.0687C38.8708 41.1634 37.0261 41.1654 33.3327 41.1654H23.541V30.7921Z" stroke="url(#paint0_linear_1103_15379)" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M33.3333 16.8833V7.875C33.3333 3.01442 32.3189 2 27.4583 2H19.625C14.7644 2 13.75 3.01442 13.75 7.875V41.1667" stroke="url(#paint1_linear_1103_15379)" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.9375 29.4154C6.55984 29.4154 7.875 27.6618 7.875 25.4987C7.875 23.3356 6.55984 21.582 4.9375 21.582C3.31516 21.582 2 23.3356 2 25.4987C2 27.6618 3.31516 29.4154 4.9375 29.4154Z" stroke="url(#paint2_linear_1103_15379)" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.9375 33.332V41.1654M2 41.1654H37.25M21.5833 9.83203H25.5M21.5833 15.707H25.5" stroke="url(#paint3_linear_1103_15379)" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M32.3516 37.2487V33.332" stroke="url(#paint4_linear_1103_15379)" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<svg width="47" height="47" viewBox="0 0 47 47" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M25.248 31.7309C25.248 30.1242 25.248 29.3227 25.6033 28.6261C25.9604 27.9313 26.6236 27.4378 27.9502 26.4525L28.8253 25.8014C30.8905 24.2666 31.923 23.5 33.1236 23.5C34.3242 23.5 35.3568 24.2666 37.422 25.8014L38.297 26.4525C39.6236 27.4378 40.2869 27.9313 40.6422 28.6261C40.9975 29.3209 40.9992 30.1242 40.9992 31.7309V34.3123C40.9992 37.466 40.9992 39.0429 39.9736 40.0212C38.9481 40.9996 37.2994 41.0013 33.9987 41.0013H25.248V31.7309Z" stroke="url(#paint0_linear_1961_20409)" stroke-width="3.57473" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M33.9994 19.301V11.2504C33.9994 6.90657 33.0928 6 28.749 6H21.7484C17.4046 6 16.498 6.90657 16.498 11.2504V41.0026" stroke="url(#paint1_linear_1961_20409)" stroke-width="3.57473" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M8.62324 30.5005C10.0731 30.5005 11.2484 28.9334 11.2484 27.0003C11.2484 25.0671 10.0731 23.5 8.62324 23.5C7.17339 23.5 5.99805 25.0671 5.99805 27.0003C5.99805 28.9334 7.17339 30.5005 8.62324 30.5005Z" stroke="url(#paint2_linear_1961_20409)" stroke-width="3.57473" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M8.62324 34.0016V41.0021M5.99805 41.0021H37.5004M23.4994 13H26.9996M23.4994 18.2504H26.9996" stroke="url(#paint3_linear_1961_20409)" stroke-width="3.57473" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M33.123 37.5003V34" stroke="url(#paint4_linear_1961_20409)" stroke-width="3.57473" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1103_15379" x1="32.3535" y1="21.582" x2="32.3535" y2="41.1654" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#028819"/>
|
||||
<stop offset="1" stop-color="#007F54"/>
|
||||
<linearGradient id="paint0_linear_1961_20409" x1="33.1236" y1="23.5" x2="33.1236" y2="41.0013" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#975C2B"/>
|
||||
<stop offset="1" stop-color="#89532A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1103_15379" x1="23.5417" y1="2" x2="23.5417" y2="41.1667" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#028819"/>
|
||||
<stop offset="1" stop-color="#007F54"/>
|
||||
<linearGradient id="paint1_linear_1961_20409" x1="25.2487" y1="6" x2="25.2487" y2="41.0026" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#975C2B"/>
|
||||
<stop offset="1" stop-color="#8D552A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1103_15379" x1="4.9375" y1="21.582" x2="4.9375" y2="29.4154" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#028819"/>
|
||||
<stop offset="1" stop-color="#007F54"/>
|
||||
<linearGradient id="paint2_linear_1961_20409" x1="8.62324" y1="23.5" x2="8.62324" y2="30.5005" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#975C2B"/>
|
||||
<stop offset="1" stop-color="#89532A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1103_15379" x1="19.625" y1="9.83203" x2="19.625" y2="41.1654" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#028819"/>
|
||||
<stop offset="1" stop-color="#007F54"/>
|
||||
<linearGradient id="paint3_linear_1961_20409" x1="21.7492" y1="13" x2="21.7492" y2="41.0021" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#975C2B"/>
|
||||
<stop offset="1" stop-color="#8D552A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1103_15379" x1="32.8516" y1="33.332" x2="32.8516" y2="37.2487" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#028819"/>
|
||||
<stop offset="1" stop-color="#007F54"/>
|
||||
<linearGradient id="paint4_linear_1961_20409" x1="33.623" y1="34" x2="33.623" y2="37.5003" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#975C2B"/>
|
||||
<stop offset="1" stop-color="#89532A"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -1 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"> <rect x="3" y="4" width="12" height="16" stroke="currentColor" stroke-width="1.5"/> <line x1="7" y1="8" x2="7.01" y2="8" stroke="currentColor" stroke-width="2"/> <line x1="11" y1="8" x2="11.01" y2="8" stroke="currentColor" stroke-width="2"/> <line x1="7" y1="12" x2="7.01" y2="12" stroke="currentColor" stroke-width="2"/> <line x1="11" y1="12" x2="11.01" y2="12" stroke="currentColor" stroke-width="2"/> <circle cx="19" cy="9" r="2" stroke="currentColor" stroke-width="1.5"/> <path d="M16.5 17c0-2 1.5-3 2.5-3s2.5 1 2.5 3" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/> </svg>
|
||||
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.4049 7.63672C22.5663 7.63653 22.7237 7.68763 22.8543 7.78266C22.9848 7.87768 23.0818 8.01172 23.1313 8.16543L23.9696 10.7709C24.3195 10.9414 24.6569 11.1364 24.9794 11.3544L27.6563 10.778C27.8141 10.7446 27.9784 10.7621 28.1257 10.828C28.2729 10.8939 28.3954 11.0048 28.4756 11.1448L30.588 14.8006C30.6688 14.9403 30.7031 15.1021 30.686 15.2626C30.6688 15.4231 30.6012 15.5741 30.4928 15.6937L28.6566 17.7204C28.6833 18.1089 28.6833 18.4989 28.6566 18.8874L30.4904 20.9189C30.5992 21.0382 30.6673 21.189 30.6848 21.3495C30.7024 21.51 30.6685 21.672 30.588 21.812L28.4756 25.4701C28.395 25.6097 28.2724 25.7201 28.1252 25.7856C27.978 25.851 27.8138 25.8682 27.6563 25.8345L24.9794 25.2582C24.6587 25.4741 24.3221 25.6686 23.9696 25.8417L23.1313 28.4471C23.0818 28.6008 22.9848 28.7349 22.8543 28.8299C22.7237 28.9249 22.5663 28.976 22.4049 28.9758H18.1799C18.0184 28.976 17.8611 28.9249 17.7305 28.8299C17.6 28.7349 17.503 28.6008 17.4535 28.4471L16.6176 25.844C16.2661 25.6719 15.9271 25.4753 15.603 25.2558L12.9285 25.8345C12.7707 25.8679 12.6064 25.8504 12.4591 25.7845C12.3119 25.7186 12.1894 25.6077 12.1092 25.4677L9.99674 21.812C9.91599 21.6722 9.88171 21.5104 9.89883 21.3499C9.91595 21.1894 9.98359 21.0385 10.092 20.9189L11.9282 18.8874C11.9017 18.5004 11.9017 18.1121 11.9282 17.7252L10.0944 15.6937C9.9856 15.5743 9.91752 15.4236 9.89997 15.263C9.88242 15.1025 9.91631 14.9406 9.99674 14.8006L12.1092 11.1424C12.1897 11.0029 12.3124 10.8925 12.4596 10.827C12.6068 10.7615 12.7709 10.7444 12.9285 10.778L15.603 11.3568C15.9272 11.1374 16.2662 10.9409 16.6176 10.7685L17.4559 8.16543C17.5051 8.01249 17.6014 7.87901 17.731 7.78406C17.8606 7.6891 18.0169 7.63754 18.1775 7.63672H22.4049ZM21.8476 9.16094H18.7372L17.8727 11.8521L17.2892 12.1379C17.0015 12.2791 16.7237 12.4398 16.458 12.619L15.9198 12.9834L13.1524 12.388L11.5972 15.0792L13.4953 17.1822L13.4477 17.8276C13.4258 18.1463 13.4258 18.4662 13.4477 18.785L13.4953 19.4304L11.5948 21.531L13.1476 24.2269L15.915 23.6315L16.4556 23.9935C16.7207 24.1718 16.9976 24.3318 17.2844 24.4722L17.8679 24.758L18.7372 27.4516H21.85L22.7216 24.7556L23.3027 24.4722C23.5897 24.3329 23.8667 24.1738 24.1315 23.9959L24.6698 23.6315L27.4396 24.2269L28.9924 21.531L27.0942 19.4304L27.1419 18.785C27.1639 18.4654 27.1639 18.1447 27.1419 17.8252L27.0942 17.1798L28.9948 15.0816L27.4372 12.3856L24.6674 12.981L24.1291 12.619C23.8644 12.4404 23.5874 12.2804 23.3004 12.1403L22.7216 11.8521L21.8476 9.16094ZM20.2924 13.7336C21.5051 13.7336 22.6682 14.2154 23.5258 15.0729C24.3833 15.9305 24.8651 17.0935 24.8651 18.3063C24.8651 19.519 24.3833 20.6821 23.5258 21.5396C22.6682 22.3972 21.5051 22.8789 20.2924 22.8789C19.0796 22.8789 17.9166 22.3972 17.059 21.5396C16.2015 20.6821 15.7197 19.519 15.7197 18.3063C15.7197 17.0935 16.2015 15.9305 17.059 15.0729C17.9166 14.2154 19.0796 13.7336 20.2924 13.7336ZM20.2924 15.2578C19.4839 15.2578 18.7085 15.579 18.1368 16.1507C17.5651 16.7224 17.2439 17.4978 17.2439 18.3063C17.2439 19.1148 17.5651 19.8902 18.1368 20.4619C18.7085 21.0336 19.4839 21.3547 20.2924 21.3547C21.1009 21.3547 21.8763 21.0336 22.448 20.4619C23.0197 19.8902 23.3408 19.1148 23.3408 18.3063C23.3408 17.4978 23.0197 16.7224 22.448 16.1507C21.8763 15.579 21.1009 15.2578 20.2924 15.2578Z" fill="white"/>
|
||||
<path opacity="0.8" d="M10.3837 3.5C10.4918 3.49994 10.5971 3.5337 10.6845 3.5957C10.7719 3.65775 10.8369 3.74537 10.8701 3.8457L11.4316 5.54688C11.6659 5.6582 11.8923 5.78547 12.1083 5.92773L13.9023 5.55176C14.0079 5.52995 14.1182 5.54107 14.2167 5.58398C14.3153 5.627 14.3974 5.6997 14.4511 5.79102L15.8671 8.17871C15.9212 8.26995 15.944 8.37572 15.9326 8.48047C15.921 8.58512 15.8762 8.68371 15.8037 8.76172L14.7578 9.88477L13.6132 9.6377L14.7998 8.3623L13.7558 6.60156L11.8994 6.99023L11.539 6.75391C11.3616 6.63722 11.1757 6.53288 10.9833 6.44141L10.5956 6.25293L10.0097 4.49512H7.92573L7.34663 6.25293L6.95502 6.43945C6.76227 6.53161 6.5764 6.63692 6.39838 6.75391L6.03803 6.99219L4.18354 6.60254L3.14057 8.36035L4.41303 9.7334L4.38081 10.1553C4.36613 10.3634 4.36614 10.5722 4.38081 10.7803L4.41303 11.2021L3.1396 12.5742L4.17963 14.334L6.03413 13.9453L6.39643 14.1816C6.57397 14.298 6.75993 14.4024 6.9521 14.4941L7.34272 14.6816L7.92573 16.4404H9.08491C9.11084 16.4729 9.13698 16.5052 9.16499 16.5361L9.16401 16.5371L9.97553 17.4355H7.55268C7.44451 17.4357 7.33839 17.4028 7.25092 17.3408C7.16352 17.2788 7.09855 17.1911 7.06538 17.0908L6.50483 15.3906C6.26938 15.2782 6.0422 15.1492 5.82514 15.0059L4.03315 15.3838C3.92744 15.4056 3.81733 15.3946 3.7187 15.3516C3.62004 15.3085 3.53805 15.2359 3.48432 15.1445L2.06831 12.7568C2.01437 12.6657 1.99142 12.5597 2.00288 12.4551C2.01444 12.3504 2.06022 12.2518 2.13276 12.1738L3.36323 10.8477C3.34546 10.595 3.34546 10.3406 3.36323 10.0879L2.13374 8.76172C2.06087 8.68381 2.01562 8.58526 2.00385 8.48047C1.9921 8.37574 2.01452 8.27009 2.06831 8.17871L3.48432 5.78906C3.53828 5.69813 3.6202 5.6257 3.7187 5.58301C3.81733 5.54026 3.92758 5.52979 4.03315 5.55176L5.82514 5.92969C6.04231 5.78649 6.26942 5.65746 6.50483 5.54492L7.06733 3.8457C7.10024 3.74602 7.16433 3.65867 7.25092 3.59668C7.33777 3.53467 7.44307 3.50053 7.55073 3.5H10.3837ZM8.96772 7.48145C9.78041 7.48145 10.5601 7.79642 11.1347 8.35645C11.5171 8.72916 11.7844 9.19122 11.9228 9.69141C11.5458 9.86641 11.2314 10.1532 11.0234 10.5137L11.0068 10.542C11.0077 10.5173 11.0107 10.4926 11.0107 10.4678C11.0107 9.93984 10.7951 9.43387 10.4121 9.06055C10.0289 8.6872 9.50952 8.47754 8.96772 8.47754C8.42596 8.47757 7.90647 8.68722 7.52338 9.06055C7.1404 9.43386 6.92478 9.93989 6.92475 10.4678C6.92475 10.9958 7.14028 11.5026 7.52338 11.876C7.90645 12.2492 8.42607 12.459 8.96772 12.459C9.36929 12.459 9.75817 12.3425 10.0888 12.1309L9.33881 13.4287C9.21621 13.4433 9.09251 13.4541 8.96772 13.4541C8.15506 13.4541 7.37536 13.1391 6.80073 12.5791C6.22629 12.0191 5.90327 11.2596 5.90327 10.4678C5.9033 9.67593 6.22625 8.91643 6.80073 8.35645C7.37536 7.79644 8.15506 7.48147 8.96772 7.48145Z" fill="white"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 691 B After Width: | Height: | Size: 6.0 KiB |
6
kngil/img/ico/ico_graph_box.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M26.667 21.3346V5.33464H10.667V21.3346M29.3337 21.3346C29.3337 22.8013 28.1337 24.0013 26.667 24.0013H10.667C9.20033 24.0013 8.00033 22.8013 8.00033 21.3346V5.33464C8.00033 3.86797 9.20033 2.66797 10.667 2.66797H26.667C28.1337 2.66797 29.3337 3.86797 29.3337 5.33464M21.3337 26.668V29.3346H5.33366C3.86699 29.3346 2.66699 28.1346 2.66699 26.668V9.33464H5.33366V26.668" fill="black"/>
|
||||
<rect x="13" y="12.8516" width="3" height="6" fill="#249473"/>
|
||||
<rect x="17" y="8.85156" width="3" height="10" fill="#249473"/>
|
||||
<rect x="21" y="10.8516" width="3" height="8" fill="#249473"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 686 B |
11
kngil/img/ico/ico_mind_map.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1333_2223)">
|
||||
<circle cx="15.5" cy="16.5" r="4.5" fill="#249473"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.6666 2.66813C19.7275 2.65858 20.7487 3.07085 21.5056 3.81425C22.2625 4.55764 22.6931 5.57126 22.7026 6.63213C22.7122 7.693 22.2999 8.71421 21.5565 9.4711C20.8131 10.228 19.7995 10.6586 18.7386 10.6681L18.448 11.5388C19.1355 11.9557 19.7323 12.5066 20.2027 13.1587C20.6732 13.8108 21.0078 14.5508 21.1866 15.3348H22.9453C23.2516 14.6329 23.7903 14.0579 24.4707 13.7065C25.1511 13.3551 25.9317 13.2487 26.6814 13.4051C27.431 13.5616 28.1039 13.9714 28.587 14.5656C29.07 15.1599 29.3337 15.9023 29.3337 16.6681C29.3337 17.4339 29.07 18.1764 28.587 18.7706C28.1039 19.3649 27.431 19.7747 26.6814 19.9312C25.9317 20.0876 25.1511 19.9812 24.4707 19.6298C23.7903 19.2783 23.2516 18.7033 22.9453 18.0015H21.1853C20.9633 18.974 20.5023 19.8759 19.844 20.6255L20.7826 21.5641C21.4955 21.2844 22.283 21.2586 23.0126 21.4912C23.7423 21.7238 24.3696 22.2006 24.7891 22.8413C25.2086 23.482 25.3946 24.2476 25.316 25.0094C25.2373 25.7712 24.8988 26.4826 24.3573 27.0241C23.8158 27.5656 23.1043 27.9042 22.3425 27.9828C21.5808 28.0615 20.8152 27.8754 20.1744 27.4559C19.5337 27.0364 19.057 26.4091 18.8244 25.6795C18.5918 24.9498 18.6175 24.1624 18.8973 23.4495L17.652 22.2041C16.9175 22.5111 16.1293 22.6688 15.3333 22.6681C14.4171 22.6681 13.5131 22.4583 12.6906 22.0548L11.5293 23.4495C11.9737 24.2817 12.1097 25.2443 11.9131 26.167C11.7165 27.0898 11.2001 27.9134 10.4551 28.4923C9.71008 29.0712 8.78442 29.3681 7.84169 29.3305C6.89896 29.293 5.99985 28.9234 5.30323 28.2871C4.60661 27.6508 4.15732 26.7888 4.03477 25.8533C3.91221 24.9178 4.12427 23.9691 4.63347 23.1748C5.14268 22.3806 5.91625 21.7919 6.81749 21.5127C7.71874 21.2336 8.68964 21.282 9.55863 21.6495L10.6173 20.3775C9.78366 19.321 9.33122 18.0139 9.3333 16.6681C9.3333 15.6881 9.56796 14.7641 9.98396 13.9468L8.82663 12.9815C8.1419 13.3246 7.3599 13.4214 6.61215 13.2557C5.86441 13.09 5.19653 12.6719 4.72086 12.0716C4.24518 11.4714 3.99071 10.7256 4.00026 9.95978C4.00981 9.19395 4.28278 8.45478 4.77328 7.86657C5.26378 7.27835 5.94187 6.87699 6.69351 6.72998C7.44515 6.58297 8.22449 6.69929 8.90046 7.05936C9.57642 7.41943 10.1078 8.00129 10.4051 8.70709C10.7025 9.41289 10.7478 10.1996 10.5333 10.9348L11.6933 11.9001C12.8978 10.9771 14.4085 10.5471 15.9186 10.6975L16.2093 9.82546C15.5513 9.31363 15.0696 8.60899 14.8316 7.81003C14.5936 7.01106 14.6112 6.15771 14.8819 5.36923C15.1526 4.58075 15.6629 3.89656 16.3415 3.41228C17.0201 2.92799 17.833 2.66782 18.6666 2.66813ZM7.99996 24.0015C7.64634 24.0015 7.3072 24.1419 7.05715 24.392C6.8071 24.642 6.66663 24.9812 6.66663 25.3348C6.66663 25.6884 6.8071 26.0276 7.05715 26.2776C7.3072 26.5277 7.64634 26.6681 7.99996 26.6681C8.35358 26.6681 8.69272 26.5277 8.94277 26.2776C9.19282 26.0276 9.3333 25.6884 9.3333 25.3348C9.3333 24.9812 9.19282 24.642 8.94277 24.392C8.69272 24.1419 8.35358 24.0015 7.99996 24.0015ZM22 24.0015C21.8232 24.0015 21.6536 24.0717 21.5286 24.1967C21.4035 24.3218 21.3333 24.4913 21.3333 24.6681C21.3333 24.8449 21.4035 25.0145 21.5286 25.1395C21.6536 25.2646 21.8232 25.3348 22 25.3348C22.1768 25.3348 22.3463 25.2646 22.4714 25.1395C22.5964 25.0145 22.6666 24.8449 22.6666 24.6681C22.6666 24.4913 22.5964 24.3218 22.4714 24.1967C22.3463 24.0717 22.1768 24.0015 22 24.0015ZM15.3333 13.3348C14.4492 13.3348 13.6014 13.686 12.9763 14.3111C12.3512 14.9362 12 15.7841 12 16.6681C12 17.5522 12.3512 18.4 12.9763 19.0252C13.6014 19.6503 14.4492 20.0015 15.3333 20.0015C16.2174 20.0015 17.0652 19.6503 17.6903 19.0252C18.3154 18.4 18.6666 17.5522 18.6666 16.6681C18.6666 15.7841 18.3154 14.9362 17.6903 14.3111C17.0652 13.686 16.2174 13.3348 15.3333 13.3348ZM26 16.0015C25.8232 16.0015 25.6536 16.0717 25.5286 16.1967C25.4035 16.3218 25.3333 16.4913 25.3333 16.6681C25.3333 16.8449 25.4035 17.0145 25.5286 17.1395C25.6536 17.2646 25.8232 17.3348 26 17.3348C26.1768 17.3348 26.3463 17.2646 26.4714 17.1395C26.5964 17.0145 26.6666 16.8449 26.6666 16.6681C26.6666 16.4913 26.5964 16.3218 26.4714 16.1967C26.3463 16.0717 26.1768 16.0015 26 16.0015ZM7.3333 9.3348C7.15648 9.3348 6.98692 9.40504 6.86189 9.53006C6.73687 9.65508 6.66663 9.82465 6.66663 10.0015C6.66663 10.1783 6.73687 10.3478 6.86189 10.4729C6.98692 10.5979 7.15648 10.6681 7.3333 10.6681C7.51011 10.6681 7.67968 10.5979 7.8047 10.4729C7.92972 10.3478 7.99996 10.1783 7.99996 10.0015C7.99996 9.82465 7.92972 9.65508 7.8047 9.53006C7.67968 9.40504 7.51011 9.3348 7.3333 9.3348ZM18.6666 5.3348C18.313 5.3348 17.9739 5.47527 17.7238 5.72532C17.4738 5.97537 17.3333 6.31451 17.3333 6.66813C17.3333 7.02175 17.4738 7.36089 17.7238 7.61094C17.9739 7.86099 18.313 8.00146 18.6666 8.00146C19.0203 8.00146 19.3594 7.86099 19.6094 7.61094C19.8595 7.36089 20 7.02175 20 6.66813C20 6.31451 19.8595 5.97537 19.6094 5.72532C19.3594 5.47527 19.0203 5.3348 18.6666 5.3348Z" fill="black"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1333_2223">
|
||||
<rect width="32" height="32" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
12
kngil/img/ico/ico_setting.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg width="37" height="37" viewBox="0 0 37 37" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_635_10711)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.334 21.6693C19.0795 21.6693 19.8106 21.7082 20.5273 21.7859C20.9669 21.8326 21.37 22.0519 21.6478 22.3957C21.9257 22.7396 22.0556 23.1797 22.009 23.6193C21.9624 24.0589 21.743 24.4619 21.3992 24.7398C21.0554 25.0177 20.6152 25.1476 20.1756 25.1009C19.5745 25.0354 18.9607 25.0026 18.334 25.0026C14.9623 25.0026 11.929 25.9859 9.77398 27.3009C8.69565 27.9576 7.88232 28.6709 7.35732 29.3376C6.81732 30.0209 6.66732 30.5376 6.66732 30.8359C6.66732 31.0393 6.72898 31.2543 7.09232 31.5459C7.50732 31.8793 8.22898 32.2243 9.33232 32.5159C11.529 33.0993 14.6857 33.3359 18.334 33.3359L19.4307 33.3276C19.8727 33.3216 20.299 33.4915 20.6158 33.7998C20.9325 34.1082 21.1138 34.5297 21.1198 34.9718C21.1258 35.4138 20.9559 35.8401 20.6476 36.1569C20.3392 36.4737 19.9177 36.655 19.4757 36.6609L18.334 36.6693C14.619 36.6693 11.109 36.4359 8.47898 35.7393C7.17065 35.3926 5.93898 34.8959 5.00565 34.1459C4.01732 33.3526 3.33398 32.2443 3.33398 30.8359C3.33398 29.5243 3.93065 28.2976 4.74065 27.2709C5.56398 26.2293 6.70232 25.2709 8.03732 24.4543C10.709 22.8276 14.3423 21.6693 18.334 21.6693ZM18.334 3.33594C20.5441 3.33594 22.6637 4.21391 24.2265 5.77671C25.7893 7.33952 26.6673 9.45913 26.6673 11.6693C26.6673 13.8794 25.7893 15.999 24.2265 17.5618C22.6637 19.1246 20.5441 20.0026 18.334 20.0026C16.1238 20.0026 14.0042 19.1246 12.4414 17.5618C10.8786 15.999 10.0007 13.8794 10.0007 11.6693C10.0007 9.45913 10.8786 7.33952 12.4414 5.77671C14.0042 4.21391 16.1238 3.33594 18.334 3.33594ZM18.334 6.66927C17.6774 6.66927 17.0272 6.7986 16.4206 7.04987C15.8139 7.30115 15.2627 7.66944 14.7984 8.13374C14.3342 8.59803 13.9659 9.14923 13.7146 9.75585C13.4633 10.3625 13.334 11.0127 13.334 11.6693C13.334 12.3259 13.4633 12.9761 13.7146 13.5827C13.9659 14.1893 14.3342 14.7405 14.7984 15.2048C15.2627 15.6691 15.8139 16.0374 16.4206 16.2887C17.0272 16.5399 17.6774 16.6693 18.334 16.6693C19.6601 16.6693 20.9318 16.1425 21.8695 15.2048C22.8072 14.2671 23.334 12.9954 23.334 11.6693C23.334 10.3432 22.8072 9.07142 21.8695 8.13374C20.9318 7.19606 19.6601 6.66927 18.334 6.66927Z" fill="black"/>
|
||||
<path d="M26.1631 23.5557C26.5189 23.3216 26.9508 23.2323 27.3701 23.3066C27.7897 23.3811 28.1654 23.6136 28.4189 23.9561L28.5254 24.1191L29.084 25.0859C29.5722 24.996 30.0676 24.9811 30.5508 25.0361L30.9121 25.0879L31.4717 24.1191C31.6848 23.7519 32.0306 23.4797 32.4375 23.3584C32.8443 23.2372 33.2818 23.2764 33.6611 23.4668C34.0405 23.6573 34.3338 23.985 34.4795 24.3838C34.6251 24.7826 34.6127 25.223 34.4453 25.6133L34.3584 25.7861L33.8008 26.7529C34.1336 27.1433 34.4043 27.5829 34.6035 28.0557L34.7139 28.3379H35.832C36.2568 28.3384 36.6657 28.5014 36.9746 28.793C37.2832 29.0845 37.4693 29.4834 37.4941 29.9072C37.5189 30.3311 37.3809 30.7486 37.1084 31.0742C36.8358 31.3998 36.449 31.6089 36.0273 31.6592L35.832 31.6709H34.7139C34.5507 32.1332 34.3202 32.5696 34.0303 32.9648L33.8008 33.2549L34.3584 34.2227C34.5727 34.5909 34.6385 35.0276 34.541 35.4424C34.4435 35.857 34.1907 36.2188 33.835 36.4531C33.4791 36.6874 33.0465 36.7766 32.627 36.7021C32.2075 36.6277 31.8327 36.3951 31.5791 36.0527L31.4717 35.8896L30.9141 34.9229C30.4258 35.0128 29.9305 35.0276 29.4473 34.9727L29.085 34.9199L28.5254 35.8896C28.3123 36.2569 27.9664 36.5291 27.5596 36.6504C27.1528 36.7716 26.7152 36.7325 26.3359 36.542C25.9566 36.3515 25.6643 36.0237 25.5186 35.625C25.373 35.2263 25.3846 34.7866 25.5518 34.3965L25.6387 34.2227L26.1973 33.2549C25.8645 32.8653 25.5931 32.426 25.3936 31.9541L25.2832 31.6709H24.165C23.7406 31.6704 23.3322 31.5081 23.0234 31.2168C22.7147 30.9253 22.5279 30.5264 22.5029 30.1025C22.478 29.6785 22.6161 29.2603 22.8887 28.9346C23.1613 28.6088 23.5489 28.3998 23.9707 28.3496L24.165 28.3379H25.2852C25.4483 27.8757 25.6789 27.4401 25.9688 27.0449L26.1973 26.7549L25.6387 25.7861C25.4244 25.4179 25.3596 24.9812 25.457 24.5664C25.5546 24.1517 25.8073 23.7899 26.1631 23.5557Z" fill="#1A543D"/>
|
||||
<path d="M28.8221 28.8241C29.1347 28.5115 29.5586 28.3359 30.0007 28.3359C30.4427 28.3359 30.8666 28.5115 31.1792 28.8241C31.4917 29.1367 31.6673 29.5606 31.6673 30.0026C31.6673 30.4446 31.4917 30.8686 31.1792 31.1811C30.8666 31.4937 30.4427 31.6693 30.0007 31.6693C29.5586 31.6693 29.1347 31.4937 28.8221 31.1811C28.5096 30.8686 28.334 30.4446 28.334 30.0026C28.334 29.5606 28.5096 29.1367 28.8221 28.8241Z" fill="#F5F5F5"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_635_10711">
|
||||
<rect width="40" height="40" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
13
kngil/img/ico/ico_statistic.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.8 4C0.587827 4 0.384344 4.08429 0.234315 4.23431C0.0842855 4.38434 0 4.58783 0 4.8L0 27.2C0 27.4122 0.0842855 27.6157 0.234315 27.7657C0.384344 27.9157 0.587827 28 0.8 28H31.2C31.4122 28 31.6157 27.9157 31.7657 27.7657C31.9157 27.6157 32 27.4122 32 27.2V4.8C32 4.58783 31.9157 4.38434 31.7657 4.23431C31.6157 4.08429 31.4122 4 31.2 4H0.8ZM1.6 5.6H16.1024L16.0918 7.42688L10.7542 16.2611L1.6 20.5094V5.6ZM17.063 5.6H30.4V11.7587L22.0858 14.4458L17.0525 7.40896L17.063 5.6ZM16.6051 8.43424L21.3363 15.048L19.4605 18.6019L16.2819 19.0486L11.7549 16.4618L16.6051 8.43424ZM30.4 12.7674V26.4H28.0858L20.3638 18.9482L22.2326 15.4067L30.4 12.7674ZM11.0669 17.1744L15.7306 19.8394L16.3094 26.4H1.6V21.5674L11.0669 17.1744ZM19.6064 19.5507L26.703 26.4H17.2736L16.704 19.9587L19.6064 19.5507Z" fill="black"/>
|
||||
<path d="M19.6373 20.9928C19.213 20.9928 18.806 21.1614 18.506 21.4615C18.2059 21.7615 18.0373 22.1685 18.0373 22.5928C18.0373 23.0172 18.2059 23.4242 18.506 23.7242C18.806 24.0243 19.213 24.1928 19.6373 24.1928C20.0617 24.1928 20.4687 24.0243 20.7687 23.7242C21.0688 23.4242 21.2373 23.0172 21.2373 22.5928C21.2373 22.1685 21.0688 21.7615 20.7687 21.4615C20.4687 21.1614 20.0617 20.9928 19.6373 20.9928ZM17.0473 13.0117C16.6229 13.0117 16.216 13.1803 15.9159 13.4803C15.6158 13.7804 15.4473 14.1874 15.4473 14.6117C15.4473 15.0361 15.6158 15.443 15.9159 15.7431C16.216 16.0431 16.6229 16.2117 17.0473 16.2117C17.4716 16.2117 17.8786 16.0431 18.1786 15.7431C18.4787 15.443 18.6473 15.0361 18.6473 14.6117C18.6473 14.1874 18.4787 13.7804 18.1786 13.4803C17.8786 13.1803 17.4716 13.0117 17.0473 13.0117Z" fill="#249473"/>
|
||||
<line x1="1" y1="5.38281" x2="31" y2="5.38282" stroke="black" stroke-width="2"/>
|
||||
<line x1="1" y1="26.3828" x2="31" y2="26.3828" stroke="black" stroke-width="2"/>
|
||||
<line x1="2" y1="26.3828" x2="2" y2="6.38281" stroke="black" stroke-width="2"/>
|
||||
<line x1="30" y1="26.3828" x2="30" y2="6.38281" stroke="black" stroke-width="2"/>
|
||||
<circle cx="10.5" cy="21.8828" r="2.5" fill="#249473"/>
|
||||
<circle cx="6.5" cy="10.8828" r="2.5" fill="#249473"/>
|
||||
<circle cx="7.5" cy="10.8828" r="3.5" fill="#249473"/>
|
||||
<circle cx="23.5" cy="9.88281" r="2.5" fill="#249473"/>
|
||||
<circle cx="25.5" cy="18.8828" r="2.5" fill="#249473"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -1 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"> <circle cx="7" cy="8" r="2" stroke="currentColor" stroke-width="1.5"/> <path d="M3.5 16c0-2 2-3 3.5-3s3.5 1 3.5 3" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/> <circle cx="13" cy="8" r="2" stroke="currentColor" stroke-width="1.5"/> <path d="M9.5 16c0-2 2-3 3.5-3s3.5 1 3.5 3" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/> <line x1="18" y1="7" x2="22" y2="7" stroke="currentColor" stroke-width="1.5"/> <line x1="18" y1="11" x2="22" y2="11" stroke="currentColor" stroke-width="1.5"/> <line x1="18" y1="15" x2="22" y2="15" stroke="currentColor" stroke-width="1.5"/> </svg>
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20.9141 9.51047C21.0673 9.51047 21.219 9.48075 21.3605 9.42301C21.5021 9.36527 21.6307 9.28063 21.739 9.17394C21.8474 9.06725 21.9333 8.94058 21.9919 8.80118C22.0506 8.66177 22.0807 8.51236 22.0807 8.36147C22.0807 8.21059 22.0506 8.06117 21.9919 7.92177C21.9333 7.78237 21.8474 7.6557 21.739 7.54901C21.6307 7.44231 21.5021 7.35768 21.3605 7.29994C21.219 7.24219 21.0673 7.21247 20.9141 7.21247C20.6046 7.21247 20.3079 7.33353 20.0891 7.54901C19.8703 7.76449 19.7474 8.05674 19.7474 8.36147C19.7474 8.66621 19.8703 8.95846 20.0891 9.17394C20.3079 9.38942 20.6046 9.51047 20.9141 9.51047ZM13.9141 9.89347C13.9142 8.70246 14.2275 7.53179 14.8237 6.49555C15.4198 5.4593 16.2784 4.59284 17.3157 3.9806C18.353 3.36836 19.5337 3.03123 20.7427 3.00207C21.9516 2.9729 23.1476 3.2527 24.2141 3.81419C25.2806 4.37568 26.1812 5.1997 26.8282 6.20596C27.4751 7.21221 27.8463 8.36637 27.9056 9.55595C27.9649 10.7455 27.7103 11.9299 27.1666 12.9938C26.6228 14.0576 25.8085 14.9645 24.8029 15.6262V18.7668L26.0209 19.9679C26.1957 20.1403 26.2939 20.3739 26.2939 20.6175C26.2939 20.8611 26.1957 21.0947 26.0209 21.267L24.3472 22.9155L26.0085 24.5501C26.1013 24.6416 26.1735 24.7513 26.2203 24.8721C26.2671 24.993 26.2876 25.1222 26.2802 25.2513C26.2729 25.3804 26.238 25.5065 26.1777 25.6215C26.1175 25.7364 26.0333 25.8375 25.9307 25.9182L22.2752 28.7984C22.1096 28.9289 21.9039 29 21.6918 29C21.4798 29 21.274 28.9289 21.1085 28.7984L17.3752 25.8569C17.266 25.7709 17.1779 25.6617 17.1173 25.5376C17.0568 25.4135 17.0253 25.2776 17.0252 25.1399V15.6262C16.0679 14.9963 15.2832 14.1436 14.7405 13.1436C14.1978 12.1437 13.914 11.0273 13.9141 9.89347ZM20.9141 4.53148C19.7151 4.53094 18.5495 4.9202 17.5981 5.63883C16.6468 6.35747 15.9629 7.36528 15.6526 8.50587C15.3424 9.64645 15.423 10.856 15.8822 11.9468C16.3413 13.0376 17.1532 13.9486 18.1918 14.5385C18.3101 14.6057 18.4083 14.7024 18.4765 14.8189C18.5448 14.9353 18.5807 15.0674 18.5807 15.2019V24.8458L21.6918 27.297L24.4156 25.1507L22.8072 23.565C22.6324 23.3927 22.5342 23.1591 22.5342 22.9155C22.5342 22.6719 22.6324 22.4383 22.8072 22.2659L24.481 20.6175L23.5212 19.6722C23.3461 19.5 23.2476 19.2664 23.2474 19.0227V15.2019C23.2474 15.0674 23.2833 14.9353 23.3516 14.8189C23.4199 14.7024 23.518 14.6057 23.6363 14.5385C24.6749 13.9486 25.4868 13.0376 25.9459 11.9468C26.4051 10.856 26.4858 9.64645 26.1755 8.50587C25.8652 7.36528 25.1813 6.35747 24.23 5.63883C23.2786 4.9202 22.113 4.53094 20.9141 4.53148Z" fill="white"/>
|
||||
<path opacity="0.8" d="M13.1691 3.53979C14.0203 3.18027 14.9474 3.03074 15.8702 3.1041C15.2469 3.5409 14.6891 4.06646 14.2183 4.66247C13.8896 4.74608 13.1187 5.02687 12.6646 5.48111C12.2098 5.85742 11.8391 6.32304 11.5762 6.84839C11.3133 7.37375 11.1638 7.94736 11.1373 8.53282C11.1108 9.11827 11.2079 9.70277 11.4223 10.2492L11.5906 10.6761L5.42797 16.7631V19.9939H8.28105V18.0213C8.28105 17.7971 8.37123 17.582 8.53174 17.4235C8.69226 17.265 8.90997 17.1759 9.13697 17.1759H11.846V15.1201C11.8462 14.896 11.9365 14.6811 12.097 14.5227L13.5093 13.1264C13.7419 13.5477 14.0137 13.9468 14.321 14.3184L13.2725 15.354V17.7395C13.2725 17.9637 13.1823 18.1787 13.0218 18.3373C12.8613 18.4958 12.6436 18.5849 12.4166 18.5849H9.70616V20.5575C9.70616 20.7817 9.61599 20.9968 9.45547 21.1553C9.29495 21.3139 9.07725 21.4029 8.85024 21.4029H4.85592C4.62892 21.4029 4.41121 21.3139 4.25069 21.1553C4.09018 20.9968 4 20.7817 4 20.5575V16.5277C4.0002 16.3036 4.09051 16.0887 4.25107 15.9303L9.93869 10.314C9.67717 9.4368 9.63568 8.50991 9.81779 7.61333C9.99991 6.71675 10.4002 5.8774 10.984 5.16771C11.5679 4.45802 12.3178 3.89931 13.1691 3.53979Z" fill="white"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 706 B After Width: | Height: | Size: 3.6 KiB |
1
kngil/img/ico/ico_super_admin2.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg width="28" height="28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9141 7.51047C19.0673 7.51047 19.219 7.48075 19.3605 7.42301C19.5021 7.36527 19.6307 7.28063 19.739 7.17394C19.8474 7.06725 19.9333 6.94058 19.9919 6.80118C20.0506 6.66177 20.0807 6.51236 20.0807 6.36147C20.0807 6.21059 20.0506 6.06117 19.9919 5.92177C19.9333 5.78237 19.8474 5.6557 19.739 5.54901C19.6307 5.44231 19.5021 5.35768 19.3605 5.29994C19.219 5.24219 19.0673 5.21247 18.9141 5.21247C18.6046 5.21247 18.3079 5.33353 18.0891 5.54901C17.8703 5.76449 17.7474 6.05674 17.7474 6.36147C17.7474 6.66621 17.8703 6.95846 18.0891 7.17394C18.3079 7.38942 18.6046 7.51047 18.9141 7.51047ZM11.9141 7.89347C11.9142 6.70246 12.2275 5.53179 12.8237 4.49555C13.4198 3.4593 14.2784 2.59284 15.3157 1.9806C16.353 1.36836 17.5337 1.03123 18.7427 1.00207C19.9516 0.972903 21.1476 1.2527 22.2141 1.81419C23.2806 2.37568 24.1812 3.1997 24.8282 4.20596C25.4751 5.21221 25.8463 6.36637 25.9056 7.55595C25.9649 8.74553 25.7103 9.92995 25.1666 10.9938C24.6228 12.0576 23.8085 12.9645 22.8029 13.6262V16.7668L24.0209 17.9679C24.1957 18.1403 24.2939 18.3739 24.2939 18.6175C24.2939 18.8611 24.1957 19.0947 24.0209 19.267L22.3472 20.9155L24.0085 22.5501C24.1013 22.6416 24.1735 22.7513 24.2203 22.8721C24.2671 22.993 24.2876 23.1222 24.2802 23.2513C24.2729 23.3804 24.238 23.5065 24.1777 23.6215C24.1175 23.7364 24.0333 23.8375 23.9307 23.9182L20.2752 26.7984C20.1096 26.9289 19.9039 27 19.6918 27C19.4798 27 19.274 26.9289 19.1085 26.7984L15.3752 23.8569C15.266 23.7709 15.1779 23.6617 15.1173 23.5376C15.0568 23.4135 15.0253 23.2776 15.0252 23.1399V13.6262C14.0679 12.9963 13.2832 12.1436 12.7405 11.1436C12.1978 10.1437 11.914 9.02731 11.9141 7.89347ZM18.9141 2.53148C17.7151 2.53094 16.5495 2.9202 15.5981 3.63883C14.6468 4.35747 13.9629 5.36528 13.6526 6.50587C13.3424 7.64645 13.423 8.856 13.8822 9.9468C14.3413 11.0376 15.1532 11.9486 16.1918 12.5385C16.3101 12.6057 16.4083 12.7024 16.4765 12.8189C16.5448 12.9353 16.5807 13.0674 16.5807 13.2019V22.8458L19.6918 25.297L22.4156 23.1507L20.8072 21.565C20.6324 21.3927 20.5342 21.1591 20.5342 20.9155C20.5342 20.6719 20.6324 20.4383 20.8072 20.2659L22.481 18.6175L21.5212 17.6722C21.3461 17.5 21.2476 17.2664 21.2474 17.0227V13.2019C21.2474 13.0674 21.2833 12.9353 21.3516 12.8189C21.4199 12.7024 21.518 12.6057 21.6363 12.5385C22.6749 11.9486 23.4868 11.0376 23.9459 9.9468C24.4051 8.856 24.4858 7.64645 24.1755 6.50587C23.8652 5.36528 23.1813 4.35747 22.23 3.63883C21.2786 2.9202 20.113 2.53094 18.9141 2.53148Z" fill="white"/><path opacity="0.8" d="M11.1691 1.53979C12.0203 1.18027 12.9474 1.03074 13.8702 1.1041C13.2469 1.5409 12.6891 2.06646 12.2183 2.66247C11.8896 2.74608 11.1187 3.02687 10.6646 3.48111C10.2098 3.85742 9.83911 4.32304 9.57618 4.84839C9.31326 5.37375 9.1638 5.94736 9.13731 6.53282C9.11082 7.11827 9.20786 7.70277 9.42229 8.2492L9.59063 8.67613L3.42797 14.7631V17.9939H6.28105V16.0213C6.28105 15.7971 6.37123 15.582 6.53174 15.4235C6.69226 15.265 6.90997 15.1759 7.13697 15.1759H9.84598V13.1201C9.84618 12.896 9.93648 12.6811 10.097 12.5227L11.5093 11.1264C11.7419 11.5477 12.0137 11.9468 12.321 12.3184L11.2725 13.354V15.7395C11.2725 15.9637 11.1823 16.1787 11.0218 16.3373C10.8613 16.4958 10.6436 16.5849 10.4166 16.5849H7.70616V18.5575C7.70616 18.7817 7.61599 18.9968 7.45547 19.1553C7.29495 19.3139 7.07725 19.4029 6.85024 19.4029H2.85592C2.62892 19.4029 2.41121 19.3139 2.25069 19.1553C2.09018 18.9968 2 18.7817 2 18.5575V14.5277C2.0002 14.3036 2.09051 14.0887 2.25107 13.9303L7.93869 8.31401C7.67717 7.4368 7.63568 6.50991 7.81779 5.61333C7.99991 4.71675 8.40017 3.8774 8.98402 3.16771C9.56788 2.45802 10.3178 1.89931 11.1691 1.53979Z" fill="white"/></svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
1
kngil/img/ico/ico_user_admin.svg
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
4
kngil/img/ico/ico_zone.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="37" height="37" viewBox="0 0 37 37" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M18.5 12.3359L27.75 7.71094L18.5 3.08594V18.5026" stroke="#1A543D" stroke-width="3.08333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M12.333 18.4844L3.85381 23.3252C3.61655 23.4597 3.41921 23.6547 3.28191 23.8903C3.14461 24.1259 3.07227 24.3937 3.07227 24.6665C3.07227 24.9392 3.14461 25.207 3.28191 25.4426C3.41921 25.6783 3.61655 25.8732 3.85381 26.0077L16.958 33.5002C17.4267 33.7708 17.9584 33.9133 18.4996 33.9133C19.0409 33.9133 19.5726 33.7708 20.0413 33.5002L33.1455 26.0077C33.3827 25.8732 33.5801 25.6783 33.7174 25.4426C33.8547 25.207 33.927 24.9392 33.927 24.6665C33.927 24.3937 33.8547 24.1259 33.7174 23.8903C33.5801 23.6547 33.3827 23.4597 33.1455 23.3252L24.6663 18.4998M10.0051 19.8102L26.9942 29.5227M26.9942 19.8102L10.0205 29.5227" stroke="black" stroke-width="3.08333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 966 B |
9
kngil/img/ico_title_obj.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="100" height="25" viewBox="0 0 100 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="40.0004" cy="12.308" r="1.53846" fill="#505050"/>
|
||||
<path d="M13.8457 11.5394C13.4209 11.5394 13.0765 11.8838 13.0765 12.3086C13.0765 12.7334 13.4209 13.0778 13.8457 13.0778L13.8457 12.3086L13.8457 11.5394ZM39.9993 13.0778C40.4242 13.0778 40.7686 12.7334 40.7686 12.3086C40.7686 11.8838 40.4242 11.5394 39.9993 11.5394L39.9993 12.3086L39.9993 13.0778ZM13.8457 12.3086L13.8457 13.0778L39.9993 13.0778L39.9993 12.3086L39.9993 11.5394L13.8457 11.5394L13.8457 12.3086Z" fill="#505050"/>
|
||||
<path d="M59.999 11.5394C59.5742 11.5394 59.2298 11.8838 59.2298 12.3086C59.2298 12.7334 59.5742 13.0778 59.999 13.0778V12.3086V11.5394ZM89.2298 13.0778C89.6546 13.0778 89.999 12.7334 89.999 12.3086C89.999 11.8838 89.6546 11.5394 89.2298 11.5394V12.3086V13.0778ZM59.999 12.3086V13.0778H89.2298V12.3086V11.5394H59.999V12.3086Z" fill="#505050"/>
|
||||
<circle cx="92.3074" cy="12.3074" r="2.30769" stroke="#505050" stroke-width="1.53846"/>
|
||||
<circle cx="60.0004" cy="12.308" r="1.53846" fill="#505050"/>
|
||||
<path d="M50 5.11035C52.9737 5.11043 55.3846 7.5205 55.3848 10.4941C55.3848 13.468 50.2061 19.3408 50.2061 19.3408C50.2061 19.3408 44.6152 13.468 44.6152 10.4941C44.6154 7.52045 47.0263 5.11035 50 5.11035ZM49.999 7.50293C48.347 7.50293 47.0079 8.84212 47.0078 10.4941C47.0078 12.1463 48.3469 13.4854 49.999 13.4854C51.651 13.4852 52.9902 12.1462 52.9902 10.4941C52.9901 8.8422 51.651 7.50306 49.999 7.50293Z" fill="#505050"/>
|
||||
<circle cx="10.7693" cy="12.3074" r="2.30769" stroke="#505050" stroke-width="1.53846"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
9
kngil/img/ico_title_obj_w.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="100" height="25" viewBox="0 0 100 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="39.9994" cy="12.308" r="1.53846" fill="white"/>
|
||||
<path d="M13.8457 11.5394C13.4209 11.5394 13.0765 11.8838 13.0765 12.3086C13.0765 12.7334 13.4209 13.0778 13.8457 13.0778L13.8457 12.3086L13.8457 11.5394ZM39.9993 13.0778C40.4242 13.0778 40.7686 12.7334 40.7686 12.3086C40.7686 11.8838 40.4242 11.5394 39.9993 11.5394L39.9993 12.3086L39.9993 13.0778ZM13.8457 12.3086L13.8457 13.0778L39.9993 13.0778L39.9993 12.3086L39.9993 11.5394L13.8457 11.5394L13.8457 12.3086Z" fill="white"/>
|
||||
<path d="M60 11.5394C59.5752 11.5394 59.2308 11.8838 59.2308 12.3086C59.2308 12.7334 59.5752 13.0778 60 13.0778V12.3086V11.5394ZM89.2308 13.0778C89.6556 13.0778 90 12.7334 90 12.3086C90 11.8838 89.6556 11.5394 89.2308 11.5394V12.3086V13.0778ZM60 12.3086V13.0778H89.2308V12.3086V11.5394H60V12.3086Z" fill="white"/>
|
||||
<circle cx="92.3074" cy="12.3074" r="2.30769" stroke="white" stroke-width="1.53846"/>
|
||||
<circle cx="59.9994" cy="12.308" r="1.53846" fill="white"/>
|
||||
<path d="M50 5.11035C52.9737 5.11043 55.3846 7.5205 55.3848 10.4941C55.3848 13.468 50.2061 19.3408 50.2061 19.3408C50.2061 19.3408 44.6152 13.468 44.6152 10.4941C44.6154 7.52045 47.0263 5.11035 50 5.11035ZM49.999 7.50293C48.347 7.50293 47.0079 8.84212 47.0078 10.4941C47.0078 12.1463 48.3469 13.4854 49.999 13.4854C51.651 13.4852 52.9902 12.1462 52.9902 10.4941C52.9901 8.8422 51.651 7.50306 49.999 7.50293Z" fill="white"/>
|
||||
<circle cx="10.7683" cy="12.3074" r="2.30769" stroke="white" stroke-width="1.53846"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
BIN
kngil/img/img_sitemap_01.jpg
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
kngil/img/img_sitemap_02.jpg
Normal file
|
After Width: | Height: | Size: 1016 KiB |
BIN
kngil/img/img_sitemap_02.png
Normal file
|
After Width: | Height: | Size: 2.4 MiB |
BIN
kngil/img/img_sitemap_03.jpg
Normal file
|
After Width: | Height: | Size: 2.0 MiB |
BIN
kngil/img/img_sitemap_04.jpg
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
kngil/img/img_sitemap_05.jpg
Normal file
|
After Width: | Height: | Size: 1.9 MiB |
BIN
kngil/img/primary/bg_key_title.png
Normal file
|
After Width: | Height: | Size: 944 KiB |
BIN
kngil/img/primary/bg_primary_title.jpg
Normal file
|
After Width: | Height: | Size: 638 KiB |
BIN
kngil/img/primary/img_area_01.png
Normal file
|
After Width: | Height: | Size: 922 KiB |
BIN
kngil/img/primary/img_area_01_apx.png
Normal file
|
After Width: | Height: | Size: 205 KiB |
BIN
kngil/img/primary/img_area_02_apx.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
kngil/img/primary/img_cost_01.png
Normal file
|
After Width: | Height: | Size: 2.0 MiB |
BIN
kngil/img/primary/img_cost_01_apx.png
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
kngil/img/primary/img_cost_01_zoom.png
Normal file
|
After Width: | Height: | Size: 208 KiB |
BIN
kngil/img/primary/img_cost_02_apx.png
Normal file
|
After Width: | Height: | Size: 92 KiB |
BIN
kngil/img/primary/img_cost_02_zoom.png
Normal file
|
After Width: | Height: | Size: 218 KiB |
BIN
kngil/img/primary/img_cost_03.png
Normal file
|
After Width: | Height: | Size: 606 KiB |
BIN
kngil/img/primary/img_cost_03_apx.png
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
kngil/img/primary/img_cost_03_zoom.png
Normal file
|
After Width: | Height: | Size: 208 KiB |
BIN
kngil/img/primary/img_cost_04.png
Normal file
|
After Width: | Height: | Size: 509 KiB |
BIN
kngil/img/primary/img_data_01.png
Normal file
|
After Width: | Height: | Size: 515 KiB |
BIN
kngil/img/primary/img_data_02.png
Normal file
|
After Width: | Height: | Size: 520 KiB |
BIN
kngil/img/primary/img_data_03.png
Normal file
|
After Width: | Height: | Size: 328 KiB |
44
kngil/img/primary/img_key_point.svg
Normal file
@@ -0,0 +1,44 @@
|
||||
<svg width="36" height="41" viewBox="0 0 36 41" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<style>
|
||||
@keyframes pulseCircle {
|
||||
0%, 100% {
|
||||
transform: scale(1);
|
||||
transform-origin: center;
|
||||
}
|
||||
50% {
|
||||
transform: scale(0.95);
|
||||
transform-origin: center;
|
||||
}
|
||||
}
|
||||
circle {
|
||||
animation: pulseCircle 2s ease-in-out infinite;
|
||||
}
|
||||
</style>
|
||||
<circle opacity="0.8" cx="11.4546" cy="11.4556" r="5.72727" stroke="#FFB700" stroke-width="1.63636"/>
|
||||
<circle opacity="0.4" cx="11.4545" cy="11.4545" r="10.6364" stroke="#FFB700" stroke-width="1.63636"/>
|
||||
<g clip-path="url(#clip0_1139_13668)">
|
||||
<g filter="url(#filter0_d_1139_13668)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.1084 10.8477L32.7125 28.639H21.2232L14.9109 38.7374L11.1084 10.8477Z" fill="url(#paint0_linear_1139_13668)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.1084 10.8477L32.7125 28.639H21.2232L14.9109 38.7374L11.1084 10.8477Z" stroke="#FFB700" stroke-width="1.63636"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1139_13668" x="3.47017" y="8.88672" width="38.0684" height="45.294" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="6.54545"/>
|
||||
<feGaussianBlur stdDeviation="3.27273"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1139_13668"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1139_13668" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1139_13668" x1="21.9104" y1="10.8477" x2="21.9104" y2="38.7374" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFDE00"/>
|
||||
<stop offset="1" stop-color="#FFDE00"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1139_13668">
|
||||
<rect width="32.7273" height="32.7273" fill="white" transform="translate(3.27246 8.18359)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
BIN
kngil/img/primary/img_progress_01.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
kngil/img/primary/img_progress_02.png
Normal file
|
After Width: | Height: | Size: 766 KiB |
BIN
kngil/img/primary/img_progress_03.png
Normal file
|
After Width: | Height: | Size: 826 KiB |
BIN
kngil/img/primary/img_progress_04.png
Normal file
|
After Width: | Height: | Size: 713 KiB |
BIN
kngil/img/primary/img_progress_step_01.png
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
kngil/img/primary/img_progress_step_02.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
kngil/img/primary/img_progress_step_03.png
Normal file
|
After Width: | Height: | Size: 64 KiB |