/* 服务人员考核数据页样式 */

.assessment-status {
    text-align: center;
    padding: 10px 0;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #52C41A 0%, #389E0D 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.status-badge.formal {
    background: linear-gradient(135deg, #52C41A 0%, #389E0D 100%);
    color: #fff;
}

.status-desc {
    font-size: 12px;
    color: #999;
}

/* 评分统计 */
.rating-stats {
    padding: 0;
}

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

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

.rating-value {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.rating-details {
    padding: 0;
    margin-top: 15px;
}

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

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

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

.rating-detail-score {
    font-size: 16px;
    font-weight: 600;
    color: #1890FF;
}

/* 订单统计 */
.order-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0;
}

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

.order-stat-item:nth-child(2) {
    background: linear-gradient(135deg, #52C41A 0%, #389E0D 100%);
}

.order-stat-item:nth-child(3) {
    background: linear-gradient(135deg, #FAAD14 0%, #D48806 100%);
}

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

.order-stat-value {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* 考核标准 */
.assessment-standards {
    padding: 0;
}

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

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

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

.standard-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

