현재진행프로젝트 개인정보처리방침 추가 작업

This commit is contained in:
2026-04-23 14:58:44 +09:00
parent 66c1853d9d
commit b1bcabaf6c
6 changed files with 1264 additions and 129 deletions

View File

@@ -2999,68 +2999,14 @@
box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
/* JS validateField 클래스 (.is-invalid / .is-valid) */
.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
border-color: #e53e3e;
box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
background-color: #fff8f8;
outline: none;
}
.form-input.is-valid,
.form-select.is-valid,
.form-textarea.is-valid {
border-color: #38a169;
box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.12);
}
/* 포커스 상태 강조 */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
outline: none;
border-color: #4a90d9;
box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.2);
}
.form-input.is-invalid:focus,
.form-select.is-invalid:focus,
.form-textarea.is-invalid:focus {
border-color: #e53e3e;
box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.25);
}
.form-error-msg {
font-size: 1.6rem;
color: #e53e3e;
display: none;
margin-top: 4px;
}
.form-error-msg.is-show,
.form-error-msg.visible {
display: flex;
align-items: center;
gap: 4px;
}
.form-error-msg.is-show::before,
.form-error-msg.visible::before {
content: '!';
display: inline-flex;
align-items: center;
justify-content: center;
width: 16px;
height: 16px;
min-width: 16px;
background: #e53e3e;
color: #fff;
border-radius: 50%;
font-size: 1.1rem;
font-weight: 700;
line-height: 1;
.form-error-msg.is-show {
display: block;
}
/* ── 반응형 ── */
@@ -3119,76 +3065,6 @@
/* ==============================
완료 모달
============================== */
#inquiryModal,
#careersModal {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
}
.inquiry-modal__backdrop {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
}
.inquiry-modal__box {
position: relative;
z-index: 1;
background: #fff;
border-radius: 16px;
padding: 48px 40px 40px;
width: min(440px, calc(100vw - 40px));
text-align: center;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.inquiry-modal__icon {
font-size: 56px;
color: #4caf50;
display: block;
margin-bottom: 16px;
}
.inquiry-modal__title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 12px;
color: #111;
}
.inquiry-modal__desc {
font-size: 1.5rem;
color: #555;
line-height: 1.7;
margin-bottom: 32px;
}
.inquiry-modal__close {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 40px;
background: #111;
color: #fff;
border: none;
border-radius: 8px;
font-size: 1.5rem;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
}
.inquiry-modal__close:hover {
background: #333;
}
/* ==============================
PG등록
============================== */
@@ -4039,3 +3915,210 @@ textarea.evpg-ctrl { min-height: 130px; resize: vertical }
.smap-home-row { flex-direction: column }
.smap-home-btn { width: 100%; max-width: 320px; justify-content: center }
}
/* ==========================
* 진행프로젝트 — 카드 그리드
* ========================== */
/* 패널 헤더 (제목 + 총 건수) */
.pj-panel-head {
display: flex;
align-items: center;
justify-content: space-between;
padding-bottom: clamp(20px, 2vw, 30px);
margin-bottom: clamp(24px, 2.5vw, 36px);
border-bottom: 1px solid var(--bd-color);
}
.pj-panel-head .dot-tit { padding-bottom: 0 } /* dot-tit 자체 padding 상쇄 */
.pj-panel-count {
font-size: 1.6rem;
color: var(--cont2);
font-weight: 400;
white-space: nowrap;
}
.pj-panel-count strong {
font-size: 2.4rem;
font-weight: 700;
color: var(--primary);
margin-right: 2px;
}
/* 카드 그리드 */
.pj-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
/* 카드 */
.pj-card {
display: flex;
flex-direction: column;
border: 1px solid var(--bd-color);
border-radius: 14px;
padding: 22px 22px 18px;
background: #fff;
position: relative;
transition: box-shadow 0.25s ease, transform 0.25s ease;
overflow: hidden;
}
.pj-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), #6dceff);
opacity: 0;
transition: opacity 0.25s ease;
}
.pj-card:hover {
box-shadow: 0 8px 28px rgba(19, 152, 248, 0.05);
transform: translateY(-3px);
}
.pj-card:hover::before { opacity: 1; }
.pj-card__top {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 10px;
margin-bottom: 14px;
}
/* 상태 뱃지 */
.pj-badge {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 4px 10px;
border-radius: 20px;
font-size: 1.4rem;
font-weight: 600;
white-space: nowrap;
flex-shrink: 0;
}
.pj-badge::before {
content: '';
display: block;
width: 5px;
height: 5px;
border-radius: 50%;
flex-shrink: 0;
}
.pj-badge--pgd {
background: rgba(255, 127, 36, 0.1);
color: rgba(255, 106, 0, 1);
}
.pj-badge--pgd::before { background:rgba(255, 106, 0, 1); }
.pj-badge--done {
background: rgba(19, 152, 248, 0.1);
color: var(--primary);
}
.pj-badge--done::before { background: var(--primary); }
.pj-badge--ing {
background: rgba(34, 197, 94, 0.1);
color: #16a34a;
}
.pj-badge--ing::before {
background: #22c55e;
animation: pjBlink 1.4s infinite;
}
@keyframes pjBlink {
0%, 100% { opacity: 1; }
50% { opacity: 0.2; }
}
/* 업체명 */
.pj-card__company {
font-size: clamp(1.6rem, calc(0.27vw + 1.35rem), 2rem);
font-weight: 700;
color: var(--dark);
letter-spacing: -0.02em;
line-height: 1.35;
margin-bottom: 4px;
}
/* 업무 유형 */
.pj-card__type {
font-size: 1.5rem;
color: var(--cont2);
font-weight: 400;
line-height: 1.5;
margin-bottom: 20px;
word-break: keep-all;
}
/* 정보 목록 */
.pj-card__info {
display: flex;
flex-direction: column;
gap: 7px;
list-style: none;
padding: 0;
margin: 0;
margin-bottom:10px;
flex: 1; /* 카드 높이 균일하게 */
}
.pj-card__info li {
display: flex;
align-items: center;
gap: 15px;
font-size: 1.4rem;
}
.pj-key {
flex-shrink: 0;
width: 64px;
color: #aaa;
font-weight: 500;
}
.pj-val {
color: var(--cont1);
font-weight: 400;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* 카드 하단 (날짜 + 링크) */
.pj-card__foot {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 16px;
padding-top: 14px;
border-top: 1px solid var(--bd-color);
}
.pj-date {
font-family: var(--e-font);
font-size: 1.25rem;
color: #bbb;
font-weight: 400;
}
.pj-link {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 1.3rem;
font-weight: 600;
color: var(--primary);
text-decoration: none !important;
transition: gap 0.2s ease;
}
.pj-link:hover { gap: 7px; }
.pj-link svg {
width: 13px;
height: 13px;
flex-shrink: 0;
}
/* ── 반응형 ── */
@media (max-width: 1200px) {
.pj-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
.pj-grid { grid-template-columns: 1fr; }
.pj-panel-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}