/* 服务人员评价详情页样式 */

/* 评价统计 */
.review-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px 0;
}

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

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

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

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

/* 评分明细 */
.rating-details {
    padding: 0;
}

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

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

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

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

.filter-tabs {
    display: flex;
    gap: 20px;
    padding: 10px 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    flex-shrink: 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.filter-tab.active {
    color: #1890FF;
    border-bottom-color: #1890FF;
    font-weight: 600;
}

/* 评价列表 */
.review-list {
    padding: 0;
}

.review-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: none;
    border: 1px solid #eee;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-info {
    flex: 1;
}

.review-user-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.review-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;
}

