/* 管理员考核数据页样式 */

.assessment-period {
    padding: 20px 15px;
    background: linear-gradient(135deg, #1890FF 0%, #1565C0 100%);
    border-radius: 8px;
    text-align: center;
    color: #fff;
}

.period-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.period-value {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.assessment-card {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.assessment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.assessment-item:last-child {
    border-bottom: none;
}

.assessment-label {
    font-size: 14px;
    color: #666;
}

.assessment-value {
    font-size: 16px;
    font-weight: 600;
    color: #1890FF;
}

.assessment-status {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.assessment-status.passed {
    background-color: #F6FFED;
    color: #52C41A;
}

.assessment-status.failed {
    background-color: #FFF1F0;
    color: #FF4D4F;
}

.reward-list {
    padding: 0;
}

.reward-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: none;
    border: 1px solid #eee;
}

.reward-info {
    flex: 1;
}

.reward-amount {
    font-size: 16px;
    font-weight: 600;
    color: #FF4D4F;
    margin-bottom: 4px;
}

.reward-reason {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.reward-time {
    font-size: 12px;
    color: #999;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.empty-text {
    font-size: 14px;
    color: #999;
}

