.users-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFFFFF, #F0F7FF);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* 浮动形状 */
.users-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(224, 242, 254, 0.5);
    top: 10%;
    left: 5%;
}

.users-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(186, 230, 253, 0.4);
    bottom: 15%;
    right: 10%;
}

.users-shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(224, 242, 254, 0.6);
    top: 40%;
    left: 45%;
}

/* 内容样式 */
.users-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.users-header {
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 60px;
}

.users-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #2C2C2C, #404040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.users-header .subtitle {
    font-size: 24px;
    opacity: 0.9;
    color: #404040;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* 用户案例网格 */
.users-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.user-case {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.user-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-image {
    flex: 0 0 120px;
    position: relative;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 图标样式 */
.icon-front {
    width: 80px;
    height: auto;
    position: relative;
    z-index: 1;
    transform: translateY(-55px);
}

.icon-back {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 2;
    transform: translate(10px, 0);
    opacity: 0.8;
}

.case-content {
    flex: 1;
}

.case-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 10px;
}

.case-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #404040;
}

/* 动画效果 */
.user-case {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 