/* Banner样式 */
.solution-banner {
    height: 600px;
    background: url('../assets/solution-banner.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
}

.banner-content h2 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 40px;
}

.banner-button {
    padding: 12px 40px;
    font-size: 18px;
    color: #fff;
    background: #1677FF;
    border: none;
    border-radius: 24px;
    cursor: pointer;
}

/* 整体背景色 */
.pagewrap {
    background: #FAFCFF;
}

/* 用户展示区域 */
.users-section {
    padding: 100px 0 0;
    background: #FAFCFF;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 52px;
    font-weight: 600;
}

.users-grid {
    width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.user-item {
    display: flex;
    align-items: center;
    padding: 24px;
    width: 386px;
    height: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 18px;
}

.user-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 500;
}

.user-info p {
    font-size: 16px;
    color: #999;
}

.user-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* 案例展示区域 */
.cases-section {
    padding: 100px 0;
    background: #FAFCFF;
}

/* 案例卡片背景保持白色 */
.case-item {
    background: #fff;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.06);
}

/* ... 其他样式保持不变 ... */ 