/* 为老服务页面专用样式 */




@media (max-width: 768px) {
    
    .title-bg h1 {
        font-size: 20px;
    }
    
    .laofu-image {
        height: 150px;
    }
}

@media (max-width: 576px) {
    
    .title-bg h1 {
        font-size: 18px;
    }
    
    .laofu-image {
        height: 120px;
    }
    
    .laofu-title {
        font-size: 13px;
    }
}

/* 标题部分 */
.title-section {
    margin-top: 10px;
}

.title-bg {
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 10px 20px;
    border-left: 4px solid #d82b2b;
}

.title-bg h1 {
    color: #d82b2b;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

/* 为老服务内容区域 */
.laofu-content {
    margin-top: 20px;
}

/* 图片网格样式 */
.laofu-item {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.laofu-item:hover {
    transform: translateY(-5px);
}

.laofu-image {
    width: 100%;
    height: 179px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    overflow: hidden;
}

.laofu-title {
    font-size: 18px;
    color: #333;
    white-space: wrap;
    /* 限制两行 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.laofu-sm-title {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

.laofu-sm-title img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    
    .title-bg h1 {
        font-size: 20px;
    }
    
    .laofu-image {
        height: 150px;
    }

    .laofu-content {
        padding-left: 15px;
    }
}