.section_container {
    padding: 40px 0 80px !important;
    margin-top: 80px;
}
/* 3. 面包屑导航（百望内页风格） */
.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F5F7FA;
}

    .breadcrumb a {
        color: #666;
    }

        .breadcrumb a:hover {
            color: #1E88E5;
        }

    .breadcrumb span {
        color: #999;
        margin: 0 8px;
    }
/* 经典客户区域 */
.client-title {
    margin-bottom: 60px;
}

.client-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .client-item:hover {
        box-shadow: 0 4px 16px rgba(30, 136, 229, 0.1);
        transform: translateY(-3px);
    }

.client-logo {
    width: 50px;
    height: 50px;
    background: #F5F7FA;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .client-logo img {
        max-width: 80%;
        max-height: 80%;
    }

.client-name {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}
/* 8. 移动端响应式适配（补充） */
@media (max-width: 768px) {
    .container {
        width: 100%;
    }

    .news-title {
        font-size: 24px;
    }

    .xus_event h5 {
        font-size: 16px;
    }

    .xus_event p {
        font-size: 13px;
        -webkit-line-clamp: 2; /* 移动端摘要减少行数 */
    }

    .footer-nav {
        gap: 30px;
    }
}