재활병원 비용 정부지원 얼마나?
재활병원 비용 정부지원, 이렇게 받으면 수백만 원 아낍니다갑작스러운 질병이나 사고로 재활병원에 입원해야 하는 상황,치료보다 더 걱정되는 건 병원비입니다.하지만 정부에서는 재활병원 비용을 줄일 수 있는 여러 지원 제도를 마련해두고 있습니다.이 글에서는 실제 가능한 지원제도와 신청 방법, 조건, 실제 사례, 그리고 공식 출처까지 정리해드립니다. ✅ 재활병원 비용, 실제 어느 정도 드나?구분 월 평균 비용1인실 기준250만~400만 원4인실 기준 (건강보험 적용)본인부담 약 60만~100만 원도수치료 등 비급여 포함 시최대 450만 원 이상 가능 보건복지부 국립재활원 재활병원 바로가기 국립재활원 재활병원(공공재활의료지원, 지역사회중심재활, 사회복귀지원, WHO협력센터, 채움병동, 재활전문병원, 중앙보조..
2025. 6. 17.
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;
}
}