/* 为老服务页面专用样式 */


/* 标题部分 */
.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;
    display: flex;
}

.laofu-item:hover {
    transform: translateY(-5px);
}

.laofu-image {
    width: 200px;
    height: 260px;
    /* margin-bottom: 8px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    overflow: hidden;
}

.policy-share {
    display: flex;
    align-items: center;
    margin-top: 10px;
    cursor: pointer;
    color: #F79C26;
}

.laofu-right {
    flex: 1;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.size-24 {
    font-size: 24px;
    font-weight: 600;
}

.bot {
    margin: 0 8px;
    color: #888;
}

.size-16 {
    font-size: 16px;
    font-weight: 400;
}

.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 {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 32px;
    padding-top: 52px;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .laofu-banner {
        height: 230px;
    }
    
    .title-bg h1 {
        font-size: 20px;
    }
    
    .laofu-image {
        width: 120px;
        height: 156px;
    }
    .laofu-content {
        padding-left: 15px;
    }

    .laofu-sm-title {
        padding-bottom: 12px;
        padding-top: 32px;
    }
}