/* 用户报告卡片样式 */
.report-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: visible;
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #1890ff;
}

.report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* 内容区域 */
.report-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 用户信息 */
.report-card__user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.user-age {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.user-condition {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
}

.premature-level,
.hardness-level {
    background: #e6f7ff !important; /* 稍深的背景 */
    color: #0066CC !important; /* 深蓝色，对比度 6.95:1 ✓ */
    font-weight: 600;
    padding: 4px 8px !important; /* 更大的点击区域 */
}

/* 标题 */
.report-card__title {
    margin: 0 0 8px 0;
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
}

.report-card__title a {
    color: #1a1a1a;
    text-decoration: none;
}

.report-card__title a:hover {
    color: #1890ff;
}

/* 关联产品 */
.report-card__product {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 16px;
}

/* 核心数据 */
.report-card__data {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
}

.data-label {
    color: #666666 !important; /* 对比度 5.74:1 ✓ */
    font-weight: 600;
    font-size: 0.8125rem !important; /* 稍微小一点 */
}

.data-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a ;
}

.delay-time .data-value {
    color: #237804 ;
    font-size: 1.125rem ;
}

.rating .data-value {
    color: #1a1a1a !important; /* 纯黑色 */
    font-size: 1.125rem !important;
    font-weight: 700;
}

/* 使用感受 */
.report-card__feelings {
    margin-bottom: 12px;
    padding: 8px;
    background: #f6ffed;
    border: 1px solid #b7eb8f;
    border-radius: 4px;
    font-size: 0.875rem;
}

.feelings-label {
    color: #237804 !important; /* 更深的绿色，对比度 5.57:1 ✓ */
    font-weight: 600;
}

.feelings-text {
    color: #666;
}

/* 推荐状态 */
.report-card__recommendation {
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.recommended {
    background: #d9f7be !important;
    color: #237804 !important; /* 深绿色，对比度 5.57:1 ✓ */
    border-color: #95de64 !important;
    font-weight: 600;
}

.not-recommended {
    background: #ffccc7 !important;
    color: #a8071a !important; /* 深红色，对比度 7.02:1 ✓ */
    border-color: #ff7875 !important;
    font-weight: 600;
}

/* 操作按钮 */
.report-card__actions {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.report-card__read-more {
    display: block;
    width: 100%;
    padding: 10px;
    background: #0066CC !important; /* 深蓝色背景 */
    color: white !important; /* 修复：改为白色文字 */
    text-align: center;
    text-decoration: none;
    border: 2px solid #0052A3 !important; /* 更深的边框色 */
    border-radius: 6px;
    font-weight: 600; /* 加粗 */
    transition: all 0.2s ease;
}

.report-card__read-more:hover {
    background: #0052A3 !important;
    border-color: #003d82 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .report-card__content {
        padding: 16px;
    }
    
    .report-card__user-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .report-card__data {
        flex-direction: column;
        gap: 8px;
    }
}