   /* 基础样式 */
        body {
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* 卡片样式 */
        .card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.03);
            height: 100%;
            position: relative;
            background-color: white;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #4361ee, #3f37c9);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .card:hover::before {
            opacity: 1;
        }
        
        .main-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .card:hover .main-image {
            transform: scale(1.05);
        }
        
        /* 信息容器 - 左侧LOGO，右侧信息 */
        .info-container {
            display: flex;
            align-items: flex-start; /* 顶部对齐 */
            padding: 0 20px;
            margin-top: 15px;
            position: relative;
            z-index: 10;
            width: 100%;
            box-sizing: border-box;
        }
        
        /* LOGO样式 */
        .logo-container {
            flex: 0 0 auto; /* 不伸缩 */
            margin-right: 15px;
        }
        
        .logo {
            width: 64px;
            height: 64px;
            object-fit: contain;
            border-radius: 8px;
            background-color: #fff;
            padding: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 2px solid white;
            transition: transform 0.3s ease;
        }
        
        .card:hover .logo {
            transform: scale(1.08);
        }
        
        /* 右侧信息区域 */
        .details-container {
            flex: 1; /* 占满剩余空间 */
            min-width: 0; /* 允许内容收缩 */
        }
        
        /* 卡片内容区域 */
        .card-body {
            padding: 0px 20px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        /* 标题样式 */
        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .card-title a {
            color: #1a1a1a;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .card-title a:hover {
            color: #4361ee;
        }
        
        /* 信息行样式 */
        .info-row {
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            color: #666;
            margin-bottom: 8px;
            flex-wrap: wrap;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .info-row i {
            margin-right: 6px;
            width: 14px;
            text-align: center;
        }
        
        .info-divider {
            margin: 0 8px;
            color: #ddd;
        }
        
        /* 标签样式 */
        .tags-container {
            margin-top: auto;
            padding-top: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        
        .badge-custom {
            font-size: 0.7rem;
            padding: 0.2rem 0.5rem;
            border-radius: 1rem;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .badge-purple {
            background-color: #f3e8ff;
            color: #7c3aed;
        }
        
        .badge-blue {
            background-color: #dbeafe;
            color: #3b82f6;
        }
        
        .badge-green {
            background-color: #dcfce7;
            color: #10b981;
        }
        
        .badge-yellow {
            background-color: #fef3c7;
            color: #f59e0b;
        }
        
        .badge-red {
            background-color: #fee2e2;
            color: #ef4444;
        }
        
        .card:hover .badge-custom {
            transform: translateY(-2px);
        }
        
        /* 加载动画 */
        .card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .card.loaded {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 分页样式 */
        .pagination {
            margin-top: 3rem;
            justify-content: center;
        }
        
        .pagination .page-item .page-link {
            border-radius: 0.5rem;
            margin: 0 0.25rem;
            padding: 0.5rem 1rem;
            color: #4361ee;
            border-color: #e2e8f0;
        }
        
        .pagination .page-item.active .page-link {
            background-color: #4361ee;
            border-color: #4361ee;
        }
        
        /* 响应式调整 */
        @media (max-width: 991px) {
            .logo {
                width: 56px;
                height: 56px;
            }
        }
        
        @media (max-width: 767px) {
            .row-cols-lg-3 {
                flex-direction: column;
            }
            
            .col {
                margin-bottom: 0.1rem;
            }
            
            .image-container {
                padding-top: 70%;
            }
        }
        
        @media (max-width: 575px) {
            /* 手机端样式 - 确保LOGO和信息在同一行 */
            .info-container {
                align-items: center; /* 垂直居中对齐 */
                flex-wrap: nowrap; /* 不换行 */
            }
            
            .logo {
                width: 80px;
                height: 80px;
            }
            
            .card-title {
                font-size: 1rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .info-row {
                font-size: 0.75rem;
            }
            
            /* 移除可能导致换行的样式 */
            .logo-container {
                margin-bottom: 0;
            }
            
            .details-container {
                flex: 1;
                min-width: 0; /* 允许内容收缩 */
            }
        }