/* 用户切换弹窗样式 */
.user-option {
    @apply flex items-center justify-between p-3 border border-gray-200 rounded-lg transition-all duration-200 cursor-pointer;
}

.user-option.active {
    @apply border-blue-500 bg-blue-50;
}

.user-option:hover:not(.active) {
    @apply border-gray-300 bg-gray-50;
}

.user-select-btn {
    @apply px-3 py-1 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors text-sm;
}

.status-badge {
    @apply px-2 py-1 rounded-full text-xs font-medium;
}

/* 业务卡片样式 */
.business-card {
    @apply bg-white rounded-lg shadow-sm hover:shadow-md transition-all duration-300 border border-gray-200 overflow-hidden;
}

.business-card:hover {
    transform: translateY(-2px);
}

.business-card-header {
    @apply p-4 border-b border-gray-100 flex justify-between items-start;
}

.business-card-body {
    @apply p-4;
}

.business-card-footer {
    @apply p-3 border-t border-gray-100 flex justify-between items-center;
}

/* 弹窗动画 */
.modal-enter {
    transform: scale(0.95);
    opacity: 0;
}

.modal-enter-active {
    transform: scale(1);
    opacity: 1;
    transition: all 0.2s ease-out;
}

/* 成功提示 */
.success-toast {
    @apply fixed top-4 right-4 bg-green-500 text-white px-5 py-2 rounded-lg shadow-lg transform transition-all duration-300 z-50;
}

.success-toast.hide {
    transform: translateX(100%);
    opacity: 0;
}

/* 响应式卡片布局 */
@media (max-width: 640px) {
    .business-card {
        @apply mx-2;
    }
}

/* 加载动画 */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 收藏按钮动画 */
.favorite-btn {
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

/* 移动端优化 */
@media (max-width: 768px) {
    .container {
        @apply px-3;
    }
    
    .business-card-header {
        @apply p-3;
    }
    
    .business-card-body {
        @apply p-3;
    }
    
    .business-card-footer {
        @apply p-2;
    }
    .header-title {
       visibility: hidden;;
    }
}

/* 滚动条优化 */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    @apply bg-gray-100;
}

::-webkit-scrollbar-thumb {
    @apply bg-gray-300 rounded-full;
}

::-webkit-scrollbar-thumb:hover {
    @apply bg-gray-400;
}


.card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .fade-in {
            animation: fadeIn 0.6s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
