
/* 标题部分 */
.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;
}

.mb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mb-name {
    font-weight: 600;
    font-size: 20px;
    color: #111111;
}
.bor {
    width: 32px;
    height: 2px;
    background: #F79C26;
    margin: 8px 0;
}

.size-14 {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}

.bor-2 {
    width: 100%;
    height: 1px;
    border: 1px solid #E5E5E5;
    margin: 16px 0;
}

.mb-avat {
    width: 240px;
    height: 313px;
    background: #FFF1F1;
}
.mb-avat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(16px, 16px);
}

.mb-info {
    padding-top: 28px;
}

.pc-content {
    display: flex;
    /* padding-left: 30px; */
}

.pc-right {
    flex: 1;
    margin-left: 72px;
}

.pc-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 28px;
    color: #111111;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 20px;
}

.content {
    padding-top: 19px;
}

.bot {
    color: #F79C26;
    margin: 0 16px;
}

.size-18 {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}

.pc-avat {
    width: 300px;
    height: 410px;
    background: #FFF1F1;
}

.pc-avat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(32px, 32px);
}

/* 图片网格样式 */
.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;
    }
}