        /* 主容器 */
        .report-module {
            width: 805px;
            height: 200px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0, 66, 124, 0.15);
            display: flex;
            overflow: hidden;
            border: 1px solid #e1e8f0;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 35px;
        }
        
        .report-module:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 66, 124, 0.25);
        }
        
        /* 左侧内容区域 */
        .report-left {
            width: 670px;
            padding: 20px 30px;
            border-right: 1px dashed #d1dce9;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .report-title {
            color: #003366;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color 0.3s ease;
        }
        
        .report-module:hover .report-title {
            color: #004c99;
        }
        
        .report-abstract {
            color: #4a5568;
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 12px;
            height: 75px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .report-meta {
            display: flex;
            gap: 22px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            color: #5a6c7d;
            font-size: 13px;
        }
        
        .meta-item i {
            margin-right: 10px;
            color: #0066cc;
            transition: all 0.3s ease;
        }
        
        .report-module:hover .meta-item i {
            color: #0088ff;
            transform: scale(1.1);
        }
        
        /* 右侧内容区域 */
        .report-right {
            width: 300px;
            padding: 22px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 102, 204, 0.01) 100%);
            transition: background 0.4s ease;
        }
        
        .report-module:hover .report-right {
            background: linear-gradient(135deg, rgba(0, 136, 255, 0.08) 0%, rgba(0, 136, 255, 0.03) 100%);
        }
        
        .slogan {
            color: #0066cc;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }
        
        .report-module:hover .slogan {
            color: #0088ff;
            transform: scale(1.05);
        }
        
        .sub-slogan {
            color: #5a6c7d;
            font-size: 14px;
            font-style: italic;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }
        
        .report-module:hover .sub-slogan {
            color: #4a5a6c;
            transform: translateY(-2px);
        }
        
        /* 下载按钮 */
        .download-btn {
            background: linear-gradient(to right, #0066cc, #004c99);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 14px 22px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.4s ease;
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
            width: 220px;
            position: relative;
            overflow: hidden;
        }
        
        .download-btn:hover {
            background: linear-gradient(to right, #0088ff, #0066cc);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
        }
        
        .download-btn i {
            margin-right: 10px;
            font-size: 20px;
            transition: transform 0.3s ease;
        }
        
        .report-module:hover .download-btn i {
            transform: rotate(5deg) scale(1.1);
        }
        
        .file-size {
            font-size: 13px;
            color: #7b8b9c;
            margin-top: 8px;
            transition: all 0.3s ease;
        }
        
        .report-module:hover .file-size {
            color: #0066cc;
            font-weight: 600;
        }
        
        /* 底部装饰条 */
        .module-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #0066cc, #00aaff);
            transition: all 0.4s ease;
        }
        
        .report-module:hover .module-footer {
            height: 6px;
            background: linear-gradient(to right, #0088ff, #00ccff);
        }
        
        /* 浮动动画 */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-2px); }
        }
        
        .report-module:hover .download-btn {
            animation: float 2s infinite ease-in-out;
        }