.business-values {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
}

.values-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.value-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: 600;
    color: rgba(24, 144, 255, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-icon i {
    font-size: 28px;
    color: #1890ff;
}

.value-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.value-stats {
    margin-bottom: 16px;
}

.value-stats .highlight {
    font-size: 48px;
    font-weight: 600;
    color: #1890ff;
    line-height: 1;
}

.value-stats .unit {
    font-size: 24px;
    color: #1890ff;
    margin-left: 4px;
}

.value-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 响应式布局 */
@media screen and (max-width: 992px) {
    .values-container {
        flex-direction: column;
        gap: 20px;
    }

    .value-card {
        padding: 30px;
    }

    .value-stats .highlight {
        font-size: 36px;
    }

    .value-stats .unit {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .business-values {
        padding: 60px 0;
    }
}