💸 2026년 최저임금 인상! 내 월급은 얼마나 오를까?
💰 1. 2026년 최저임금 인상, 얼마나 올랐을까?2026년 1월 1일부터 적용되는 최저임금은 시간당 9,860원으로 확정되었습니다.이는 2025년 대비 2.5% 인상된 금액으로, 월급 기준(주 40시간, 월 209시간)으로 환산하면 2,061,740원입니다.최저임금 인상은 고용노동부가 최저임금위원회의 심의를 거쳐 매년 8월에 결정되며,이후 다음 해 1월 1일부터 모든 사업장에 동일하게 적용됩니다.특히 2026년은 물가 상승률과 실질 소득 보장 문제가 반영되면서 소폭 인상이 이뤄졌습니다.최저임금은 직장인, 아르바이트, 플랫폼 노동자, 주부 재취업자까지 전방위에 영향을 주는 중요한 경제 지표입니다.📊 2. 시급 vs 월급, 2026년 최저임금 실수령액 계산하기2026년 최저임금(시급 9,860원)은 ..
2025. 12. 12.
📌공공 마이데이터 서비스 활용법 – 나의 정보를 한눈에 보는 방법 총정리
✅ 공공 마이데이터란? – 한눈에 보는 나의 공공정보2025년, 디지털 행정이 본격화되면서공공 마이데이터(MyData) 서비스가 많은 주목을 받고 있습니다.이 서비스는 한마디로👉 *“내가 정부·공공기관에 제공한 모든 정보를, 한 플랫폼에서 한눈에 확인하는 서비스”*입니다.복잡한 서류 요청 없이 한 번에 연금, 건강보험, 부동산, 세금, 가족관계 정보까지 열람할 수 있죠.이 글에서는 공공 마이데이터 서비스로 확인할 수 있는 정보 종류와실제 사용법, 주의할 점, 그리고 실사용 후기를 정리해드립니다.✅ 공공 마이데이터로 확인 가능한 정보 총정리▶ 주요 연계 기관 (2025년 기준 30여 곳 이상)분야정보 내용제공 기관건강/보험건강검진 이력, 병원 방문기록, 건보료 납부 내역국민건강보험공단연금/노후국민연금 납..
2025. 12. 9.
CSS 코드
/* Sliding Banner */
.customBannerArea {
position: relative;
overflow: hidden;
margin: 20px auto;
padding: 0 20px;
text-align: center;
}
.customBox {
position: relative;
overflow: hidden;
margin-bottom: 10px;
}
.customBox iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.customBox .backward {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
object-fit: cover;
}
.customBanner {
position: absolute;
top: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
.customBanner img.cover {
width: 100%;
height: 100% !important;
object-fit: cover;
opacity: 0.93;
}
.customBanner.active img {
box-shadow: none !important;
}
.customBanner.active a {
height: 100% !important;
}
/* ✅ 수정된 화살표 스타일 */
.customBanner .arrow {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
background-color: #2196f3;
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 16px;
font-weight: bold;
z-index: 10;
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
cursor: pointer;
}
.banner-bubble {
position: absolute;
top: 10px;
background-color: #bd0000;
height: 24px;
width: 77px;
color: white !important;
font-size: 0.75em !important;
border-radius: 5px;
padding-top: 2px;
line-height: 1.2rem !important;
}
.sliding-banner-300 .banner-bubble:after,
.sliding-banner-150 .banner-bubble:after,
.sliding-banner-250 .banner-bubble:after {
content: "";
position: absolute;
bottom: 0;
width: 0;
height: 0;
border: 10px solid transparent;
border-top-color: #bd0000;
border-bottom: 0;
border-left: 0;
margin-left: -2.5px;
margin-bottom: -5px;
}
.sliding-banner-280 .banner-bubble:after {
content: "";
position: absolute;
bottom: 0;
width: 0;
height: 0;
border: 10px solid transparent;
border-top-color: #bd0000;
border-bottom: 0;
border-right: 0;
margin-left: -45.5px;
margin-bottom: -5px;
}
.customBanner.active {
animation: customMv1 1.2s ease-out infinite;
}
@keyframes customMv1 {
0% {
transform: translate3d(-7%, 0, 0);
}
20% {
transform: translate3d(-10%, 0, 0);
}
40% {
transform: translate3d(-5%, 0, 0);
}
60% {
transform: translate3d(-10%, 0, 0);
}
80% {
transform: translate3d(-5%, 0, 0);
}
100% {
transform: translate3d(-7%, 0, 0);
}
}
@media (min-width: 1200px) {
.customBannerArea {
background-color: #ffffffc9;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 0px;
z-index: 1000;
text-align: center;
}
}
/* ✅ 반응형 대응 */
@media (max-width: 768px) {
.customBanner .arrow {
width: 28px;
height: 28px;
font-size: 18px;
right: 8px;
}
}