-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1468 lines (1365 loc) · 83.4 KB
/
Copy pathindex.html
File metadata and controls
1468 lines (1365 loc) · 83.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<script>(function(){var t;try{t=localStorage.getItem('theme')}catch(e){}if(t!=='light'&&t!=='dark'){t=window.matchMedia&&window.matchMedia('(prefers-color-scheme:dark)').matches?'dark':'light'}document.documentElement.setAttribute('data-theme',t)})()</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>티모집사 툴즈 — 설치·로그인 없는 직장인 업무 도구</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="/special-chars/theme.css">
<link rel="manifest" href="/special-chars/manifest.json">
<link rel="apple-touch-icon" href="favicon.png">
<meta name="theme-color" content="#6366f1">
<meta name="description" content="직장인이 문서 작성, 파일 처리, 일정 계산, 마케팅 업무를 설치와 로그인 없이 바로 끝내는 브라우저 업무 도구 모음입니다.">
<meta property="og:title" content="티모집사 툴즈 — 직장인용 브라우저 업무 도구">
<meta property="og:description" content="문서·파일·일정·계산·마케팅 업무를 설치와 로그인 없이 브라우저에서 바로 처리하세요.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://teemozipsa.com/">
<meta property="og:image" content="https://teemozipsa.com/favicon.png">
<link rel="canonical" href="https://teemozipsa.com/">
<!-- 네이버 서치어드바이저 인증 메타태그 -->
<meta name="naver-site-verification" content="810c74e464975f32e3aa19b595eaf90aa6b6de84" />
<!-- 구글 서치콘솔 인증 메타태그 -->
<meta name="google-site-verification" content="Q3amxZVhsseow7dtGnkw67e9LnGy8gGF7HYBASnEz6o" />
<!-- Google AdSense 사이트 소유권 확인용 메타태그. 광고 로더는 승인 후 콘텐츠 페이지에만 배치합니다. -->
<meta name="google-adsense-account" content="ca-pub-3501868770820650">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"WebSite","name":"티모집사 툴즈","alternateName":"teemoZipsa Tools","url":"https://teemozipsa.com/","description":"설치와 로그인 없이 바로 쓰는 직장인용 브라우저 업무 도구","inLanguage":"ko-KR","audience":{"@type":"Audience","audienceType":"직장인과 실무자"},"publisher":{"@type":"Organization","name":"티모집사","url":"https://teemozipsa.com/","sameAs":["https://www.instagram.com/seon_7yu/"]},"potentialAction":{"@type":"SearchAction","target":"https://teemozipsa.com/?q={search_term_string}","query-input":"required name=search_term_string"}}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"티모집사","url":"https://teemozipsa.com/","contactPoint":{"@type":"ContactPoint","contactType":"customer support","url":"https://teemozipsa.com/contact.html","availableLanguage":["ko"]}}</script>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, 'Noto Sans KR', 'Malgun Gothic', sans-serif;
background: var(--bg-body); color: var(--text-secondary); min-height: 100vh;
position: relative; overflow-x: hidden;
}
/* === 업데이트 배너 === */
.update-banner {
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: #fff; text-align: center; padding: 10px 40px 10px 20px;
font-size: 13px; font-weight: 500; position: relative;
}
.update-banner a { color: #e0e7ff; }
.banner-close {
position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
background: none; border: none; color: rgba(255,255,255,.7); font-size: 18px;
cursor: pointer; padding: 4px; line-height: 1; min-width: 24px; min-height: 24px;
display: inline-flex; align-items: center; justify-content: center;
}
.banner-close:hover { color: #fff; }
/* === 헤더 === */
.hero { text-align: center; padding: 40px 20px 0; max-width: 720px; margin: 0 auto; }
.hero h1 { font-size: 34px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; margin-bottom: 8px; }
.hero p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
/* === 오늘의 정보 위젯 === */
.today-widget {
max-width: 480px; margin: 0 auto 24px; background: var(--bg-card);
border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px;
display: flex; justify-content: space-between; align-items: center;
box-shadow: var(--shadow-sm); gap: 12px; flex-wrap: wrap;
}
.today-date { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.today-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.today-clock { font-size: 22px; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.today-remain { font-size: 11px; color: var(--text-muted); text-align: right; }
/* === 검색창 === */
.search-wrap { max-width: 480px; margin: 0 auto 20px; position: relative; }
.search-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; fill: var(--text-muted); pointer-events: none; }
.search-wrap input {
width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
padding: 14px 54px 14px 46px; font-size: 15px; color: var(--text-primary); outline: none;
font-family: inherit; transition: border-color .2s, box-shadow .2s; box-shadow: var(--shadow-sm);
}
.search-wrap input::placeholder { color: var(--text-muted); }
.search-wrap input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,102,241,.15); }
.search-clear {
position: absolute; right: 9px; top: 50%; transform: translateY(-50%);
width: 36px; height: 36px; border: 0; border-radius: 10px;
display: none; place-items: center; background: var(--bg-hover); color: var(--text-secondary);
cursor: pointer; font: 700 20px/1 inherit; z-index: 2;
}
.search-clear.visible { display: grid; }
.search-clear:hover { background: var(--accent-light); color: var(--accent); }
.search-status {
width: calc(100% - 40px); max-width: 1080px; margin: 0 auto 6px;
color: var(--text-muted); font-size: 12px; font-weight: 700;
display: none;
}
.search-status.visible { display: block; }
/* === 즐겨찾기 / 최근 사용 섹션 === */
.section-label {
max-width: 960px; margin: 0 auto; padding: 0 20px 8px;
font-size: 13px; font-weight: 700; color: var(--text-muted);
display: none; align-items: center; gap: 6px;
}
.section-label.visible { display: flex; }
/* === 카드 그리드 === */
.tools-grid {
max-width: 960px; margin: 0 auto; padding: 0 20px 16px;
display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px;
}
.tool-card {
background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
padding: 18px 20px; text-decoration: none; color: inherit; cursor: pointer;
transition: all .25s ease; display: flex; align-items: center; gap: 14px;
user-select: none; box-shadow: var(--shadow-sm); position: relative;
}
.tool-card:hover { transform: translateY(-3px); border-color: var(--border-hover); box-shadow: var(--shadow-accent); }
.tool-card::after { content: ''; position: absolute; inset: -10px; }
.tool-card:active { transform: translateY(-1px); }
.tool-card.dragging { opacity: .4; transform: scale(.95); }
.fav-drop-zone { position: relative; }
.tool-icon { font-size: 26px; line-height: 1; flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-input); border-radius: 10px; }
.tool-info { flex: 1; min-width: 0; }
.tool-name { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tool-desc { font-size: 12px; color: var(--text-muted); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tool-card:hover .tool-name { color: var(--accent); }
/* 즐겨찾기 버튼 */
.fav-btn {
position: absolute; top: 4px; right: 4px; width: 44px; height: 44px;
display: grid; place-items: center; background: transparent; border: none; border-radius: 12px;
font-size: 19px; cursor: pointer; color: var(--text-muted); transition: color .2s, background .2s;
padding: 0; line-height: 1; z-index: 2; touch-action: manipulation;
}
.fav-btn:hover { color: #f59e0b; background: var(--bg-hover); }
.fav-btn.active { color: #f59e0b; }
.home-toast {
position: fixed; right: 80px; bottom: 24px; z-index: 1200;
max-width: min(440px, calc(100vw - 32px)); min-height: 48px;
display: flex; align-items: center; gap: 14px;
padding: 11px 12px 11px 16px; border-radius: 14px;
background: #0f172a; color: #fff; box-shadow: 0 18px 42px rgba(15, 23, 42, .3);
opacity: 0; transform: translateY(14px); pointer-events: none;
transition: opacity .2s ease, transform .2s ease;
font-size: 13px; font-weight: 700;
}
html[data-theme="dark"] .home-toast { background: #f8fafc; color: #0f172a; }
.home-toast.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.home-toast button {
flex: 0 0 auto; min-height: 36px; padding: 0 10px; border: 0; border-radius: 9px;
background: rgba(99, 102, 241, .18); color: #a5b4fc;
font: 800 12px/1 inherit; cursor: pointer;
}
html[data-theme="dark"] .home-toast button { color: #4338ca; }
.no-results { text-align: center; color: var(--text-muted); font-size: 14px; padding: 40px 20px; display: none; }
/* === 뷰 전환 토글 === */
.view-controls {
max-width: 960px; margin: 0 auto; padding: 0 20px 8px;
display: flex; align-items: center; justify-content: space-between;
}
.view-toggle { display: flex; gap: 8px; }
/* === 카테고리 뷰 === */
.category-group { max-width: 960px; margin: 0 auto; padding: 0 20px 16px; display: none; }
.category-group.visible { display: block; }
.category-title {
font-size: 14px; font-weight: 700; color: var(--text-secondary); margin-bottom: 10px;
padding-bottom: 6px; border-bottom: 2px solid var(--border);
display: flex; align-items: center; gap: 6px;
}
.category-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px;
margin-bottom: 20px;
}
/* === 접기/펼치기 토글 버튼 === */
.faq-toggle-btn { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 4px; width: 100%; padding: 10px; background: var(--bg-hover); border: 1px solid var(--border); border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--accent); cursor: pointer; transition: all .2s; font-family: inherit; margin-top: 4px; }
.faq-toggle-btn::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: radial-gradient(circle 100px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.2), transparent 100%); opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 0; }
.faq-toggle-btn:hover::before { opacity: 1; }
.faq-toggle-btn:hover { background: var(--accent-light); border-color: var(--border-hover); }
/* === 팁 섹션 === */
.tip-section {
max-width: 960px; margin: 0 auto; padding: 0 20px 32px;
}
.tip-card {
background: var(--accent-light); border: 1px solid var(--border); border-radius: 12px;
padding: 14px 18px; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px;
}
.tip-icon { font-size: 20px; flex-shrink: 0; }
.tip-text { line-height: 1.5; }
.tip-label { font-weight: 700; color: var(--accent); }
/* === 푸터 === */
footer { text-align: center; color: var(--text-muted); font-size: 12px; padding: 24px 20px 40px; border-top: 1px solid var(--border); max-width: 960px; margin: 0 auto; }
footer a { color: var(--text-secondary); text-decoration: none; transition: color .2s; display: inline-flex; align-items: center; gap: 3px; }
footer a:hover { color: var(--accent); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px; margin-bottom: 8px; }
@media (max-width: 640px) {
.hero { padding-top: 32px; }
.hero h1 { font-size: 24px; }
.hero p { font-size: 13px; margin-bottom: 16px; }
.tools-grid { grid-template-columns: 1fr; gap: 10px; padding: 0 16px 16px; }
.tool-name { font-size: 15px; }
.today-widget { flex-direction: column; text-align: center; gap: 8px; }
.today-remain { text-align: center; }
}
/* === 맨 위로 버튼 === */
.scroll-top-btn{position:fixed;bottom:24px;right:24px;width:44px;height:44px;border-radius:50%;background:var(--accent);color:var(--text-on-accent);border:none;font-size:20px;font-weight:700;cursor:pointer;z-index:900;box-shadow:var(--shadow-accent);opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s,transform .2s}
.scroll-top-btn.visible{opacity:1;visibility:visible}
.scroll-top-btn:hover{transform:scale(1.1);background:var(--accent-hover)}
@media(max-width:640px){.scroll-top-btn{bottom:24px;right:16px;width:40px;height:40px;font-size:18px}}
/* === Blob 배경 === */
.blob-bg{position:fixed;top:0;left:0;width:100%;height:100%;overflow:hidden;z-index:0;pointer-events:none;filter:blur(90px);opacity:.5}
.blob-bg .blob{position:absolute;border-radius:50%}
.blob-bg .b1{width:420px;height:420px;top:-8%;left:-5%;animation:bFloat1 14s ease-in-out infinite}
.blob-bg .b2{width:350px;height:350px;bottom:-8%;right:-3%;animation:bFloat2 18s ease-in-out infinite}
.blob-bg .b3{width:300px;height:300px;top:45%;left:55%;animation:bFloat3 20s ease-in-out infinite}
/* 다크모드 블롭 색상 */
html[data-theme="dark"] .b1{background:radial-gradient(circle,rgba(124,58,237,.6) 0%,transparent 70%)}
html[data-theme="dark"] .b2{background:radial-gradient(circle,rgba(59,130,246,.5) 0%,transparent 70%)}
html[data-theme="dark"] .b3{background:radial-gradient(circle,rgba(167,139,250,.4) 0%,transparent 70%)}
/* 라이트모드 블롭 색상 - 좀 더 선명하게 */
html[data-theme="light"] .b1{background:radial-gradient(circle,rgba(99,102,241,.8) 0%,transparent 70%)}
html[data-theme="light"] .b2{background:radial-gradient(circle,rgba(59,130,246,.7) 0%,transparent 70%)}
html[data-theme="light"] .b3{background:radial-gradient(circle,rgba(139,92,246,.75) 0%,transparent 70%)}
@keyframes bFloat1{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(80px,60px) scale(1.08)}66%{transform:translate(-40px,100px) scale(.95)}}
@keyframes bFloat2{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(-100px,-50px) scale(1.12)}66%{transform:translate(50px,-80px) scale(.92)}}
/* 전체 사이트 뷰 토글 버튼용 고급 스포트라이트 (Glow) */
.view-toggle button {
position: relative; overflow: hidden;
background: var(--bg-btn); border: 1px solid var(--border); padding: 8px 14px; font-size: 13px; font-weight: 600;
border-radius: 8px; cursor: pointer; color: var(--text-muted); font-family: inherit; transition: all .2s;
}
.view-toggle button::before {
content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%;
background: radial-gradient(circle 40px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.35), transparent 100%);
opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 0;
}
.view-toggle button:hover::before { opacity: 1; }
.view-toggle button.active { background: var(--accent); color: var(--text-on-accent); border-color: var(--accent-hover); }
.view-toggle button.active::before { display: none; }
.view-toggle span { position: relative; z-index: 1; pointer-events: none; }
.tool-card { min-width: 0; width: 100%; max-width: 100%; padding-right: 56px; }
.tool-card::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.tool-card > :not(.fav-btn) { position: relative; z-index: 1; }
.tool-card > .fav-btn { position: absolute; z-index: 2; }
/* 콘텐츠를 블롭 위에 */
.update-banner,.hero,.today-widget,.search-wrap,.section-label,.view-controls,.tools-grid,.fav-drop-zone,.category-group,.tip-section,footer,.no-results{position:relative;z-index:1}
/* === 2026 portal refresh === */
.blob-bg { display: none; }
body {
background:
linear-gradient(180deg, rgba(15, 23, 42, .04), transparent 420px),
var(--bg-body);
}
html[data-theme="dark"] body {
background:
linear-gradient(180deg, #0f172a 0%, #111827 460px, var(--bg-body) 100%);
}
.visually-hidden {
position: absolute !important; width: 1px !important; height: 1px !important;
padding: 0 !important; margin: -1px !important; overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}
.site-nav {
max-width: 1120px; margin: 14px auto 0; padding: 0 20px;
display: flex; align-items: center; justify-content: space-between; gap: 18px;
position: relative; z-index: 2;
}
.brand-link {
display: inline-flex; align-items: center; gap: 10px;
color: var(--text-primary); text-decoration: none; font-weight: 900;
letter-spacing: -0.02em;
}
.brand-mark {
width: 34px; height: 34px; border-radius: 10px;
display: grid; place-items: center;
background: linear-gradient(135deg, #2563eb, #0fba9f);
color: #fff; box-shadow: 0 10px 22px rgba(37, 99, 235, .28);
}
.site-nav-actions { display: flex; align-items: center; gap: 8px; min-width: 0; }
.site-nav-links { display: flex; align-items: center; gap: 4px; min-width: 0; }
.site-nav-links a {
color: var(--text-secondary); text-decoration: none;
padding: 9px 10px; border-radius: 10px; font-size: 13px; font-weight: 800;
white-space: nowrap;
}
.site-nav-links a:hover { background: var(--bg-hover); color: var(--text-primary); }
.nav-language-short { display: none; }
.nav-theme-slot { width: 40px; height: 40px; flex: 0 0 40px; }
.site-nav .theme-toggle-portal.theme-toggle-inline {
position: static; inset: auto; width: 40px; height: 40px; padding: 0;
display: grid; place-items: center; border-radius: 11px; box-shadow: var(--shadow-sm);
transition: background .2s, transform .2s, box-shadow .2s;
}
.home-utility {
max-width: 1120px; margin: 18px auto 0; padding: 0 20px;
position: relative; z-index: 1;
}
.work-hero {
max-width: 1120px; margin: 42px auto 0; padding: 0 20px;
position: relative; z-index: 1;
}
.work-hero-inner {
padding: 34px; border: 1px solid var(--border); border-radius: 26px;
background:
radial-gradient(circle at 88% 10%, rgba(15, 186, 159, .18), transparent 34%),
radial-gradient(circle at 8% 100%, rgba(37, 99, 235, .14), transparent 38%),
color-mix(in srgb, var(--bg-card) 96%, transparent);
box-shadow: var(--shadow-md);
}
.work-kicker {
display: inline-flex; align-items: center; gap: 7px; margin-bottom: 13px;
padding: 6px 10px; border-radius: 999px; background: var(--accent-light);
color: var(--accent); font-size: 12px; font-weight: 900;
}
.work-kicker::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #0fba9f; }
.work-hero h1 {
max-width: 760px; color: var(--text-primary); font-size: clamp(30px, 5vw, 50px);
line-height: 1.12; letter-spacing: -.045em; font-weight: 900;
}
.work-hero p {
max-width: 720px; margin-top: 15px; color: var(--text-secondary);
font-size: 16px; line-height: 1.75;
}
.work-promises { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.work-promise {
display: inline-flex; align-items: center; gap: 6px; padding: 8px 11px;
border: 1px solid var(--border); border-radius: 10px; background: var(--bg-card);
color: var(--text-secondary); font-size: 12px; font-weight: 800;
}
.workflow-section, .service-principles {
max-width: 1120px; margin: 22px auto 8px; padding: 0 20px;
position: relative; z-index: 1;
}
.content-heading { margin-bottom: 12px; }
.content-heading h2 { color: var(--text-primary); font-size: 20px; font-weight: 900; letter-spacing: -.02em; }
.content-heading p { margin-top: 5px; color: var(--text-muted); font-size: 13px; line-height: 1.6; }
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.workflow-card {
display: flex; flex-direction: column; min-height: 176px; padding: 18px;
border: 1px solid var(--border); border-radius: 18px; background: var(--bg-card);
color: inherit; text-decoration: none; box-shadow: var(--shadow-sm); transition: .2s ease;
}
.workflow-card:hover { transform: translateY(-2px); border-color: var(--border-hover); box-shadow: var(--shadow-md); }
.workflow-icon { font-size: 25px; }
.workflow-card h3 { margin-top: 14px; color: var(--text-primary); font-size: 15px; font-weight: 900; }
.workflow-card p { margin-top: 7px; color: var(--text-muted); font-size: 12px; line-height: 1.6; }
.workflow-link { margin-top: auto; padding-top: 12px; color: var(--accent); font-size: 12px; font-weight: 900; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.principle-card { padding: 17px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-card); }
.principle-card strong { display: block; color: var(--text-primary); font-size: 14px; }
.principle-card span { display: block; margin-top: 6px; color: var(--text-muted); font-size: 12px; line-height: 1.6; }
.standards-link { color: var(--accent); font-weight: 900; text-decoration: none; }
.today-widget {
max-width: none; margin: 0; padding: 16px 20px; border-radius: 18px;
background: color-mix(in srgb, var(--bg-card) 94%, transparent);
box-shadow: var(--shadow-md);
}
.search-wrap { width: calc(100% - 40px); max-width: 1080px; margin: 14px auto 8px; }
.search-wrap input {
min-height: 54px; border-radius: 16px; font-size: 16px;
box-shadow: var(--shadow-md);
}
.tools-grid, .category-group, .view-controls, .section-label, .tip-section {
max-width: 1120px;
}
.view-controls { margin-top: 10px; }
.tool-card {
border-radius: 18px; min-height: 86px;
background: color-mix(in srgb, var(--bg-card) 94%, transparent);
}
.tool-icon {
background: linear-gradient(135deg, var(--accent-light), var(--bg-input));
}
#recentGrid:empty, #favGrid:empty { display: none; }
.view-controls { margin-top: 4px; }
@media (max-width: 640px) {
.update-banner {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.site-nav { margin-top: 10px; padding: 0 16px; gap: 8px; }
.brand-link > span:last-child { display: none; }
.site-nav-actions { margin-left: auto; gap: 4px; }
.site-nav-links { gap: 0; }
.site-nav-links a { padding: 8px 7px; font-size: 12px; }
.nav-language-full { display: none; }
.nav-language-short { display: inline; }
.home-utility { margin-top: 12px; padding: 0 16px; }
.work-hero { margin-top: 24px; padding: 0 16px; }
.work-hero-inner { padding: 24px 20px; border-radius: 20px; }
.work-hero p { font-size: 14px; }
.workflow-section, .service-principles { padding: 0 16px; }
.workflow-grid, .principle-grid { grid-template-columns: 1fr; }
.workflow-card { min-height: 0; }
.today-widget {
flex-direction: row; flex-wrap: nowrap; text-align: left;
padding: 14px 16px; gap: 10px;
}
.today-date { font-size: 13px; }
.today-sub { font-size: 11px; }
.today-clock { font-size: 20px; }
.today-remain { max-width: 130px; font-size: 10px; }
.search-wrap { width: calc(100% - 32px); margin-top: 12px; }
.search-wrap input { min-height: 50px; font-size: 15px; }
.search-status { width: calc(100% - 32px); }
.home-toast { left: 16px; right: 16px; bottom: 76px; max-width: none; }
}
</style>
</head>
<body>
<!-- Blob 배경 -->
<div class="blob-bg" id="blobBg" aria-hidden="true"><div class="blob b1"></div><div class="blob b2"></div><div class="blob b3"></div></div>
<header class="site-header">
<!-- 문의 배너 -->
<div class="update-banner" id="updateBanner" style="display:none">
💡 필요한 기능이나 개선 사항이 있으시면 <a href="https://www.instagram.com/seon_7yu/" target="_blank" rel="noopener"><strong>인스타그램 DM</strong></a>으로 편하게 알려주세요!
<button class="banner-close" onclick="dismissBanner()" aria-label="닫기">×</button>
</div>
<nav class="site-nav" aria-label="주요 메뉴">
<a href="/" class="brand-link">
<span class="brand-mark">T</span>
<span>티모집사 툴즈</span>
</a>
<div class="site-nav-actions">
<div class="site-nav-links">
<a class="nav-tools-link" href="#toolsGrid">업무 도구</a>
<a href="/blog/">업무 가이드</a>
<a class="nav-language" href="/en/" aria-label="English"><span class="nav-language-full">English</span><span class="nav-language-short">EN</span></a>
</div>
<div class="nav-theme-slot" data-theme-toggle-slot></div>
</div>
</nav>
</header>
<main id="mainContent">
<section class="work-hero" aria-labelledby="mainTitle">
<div class="work-hero-inner">
<span class="work-kicker">직장인을 위한 브라우저 업무 도구</span>
<h1 id="mainTitle">설치와 로그인 없이,<br>지금 하던 업무를 바로 끝내세요</h1>
<p>문서 작성, 파일 변환, 일정 계산, 마케팅 링크처럼 자주 생기는 작은 업무를 한곳에서 처리합니다. 필요한 기능만 빠르게 열고, 가능한 작업은 사용자의 브라우저 안에서 끝냅니다.</p>
<div class="work-promises" aria-label="서비스 핵심 원칙">
<span class="work-promise">✓ 회원가입 없음</span>
<span class="work-promise">✓ 설치 없음</span>
<span class="work-promise">✓ 로컬 우선 처리</span>
<span class="work-promise">✓ 모바일·PC 지원</span>
</div>
</div>
</section>
<section class="workflow-section" aria-labelledby="workflowTitle">
<div class="content-heading">
<h2 id="workflowTitle">업무 상황으로 바로 찾기</h2>
<p>도구 이름을 몰라도 지금 해결하려는 일에서 시작할 수 있습니다.</p>
</div>
<div class="workflow-grid">
<a class="workflow-card" href="/special-chars/char-counter/">
<span class="workflow-icon">✍️</span><h3>문서·메시지 다듬기</h3>
<p>글자 수와 바이트를 확인하고, 자주 쓰는 답장과 발표 원고를 빠르게 준비합니다.</p>
<span class="workflow-link">글자 수 계산부터 시작 →</span>
</a>
<a class="workflow-card" href="/special-chars/pdf-tool/">
<span class="workflow-icon">📁</span><h3>파일·이미지 정리하기</h3>
<p>PDF를 합치거나 나누고, 첨부 제한에 맞춰 이미지 용량과 형식을 조정합니다.</p>
<span class="workflow-link">PDF 도구 열기 →</span>
</a>
<a class="workflow-card" href="/special-chars/biz-day-calc/">
<span class="workflow-icon">📅</span><h3>일정·마감 계산하기</h3>
<p>공휴일을 제외한 영업일, 날짜 차이, 해외 동료와의 회의 시간을 확인합니다.</p>
<span class="workflow-link">영업일 계산하기 →</span>
</a>
<a class="workflow-card" href="/special-chars/utm-builder/">
<span class="workflow-icon">📣</span><h3>마케팅·웹 작업하기</h3>
<p>UTM 링크, QR 코드, 색상 코드와 Base64처럼 실무에서 자주 쓰는 값을 만듭니다.</p>
<span class="workflow-link">UTM 링크 만들기 →</span>
</a>
<a class="workflow-card" href="/special-chars/sub-calc/">
<span class="workflow-icon">🧮</span><h3>예산·비용 검토하기</h3>
<p>퍼센트, 평균 단가, SaaS 구독과 출장비를 같은 조건으로 계산하고 비교합니다.</p>
<span class="workflow-link">업무 구독 예산부터 시작 →</span>
</a>
<a class="workflow-card" href="/special-chars/prompt-gen/">
<span class="workflow-icon">🤖</span><h3>AI·콘텐츠 준비하기</h3>
<p>업무 프롬프트, 이모지 조합과 영상·오디오 제작값을 빠르게 준비합니다.</p>
<span class="workflow-link">AI 프롬프트 작성하기 →</span>
</a>
</div>
</section>
<section class="home-utility" aria-labelledby="mainTitle">
<div class="today-widget">
<div>
<div class="today-date" id="todayDate"></div>
<div class="today-sub" id="todaySub"></div>
</div>
<div style="text-align:right">
<div class="today-clock" id="todayClock"></div>
<div class="today-remain" id="todayRemain"></div>
</div>
</div>
</section>
<div class="search-wrap">
<svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
<input type="text" id="searchInput" placeholder="업무 도구 검색... (예: PDF, 글자 수, 영업일, UTM)" oninput="onSearchInput()" onkeydown="onSearchKeydown(event)" autocomplete="off" aria-describedby="searchStatus">
<button type="button" class="search-clear" id="searchClear" onclick="clearToolSearch()" aria-label="검색어 지우기">×</button>
</div>
<div class="search-status" id="searchStatus" role="status" aria-live="polite"></div>
<!-- 최근 사용 섹션 -->
<div class="section-label" id="recentLabel">🕐 최근 사용</div>
<div class="tools-grid" id="recentGrid"></div>
<!-- 즐겨찾기 섹션 -->
<div class="section-label" id="favLabel">⭐ 즐겨찾기</div>
<div class="fav-drop-zone" id="favDropZone">
<div class="tools-grid" id="favGrid"></div>
</div>
<!-- 전체 도구 -->
<div class="view-controls">
<div class="section-label visible" style="margin:0;padding:0">📦 검증된 업무 도구</div>
<div class="view-toggle" id="viewToggle">
<button id="viewCard" class="active" onclick="switchView('card')"><span>카드</span></button>
<button id="viewCat" onclick="switchView('category')"><span>카테고리</span></button>
</div>
</div>
<div class="tools-grid" id="toolsGrid">
<a href="https://119.teemozipsa.com/" class="tool-card" data-keywords="119 소방 구급 현장 출동 응급실 병상 소화전 소방용수 대피소 재난 안전" data-category="web">
<div class="tool-icon">🚒</div>
<div class="tool-info"><div class="tool-name">119 현장 지원 도구</div><div class="tool-desc">소방·구급 현장을 위한 실시간 정보 대시보드</div></div>
</a>
<a href="/special-chars/" class="tool-card" data-keywords="특수 문자 이모지 특수기호 유니코드 기호 복사" data-category="writing">
<div class="tool-icon">⌨️</div>
<div class="tool-info"><div class="tool-name">특수문자 & 이모지</div><div class="tool-desc">클릭 한 번으로 특수 문자·이모지 복사</div></div>
</a>
<a href="/special-chars/char-counter/" class="tool-card" data-keywords="글자 수 계산기 바이트 텍스트 카운터 단어 문자수 이력서 자소서 문서" data-category="writing">
<div class="tool-icon">📏</div>
<div class="tool-info"><div class="tool-name">글자 수 계산기</div><div class="tool-desc">글자·바이트·단어 수 실시간 계산</div></div>
</a>
<a href="/special-chars/date-calc/" class="tool-card" data-keywords="날짜 계산기 디데이 D-Day 기념일 마감일 일수" data-category="schedule">
<div class="tool-icon">📅</div>
<div class="tool-info"><div class="tool-name">날짜/D-Day 계산기</div><div class="tool-desc">D-Day 계산, 날짜 더하기·빼기</div></div>
</a>
<a href="/special-chars/timezone-conv/" class="tool-card" data-keywords="시차 타임존 시간 변환 세계시간 해외 회의 timezone 뉴욕 런던 서울 도쿄 LA" data-category="schedule">
<div class="tool-icon">🌍</div>
<div class="tool-info"><div class="tool-name">타임존 변환기</div><div class="tool-desc">세계 주요 도시 시간 변환·시차 확인</div></div>
</a>
<a href="/special-chars/biz-day-calc/" class="tool-card" data-keywords="영업일 근무일 워킹데이 업무일 납기 마감 공휴일 business day 주말 제외" data-category="schedule">
<div class="tool-icon">🏢</div>
<div class="tool-info"><div class="tool-name">영업일 계산기</div><div class="tool-desc">2024~2027 공휴일·주말 제외 날짜 계산</div></div>
</a>
<a href="/special-chars/quick-reply/" class="tool-card" data-keywords="빠른 답장 메신저 이메일 템플릿 복사 문구 업무" data-category="writing">
<div class="tool-icon">💬</div>
<div class="tool-info"><div class="tool-name">빠른 답장 도구</div><div class="tool-desc">자주 쓰는 답장 문구 저장 & 빠른 복사</div></div>
</a>
<a href="/special-chars/speech-timer/" class="tool-card" data-keywords="발표시간 계산기 스크립트 프레젠테이션 회의 발표 시간 말하기 속도 speech" data-category="writing">
<div class="tool-icon">🎤</div>
<div class="tool-info"><div class="tool-name">발표시간 계산기</div><div class="tool-desc">스크립트 붙여넣기 → 예상 발표 시간 자동 계산</div></div>
</a>
<a href="/special-chars/qr-code/" class="tool-card" data-keywords="QR 코드 생성기 큐알 바코드 URL 명함 안내문 링크 qr code" data-category="web">
<div class="tool-icon">📷</div>
<div class="tool-info"><div class="tool-name">QR 코드 생성기</div><div class="tool-desc">오류 복원 수준·스캔 여백을 갖춘 QR 생성</div></div>
</a>
<a href="/special-chars/image-compress/" class="tool-card" data-keywords="이미지 용량 줄이기 사진 압축 리사이즈 이메일 첨부 업로드 jpg png 최적화" data-category="files">
<div class="tool-icon">🗜️</div>
<div class="tool-info"><div class="tool-name">이미지 용량 줄이기</div><div class="tool-desc">브라우저에서 바로 사진 용량 압축</div></div>
</a>
<a href="/special-chars/wage-calc/" class="tool-card" data-keywords="시급 월급 연봉 환산기 급여 계산기 최저시급 알바 wage salary" data-category="numbers">
<div class="tool-icon">💵</div>
<div class="tool-info"><div class="tool-name">시급 환산기</div><div class="tool-desc">시급·월급·연봉 자유롭게 환산</div></div>
</a>
<a href="/special-chars/utm-builder/" class="tool-card" data-keywords="UTM 파라미터 구글 애널리틱스 마케팅 캠페인 추적 링크 utm_source utm_medium" data-category="web">
<div class="tool-icon">🔗</div>
<div class="tool-info"><div class="tool-name">UTM 생성기</div><div class="tool-desc">마케팅 캠페인 URL에 UTM 추적 파라미터 추가</div></div>
</a>
<a href="/special-chars/pdf-tool/" class="tool-card" data-keywords="PDF 합치기 나누기 회전 순서 워터마크 업무 문서 페이지 merge split" data-category="files">
<div class="tool-icon">📄</div>
<div class="tool-info"><div class="tool-name">PDF 도구</div><div class="tool-desc">PDF 합치기·나누기·회전·워터마크</div></div>
</a>
<a href="/special-chars/discount-calc/" class="tool-card" data-keywords="할인 세금 부가세 VAT 가격 계산기 쇼핑 견적 공급가액 discount tax 퍼센트" data-category="numbers">
<div class="tool-icon">🏷️</div>
<div class="tool-info"><div class="tool-name">할인/세금 계산기</div><div class="tool-desc">할인율·부가세 적용 최종 가격 계산</div></div>
</a>
<a href="/special-chars/percent-calc/" class="tool-card" data-keywords="퍼센트 계산기 비율 변화율 증가율 증감률 보고서 percent calculator 백분율 비례" data-category="numbers">
<div class="tool-icon">🔢</div>
<div class="tool-info"><div class="tool-name">퍼센트 계산기</div><div class="tool-desc">A의 B%·변화율·비율·역산 한 번에</div></div>
</a>
<a href="/special-chars/timer/" class="tool-card" data-keywords="타이머 스톱워치 카운트다운 회의 집중 뽀모도로 랩 알람 timer stopwatch 시간 측정" data-category="schedule">
<div class="tool-icon">⏱️</div>
<div class="tool-info"><div class="tool-name">타이머/스톱워치</div><div class="tool-desc">카운트다운 타이머 + 랩 기록 스톱워치</div></div>
</a>
<a href="/special-chars/password-gen/" class="tool-card" data-keywords="비밀번호 생성기 패스워드 암호 보안 password generator 랜덤" data-category="web">
<div class="tool-icon">🔐</div>
<div class="tool-info"><div class="tool-name">비밀번호 생성기</div><div class="tool-desc">안전한 랜덤 비밀번호 즉시 생성</div></div>
</a>
<a href="/special-chars/base64-tool/" class="tool-card" data-keywords="Base64 인코더 디코더 인코딩 디코딩 개발 텍스트 이미지 변환 base64 encoder decoder" data-category="web">
<div class="tool-icon">🔣</div>
<div class="tool-info"><div class="tool-name">Base64 인코더/디코더</div><div class="tool-desc">텍스트·이미지를 Base64로 변환</div></div>
</a>
<a href="/special-chars/image-format-converter/" class="tool-card" data-keywords="이미지 포맷 변환 JPG PNG WebP GIF 업무 파일 형식 image format converter" data-category="files">
<div class="tool-icon">🖼️</div>
<div class="tool-info"><div class="tool-name">이미지 포맷 변환기</div><div class="tool-desc">이미지를 정적 JPG·PNG·WebP로 변환</div></div>
</a>
<a href="/special-chars/bg-remover/" class="tool-card" data-keywords="누끼 배경 제거 상품 이미지 배경제거 background removal AI 투명 png 따기" data-category="files">
<div class="tool-icon">✂️</div>
<div class="tool-info"><div class="tool-name">이미지 배경(누끼) 제거</div><div class="tool-desc">AI 배경 제거 · 서버 전송 없이 로컬 처리</div></div>
</a>
<a href="/special-chars/server-time/" class="tool-card" data-keywords="정밀 시계 접수 마감 배포 정각 알림 웹 응답 시간 지연 업무" data-category="schedule">
<div class="tool-icon">⏱️</div>
<div class="tool-info"><div class="tool-name">업무용 정밀 시계</div><div class="tool-desc">접수·배포 기준 시각과 웹 응답 대기 확인</div></div>
</a>
<a href="/special-chars/my-ip/" class="tool-card" data-keywords="공인 IP 아이피 IT 지원 방화벽 허용 VPN 접속 환경 복사" data-category="web">
<div class="tool-icon">🌐</div>
<div class="tool-info"><div class="tool-name">공인 IP·접속 환경</div><div class="tool-desc">IT 문의와 방화벽 요청에 필요한 정보 확인</div></div>
</a>
<a href="/special-chars/color-conv/" class="tool-card" data-keywords="색상 컬러 HEX RGB HSL 변환 디자인 시안 웹 문서 보색 유사색" data-category="web">
<div class="tool-icon">🎨</div>
<div class="tool-info"><div class="tool-name">실무 색상 코드 변환</div><div class="tool-desc">HEX·RGB·HSL 변환과 배색 후보 확인</div></div>
</a>
<a href="/special-chars/unit-conv/" class="tool-card" data-keywords="업무 단위 변환 견적 상품 인치 센티미터 파운드 킬로그램 면적 용량 거리" data-category="numbers">
<div class="tool-icon">📐</div>
<div class="tool-info"><div class="tool-name">업무 단위 변환기</div><div class="tool-desc">견적·상품 자료의 면적·무게·용량 통일</div></div>
</a>
<a href="/special-chars/calculator/" class="tool-card" data-keywords="업무 계산기 사칙연산 퍼센트 견적 보고서 키보드 빠른 계산" data-category="numbers">
<div class="tool-icon">🧮</div>
<div class="tool-info"><div class="tool-name">업무용 빠른 계산기</div><div class="tool-desc">견적과 보고서 수치를 키보드로 빠르게 확인</div></div>
</a>
<a href="/special-chars/compound-interest/" class="tool-card" data-keywords="성장률 복리 시나리오 매출 사용자 비용 생산량 반복 변화율 예측 비교" data-category="numbers">
<div class="tool-icon">📈</div>
<div class="tool-info"><div class="tool-name">성장률·복리 시나리오</div><div class="tool-desc">업무 지표의 반복 증가·감소값을 차트로 비교</div></div>
</a>
<a href="/special-chars/avg-price/" class="tool-card" data-keywords="가중 평균 단가 재고 자재 상품 입고 구매 수량 원가 평균 매입가" data-category="numbers">
<div class="tool-icon">📦</div>
<div class="tool-info"><div class="tool-name">가중 평균 단가 계산기</div><div class="tool-desc">기존·추가 구매분의 수량 가중 평균 계산</div></div>
</a>
<a href="/special-chars/prompt-gen/" class="tool-card" data-keywords="업무 AI 프롬프트 보고서 이메일 요약 아이디어 목적 배경 출력 형식" data-category="writing">
<div class="tool-icon">🤖</div>
<div class="tool-info"><div class="tool-name">업무용 AI 프롬프트</div><div class="tool-desc">목적·자료·출력 형식을 채워 요청문 완성</div></div>
</a>
<a href="/special-chars/sub-calc/" class="tool-card" data-keywords="업무 구독 SaaS 비용 예산 좌석 갱신 협업 AI 디자인 클라우드 월 합계" data-category="numbers">
<div class="tool-icon">💳</div>
<div class="tool-info"><div class="tool-name">구독·SaaS 비용 계산기</div><div class="tool-desc">팀 구독의 월 합계와 장기 갱신 예산 비교</div></div>
</a>
<a href="/special-chars/emoji-mixer/" class="tool-card" data-keywords="이모지 조합 이미지 사내 공지 캠페인 소셜 콘텐츠 마케팅 다운로드" data-category="writing">
<div class="tool-icon">🎨</div>
<div class="tool-info"><div class="tool-name">콘텐츠용 이모지 조합</div><div class="tool-desc">공지·캠페인용 이모지 조합 이미지 찾기</div></div>
</a>
<a href="/special-chars/gpa-calc/" class="tool-card" data-keywords="GPA 학점 평균 채용 지원 서류 교육 이수 성적 가중 평균 4.5 4.3" data-category="numbers">
<div class="tool-icon">🎓</div>
<div class="tool-info"><div class="tool-name">채용·교육 GPA 계산</div><div class="tool-desc">과목별 학점·등급의 가중 평균 사전 확인</div></div>
</a>
<a href="/special-chars/loan-calc/" class="tool-card" data-keywords="재무 검토 대출 상환 비교 원리금균등 원금균등 만기일시 월 납입 총 이자" data-category="numbers">
<div class="tool-icon">🏦</div>
<div class="tool-info"><div class="tool-name">대출 상환 방식 비교</div><div class="tool-desc">같은 조건의 월 납입금·총이자 구조 비교</div></div>
</a>
<a href="/special-chars/korean-english-converter/" class="tool-card" data-keywords="한영 타자 복구 키보드 오타 영타 한타 메신저 문서 두벌식 변환" data-category="writing">
<div class="tool-icon">⌨️</div>
<div class="tool-info"><div class="tool-name">업무용 한영 타자 복구</div><div class="tool-desc">잘못 선택한 키보드 언어 입력을 즉시 복원</div></div>
</a>
<a href="/special-chars/fuel-calc/" class="tool-card" data-keywords="출장 유류비 교통비 거리 연비 유가 왕복 정산 분담 비용" data-category="numbers">
<div class="tool-icon">⛽</div>
<div class="tool-info"><div class="tool-name">출장 유류비 계산기</div><div class="tool-desc">거리·연비·적용 유가로 출장 비용 예상</div></div>
</a>
<a href="/special-chars/broker-fee-calc/" class="tool-card" data-keywords="부동산 실무 중개보수 상한 수수료 매매 전세 월세 주택 오피스텔 계약" data-category="numbers">
<div class="tool-icon">🏠</div>
<div class="tool-info"><div class="tool-name">중개보수 상한 계산</div><div class="tool-desc">서울 기준 계약 유형별 요율과 상한 확인</div></div>
</a>
<a href="/special-chars/taxi-calc/" class="tool-card" data-keywords="서울 출장 택시비 교통비 사전 결재 정산 심야 시계외 할증 예상" data-category="numbers">
<div class="tool-icon">🚕</div>
<div class="tool-info"><div class="tool-name">서울 출장 택시비 예상</div><div class="tool-desc">거리·저속 시간·할증을 반영한 참고 금액</div></div>
</a>
<a href="/special-chars/music-calc/" class="tool-card" data-keywords="영상 오디오 콘텐츠 제작 BPM 딜레이 곡 길이 마디 음정 주파수 키 변환" data-category="files">
<div class="tool-icon">🎵</div>
<div class="tool-info"><div class="tool-name">영상·오디오 제작 계산</div><div class="tool-desc">BPM·딜레이·곡 길이·음정 제작값 확인</div></div>
</a>
</div>
<!-- 카테고리 뷰 (기본 숨김) -->
<div id="categoryView"></div>
<div style="max-width:960px;margin:0 auto;padding:0 20px 16px;">
<button class="faq-toggle-btn" id="toolsToggleBtn" onclick="toggleToolsSection()">전체 도구 접기 ▲</button>
</div>
<div class="no-results" id="noResults">🔍 검색 결과가 없습니다</div>
<section class="service-principles" aria-labelledby="principlesTitle">
<div class="content-heading">
<h2 id="principlesTitle">도구가 늘어날수록 기준도 함께 쌓입니다</h2>
<p>새 기능을 무작정 공개하지 않고 실제 업무 목적, 처리 범위, 예외 상황과 검증 방법을 함께 관리합니다.</p>
</div>
<div class="principle-grid">
<div class="principle-card"><strong>업무 문제부터 정의</strong><span>누가 언제 무엇을 끝내기 위해 쓰는지 설명할 수 있는 도구를 만듭니다.</span></div>
<div class="principle-card"><strong>브라우저 로컬 우선</strong><span>파일과 입력값은 가능한 한 기기 안에서 처리하고, 네트워크 사용은 페이지에 밝힙니다.</span></div>
<div class="principle-card"><strong>검증 후 검색 공개</strong><span>계산식·경계값·접근성·브라우저 동작과 안내 콘텐츠를 확인한 도구만 검색 대상에 포함합니다.</span></div>
</div>
<p style="margin-top:12px;font-size:12px;color:var(--text-muted)">자세한 절차는 <a class="standards-link" href="/tool-standards.html">도구 제작·검증 기준</a>에서 공개합니다.</p>
</section>
<!-- 팁 섹션 -->
<div class="tip-section">
<div class="tip-card">
<div class="tip-icon">💡</div>
<div class="tip-text"><span class="tip-label">알고 계셨나요?</span> <span id="tipContent"></span></div>
</div>
</div>
</main>
<div class="home-toast" id="homeToast" role="status" aria-live="polite" aria-atomic="true" aria-hidden="true" inert>
<span id="homeToastMessage"></span>
<button type="button" id="homeToastUndo" disabled>실행 취소</button>
</div>
<footer>
<div class="footer-links">
<a href="https://www.instagram.com/seon_7yu/" target="_blank" rel="noopener">
<svg style="width:14px;height:14px;" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z" clip-rule="evenodd"/></svg>
<span>@seon_7yu</span>
</a>
<span style="color:#475569;">·</span>
<a href="https://ctee.kr/place/teemozipsa/post/2" target="_blank" rel="noopener">
<span style="line-height:1;margin-bottom:2px">☕</span> <span>후원하기</span>
</a>
<span style="color:#475569;">·</span>
<a href="/about.html">사이트 소개</a>
<span style="color:#475569;">·</span>
<a href="/editorial-policy.html">편집정책</a>
<span style="color:#475569;">·</span>
<a href="/tool-standards.html">도구 제작·검증 기준</a>
<span style="color:#475569;">·</span>
<a href="/contact.html">문의</a>
<span style="color:#475569;">·</span>
<a href="/privacy.html">개인정보처리방침</a>
<span style="color:#475569;">·</span>
<a href="/en/"><span style="font-size:13px;line-height:1;margin-bottom:1px">🌐</span> <span>English</span></a>
</div>
© 2026 teemoZipsa. All rights reserved.
</footer>
<script>
// === localStorage 안전 래퍼 ===
function safeGet(key, fallback) { try { return localStorage.getItem(key); } catch(e) { return fallback !== undefined ? fallback : null; } }
function safeSet(key, val) { try { localStorage.setItem(key, val); return true; } catch(e) { return false; } }
function safeRemove(key) { try { localStorage.removeItem(key); return true; } catch(e) { return false; } }
function safeJsonArray(key) { try { const value = JSON.parse(safeGet(key) || '[]'); return Array.isArray(value) ? value.filter(item => typeof item === 'string') : []; } catch(e) { return []; } }
function safeJsonObject(key) { try { const value = JSON.parse(safeGet(key) || '{}'); return value && typeof value === 'object' && !Array.isArray(value) ? value : {}; } catch(e) { return {}; } }
function canUseLocalStorage() { const key = '__storage_test__' + Math.random(); return safeSet(key, '1') && safeRemove(key); }
// === 오늘의 정보 위젯 ===
const FB_DB = 'https://teemozipsa-default-rtdb.firebaseio.com';
let globalVisitCount = null;
function normalizeVisitCount(value) {
const count = Number(value);
return Number.isFinite(count) && count >= 0 ? Math.floor(count) : 0;
}
async function readVisitCount() {
const response = await fetch(FB_DB + '/stats/visitCount.json', { cache: 'no-store' });
if (!response.ok) throw new Error('visit count read failed');
return normalizeVisitCount(await response.json());
}
async function incrementVisitCountAtomic() {
const url = FB_DB + '/stats/visitCount.json';
for (let attempt = 0; attempt < 4; attempt++) {
const currentResponse = await fetch(url, { headers: { 'X-Firebase-ETag': 'true' }, cache: 'no-store' });
if (!currentResponse.ok) throw new Error('visit count read failed');
const etag = currentResponse.headers.get('ETag');
const nextCount = normalizeVisitCount(await currentResponse.json()) + 1;
if (!etag) throw new Error('visit count ETag unavailable');
const updateResponse = await fetch(url, {
method: 'PUT',
headers: { 'Content-Type': 'application/json', 'If-Match': etag },
body: JSON.stringify(nextCount)
});
if (updateResponse.status === 412) continue;
if (!updateResponse.ok) throw new Error('visit count update failed');
return normalizeVisitCount(await updateResponse.json());
}
throw new Error('visit count update conflicted repeatedly');
}
async function updateVisitCount() {
const lastVisitKey = 'last_visit_timestamp';
const now = Date.now();
const oneDay = 24 * 60 * 60 * 1000;
const storageAvailable = canUseLocalStorage();
const lastVisit = Number(safeGet(lastVisitKey));
const recentlyCounted = storageAvailable && Number.isFinite(lastVisit) && lastVisit > 0 && lastVisit <= now && (now - lastVisit) <= oneDay;
try {
if (storageAvailable && !recentlyCounted) {
globalVisitCount = await incrementVisitCountAtomic();
safeSet(lastVisitKey, String(now));
} else {
globalVisitCount = await readVisitCount();
}
} catch (error) {
try { globalVisitCount = await readVisitCount(); } catch (readError) { globalVisitCount = null; }
}
updateVisitDisplay();
}
(function initVisitCounter() {
const run = () => updateVisitCount();
if (navigator.locks && typeof navigator.locks.request === 'function') navigator.locks.request('teemozipsa-visit-counter', run).catch(() => run());
else run();
})();
function updateVisitDisplay() {
const el = document.getElementById('todayRemain');
if (!el) return;
const now = new Date();
const y = now.getFullYear();
const startOfYear = new Date(y, 0, 1);
const dayOfYear = Math.ceil((now - startOfYear) / 86400000);
const isLeap = (y % 4 === 0 && y % 100 !== 0) || y % 400 === 0;
const remaining = (isLeap ? 366 : 365) - dayOfYear;
const visitText = globalVisitCount !== null ? ` · 총 방문 ${globalVisitCount.toLocaleString()}회` : '';
el.textContent = `올해 ${remaining}일 남음${visitText}`;
}
function updateToday() {
const now = new Date();
const weekdays = ['일', '월', '화', '수', '목', '금', '토'];
const y = now.getFullYear(), m = now.getMonth() + 1, d = now.getDate();
document.getElementById('todayDate').textContent = `${y}년 ${m}월 ${d}일 ${weekdays[now.getDay()]}요일`;
const startOfYear = new Date(y, 0, 1);
const dayOfYear = Math.ceil((now - startOfYear) / 86400000);
document.getElementById('todaySub').textContent = `${y}년의 ${dayOfYear}번째 날`;
const hh = String(now.getHours()).padStart(2, '0');
const mm2 = String(now.getMinutes()).padStart(2, '0');
const ss = String(now.getSeconds()).padStart(2, '0');
document.getElementById('todayClock').textContent = `${hh}:${mm2}:${ss}`;
updateVisitDisplay();
}
updateToday();
setInterval(updateToday, 1000);
// === 팁 로테이션 ===
const TIPS = [
'한글 한 글자는 UTF-8에서 보통 3바이트입니다. 시스템 제한은 글자 수와 바이트 수를 구분해 확인하세요.',
'QR 코드에 담을 수 있는 데이터량은 내용의 문자 종류와 오류 복원 수준에 따라 달라집니다.',
'PDF 용량은 포함된 이미지의 해상도와 압축 방식에 크게 좌우됩니다.',
'D-Day와 영업일 계산은 시작일 포함 여부를 먼저 정해야 같은 조건으로 재현할 수 있습니다.',
'한국 표준시(KST)는 UTC+9입니다. 해외 회의 일정에는 도시 이름과 시간대를 함께 적는 편이 안전합니다.',
'20% 증가한 값을 다시 20% 줄이면 원래 값으로 돌아오지 않습니다. 기준값이 달라지기 때문입니다.',
'부가세 포함 금액을 나눌 때는 원 단위 반올림 또는 절사 규칙에 따라 결과가 달라질 수 있습니다.',
'UTM 파라미터 값은 팀 안에서 소문자·구분자 규칙을 통일해야 캠페인 보고서가 덜 쪼개집니다.',
'WebP의 용량 절감 폭과 화질은 원본 이미지, 품질 설정과 투명도 여부에 따라 달라집니다.',
'투명 배경이 필요하면 PNG 또는 WebP를 사용하고, 일반 사진은 JPG나 WebP가 대체로 효율적입니다.',
'Base64는 바이너리 원본보다 데이터 크기가 대략 33% 늘어나므로 큰 파일 전달에는 적합하지 않습니다.',
'브라우저 로컬 처리는 파일을 서버에 보내지 않을 수 있지만, 다운로드 파일과 클립보드 기록은 사용자가 직접 관리해야 합니다.'
];
document.getElementById('tipContent').textContent = TIPS[Math.floor(Math.random() * TIPS.length)];
// === 업데이트 배너 ===
const BANNER_ID = 'feedback-v1';
if (!safeGet('banner_dismissed_' + BANNER_ID)) {
document.getElementById('updateBanner').style.display = '';
}
function dismissBanner() {
document.getElementById('updateBanner').style.display = 'none';
safeSet('banner_dismissed_' + BANNER_ID, '1');
}
// === 즐겨찾기 ===
function reconcileStoredToolLinks(key, maxItems = Infinity) {
const stored = safeJsonArray(key);
const hrefByPath = new Map([...document.querySelectorAll('#toolsGrid .tool-card')].map(card => {
const url = new URL(card.href, window.location.href);
return [url.pathname, card.href];
}));
const reconciled = [];
stored.forEach(value => {
try {
const canonicalHref = hrefByPath.get(new URL(value, window.location.href).pathname);
if (canonicalHref && !reconciled.includes(canonicalHref)) reconciled.push(canonicalHref);
} catch (error) {}
});
const limited = reconciled.slice(0, maxItems);
if (JSON.stringify(limited) !== JSON.stringify(stored)) safeSet(key, JSON.stringify(limited));
return limited;
}
let favorites = reconcileStoredToolLinks('favorites');
let homeToastTimer = null;
let homeToastUndoAction = null;
function hideHomeToast() {
const toast = document.getElementById('homeToast');
toast.classList.remove('visible');
toast.setAttribute('aria-hidden', 'true');
toast.setAttribute('inert', '');
document.getElementById('homeToastUndo').disabled = true;
homeToastUndoAction = null;
}
function showHomeToast(message, undoAction) {
const toast = document.getElementById('homeToast');
toast.removeAttribute('aria-hidden');
toast.removeAttribute('inert');
document.getElementById('homeToastUndo').disabled = false;
document.getElementById('homeToastMessage').textContent = message;
homeToastUndoAction = undoAction;
clearTimeout(homeToastTimer);
toast.classList.add('visible');
homeToastTimer = setTimeout(hideHomeToast, 5000);
}
document.getElementById('homeToastUndo').addEventListener('click', function() {
const undoAction = homeToastUndoAction;
clearTimeout(homeToastTimer);
hideHomeToast();
if (undoAction) undoAction();
});
function setFavoriteState(href, shouldFavorite, announce = true) {
const wasFavorite = favorites.includes(href);
if (wasFavorite === shouldFavorite) return;
if (shouldFavorite) favorites.push(href);
else favorites = favorites.filter(value => value !== href);
safeSet('favorites', JSON.stringify(favorites));
renderFavButtons();
renderFavGrid();
refreshCategoryViewIfNeeded();
const query = document.getElementById('searchInput').value.trim().toLowerCase();
if (query) filterCards(query);
if (announce) {
showHomeToast(
shouldFavorite ? '즐겨찾기에 추가했습니다. 상단 목록에서 바로 찾을 수 있어요.' : '즐겨찾기에서 제거했습니다.',
() => setFavoriteState(href, !shouldFavorite, false)
);
}
}
function toggleFav(href, e) {
if (e) {
e.preventDefault();
e.stopPropagation();
}
setFavoriteState(href, !favorites.includes(href));
}
function renderFavButtons() {
document.querySelectorAll('#toolsGrid .tool-card').forEach(card => {
let btn = card.querySelector('.fav-btn');
if (!btn) {
btn = document.createElement('button');
btn.className = 'fav-btn';
btn.onclick = (e) => toggleFav(card.href, e);
card.appendChild(btn);
}
const isFav = favorites.includes(card.href);
btn.textContent = isFav ? '★' : '☆';
btn.classList.toggle('active', isFav);
btn.setAttribute('aria-label', isFav ? '즐겨찾기 해제' : '즐겨찾기에 추가');
// 즐겨찾기된 도구는 전체 도구에서 숨기기
card.style.display = isFav ? 'none' : '';
});
}
function renderFavGrid() {
const grid = document.getElementById('favGrid');
const label = document.getElementById('favLabel');
grid.innerHTML = '';
if (favorites.length === 0) { label.classList.remove('visible'); return; }
const allCards = document.querySelectorAll('#toolsGrid .tool-card');
favorites.forEach(href => {
for (const card of allCards) {
if (card.href === href) {
const clone = card.cloneNode(true);
clone.style.display = ''; // cloneNode가 display:none도 복사하므로 리셋
clone.querySelector('.fav-btn')?.remove();
// 즐겨찾기 카드에 별 해제 버튼 추가
const unfavBtn = document.createElement('button');
unfavBtn.className = 'fav-btn active';
unfavBtn.textContent = '★';
unfavBtn.setAttribute('aria-label', '즐겨찾기 해제');
unfavBtn.onclick = (e) => toggleFav(href, e);
clone.appendChild(unfavBtn);
clone.onclick = (e) => { if (!e.target.closest('.fav-btn')) trackRecent(href); };
grid.appendChild(clone);
break;
}
}
});