/**
 * 详细评价部分增强样式
 * 为评价内容添加更高级的视觉效果
 */

/* 详细评价容器 */
.evaluation-detail {
  position: relative;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.evaluation-detail:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* 详细评价标题 */
.evaluation-detail-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.evaluation-detail-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: white;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(106, 17, 203, 0.25);
}

.evaluation-detail-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* 详细评价内容 */
.evaluation-detail-content {
  padding: 20px;
}

/* 优化评价项分类标记 */
.evaluation-item {
  position: relative;
  border-left: 3px solid #6a11cb;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: #f8f9fa;
  border-radius: 0 8px 8px 0;
  transition: all 0.2s ease;
}

.evaluation-item:hover {
  background: #f1f3f9;
  transform: translateX(2px);
}

.evaluation-item.positive {
  border-left-color: #4CAF50;
}

.evaluation-item.negative {
  border-left-color: #FF5722;
}

.evaluation-item.suggestion {
  border-left-color: #2196F3;
}

/* 评价项标题 */
.evaluation-item-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
}

.evaluation-item-title i {
  margin-right: 8px;
  color: #6a11cb;
}

.evaluation-item.positive .evaluation-item-title i {
  color: #4CAF50;
}

.evaluation-item.negative .evaluation-item-title i {
  color: #FF5722;
}

.evaluation-item.suggestion .evaluation-item-title i {
  color: #2196F3;
}

/* 评价内容 */
.evaluation-item-content {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* 问题句子高亮 */
.problem-sentence-enhanced {
  background-color: rgba(255, 87, 34, 0.08);
  border-left: 2px solid #FF5722;
  padding: 10px 12px;
  margin: 10px 0;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  position: relative;
}

.problem-sentence-enhanced::before {
  content: '"';
  position: absolute;
  left: 12px;
  top: 0;
  font-size: 24px;
  color: rgba(255, 87, 34, 0.4);
  font-family: Georgia, serif;
}

.problem-sentence-enhanced::after {
  content: '"';
  position: absolute;
  right: 12px;
  bottom: 0;
  font-size: 24px;
  color: rgba(255, 87, 34, 0.4);
  font-family: Georgia, serif;
}

/* 改进建议样式 */
.suggestion-enhanced {
  background-color: rgba(33, 150, 243, 0.08);
  border-left: 2px solid #2196F3;
  padding: 10px 12px;
  margin: 10px 0;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  position: relative;
}

.suggestion-enhanced::before {
  content: '↳';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #2196F3;
  font-weight: bold;
}
