유류비 지원금 총정리|지급 대상, 신청 방법, 금액 안내
2025년 유류비 지원금 총정리|지급 대상, 신청 방법, 금액 안내치솟는 유가 속에서 교통비와 생계비 부담을 덜어주는 2025년 유류비 지원금!누가, 어떻게 받을 수 있는지 상세히 안내해드립니다.✅ 유류비 지원금이란?저소득층, 장애인, 농어업인, 화물차주 등을 대상으로정부나 지자체가 교통·난방용 유류비 일부를 현금 또는 포인트로 지원하는 제도입니다.📌 2025년 주요 지원 대상기초생활수급자, 차상위계층농어업인 (영농·어업 활동에 필요한 유류)장애인 차량 보유자화물차, 영업용 차량 운전자폐기물 수거차량, 택시 기사 등💰 지원 금액 및 지급 방식1인당 연간 최대 20만 원 ~ 60만 원지역화폐, 유류비 카드 포인트, 현금 등으로 지급일부 지자체는 추가 지원 시행 (지자체별 상이)📝 신청 방법거주지 주민..
2025. 6. 15.
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;
}
}