/* 评价报告美化样式 - 高级设计风格 2.0 */
:root {
  /* 主色调 */
  --report-primary: #007aff;
  --report-secondary: #47a3ff;
  --report-accent: #64b5f6;
  --report-dark: #0055b3;
  --report-light: #b3e5fc;
  
  /* 渐变色 */
  --report-gradient-start: #007aff;
  --report-gradient-end: #64b5f6;
  --report-gradient-dark: linear-gradient(135deg, #0055b3, #007aff);
  --report-gradient-light: linear-gradient(135deg, #007aff, #b3e5fc);
  
  /* 文本颜色 */
  --report-text: #333333;
  --report-text-light: #666666;
  --report-text-lighter: #999999;
  
  /* 背景色 */
  --report-background: #ffffff;
  --report-card-bg: #f9f9f9;
  --report-card-bg-hover: #f5f5f5;
  
  /* 阴影和圆角 */
  --report-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  --report-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
  --report-shadow-card: 0 8px 20px rgba(0, 0, 0, 0.06);
  --report-border-radius: 16px;
  --report-border-radius-sm: 12px;
  
  /* 模糊效果 */
  --apple-blur: saturate(180%) blur(20px);
  
  /* 状态颜色 */
  --status-high: #34c759;
  --status-medium: #ff9500;
  --status-low: #ff3b30;
  --status-very-low: #8e8e93;
}

/* 评价报告模态框样式 - Apple Design风格 */
#reviewModal .modal-content {
  border: none;
  border-radius: var(--report-border-radius);
  box-shadow: var(--report-shadow);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
}

#reviewModal .modal-header {
  background: linear-gradient(135deg, var(--report-gradient-start), var(--report-gradient-end));
  color: white;
  border: none;
  padding: 1.2rem 1.5rem;
  position: relative;
  z-index: 1;
  border-bottom: none;
}

#reviewModal .modal-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

#reviewModal .modal-title::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3E%3C/svg%3E");
  background-size: contain;
}

#reviewModal .modal-body {
  padding: 0;
  position: relative;
  z-index: 0;
}

#reviewModal .btn-close {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 50%;
  margin: -5px;
}

#reviewModal .btn-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* 评价内容容器 */
.review-content {
  padding: 2rem !important;
  color: var(--report-text);
  font-size: 1rem;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* 评价报告标题样式 */
.review-content h1, 
.review-content h2 {
  color: var(--report-primary);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 59, 48, 0.15);
  display: flex;
  align-items: center;
  letter-spacing: -0.5px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.review-content h1 {
  font-size: 1.8rem;
  margin-top: 0;
}

.review-content h2 {
  font-size: 1.4rem;
  color: #333;
}

.review-content h1::before,
.review-content h2::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff3b30' viewBox='0 0 16 16'%3E%3Cpath d='M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z'/%3E%3Cpath d='M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3E%3C/svg%3E");
  background-size: contain;
}

/* 评价报告内容样式 */
.review-content p {
  margin-bottom: 1rem;
}

/* 评价报告列表样式 */
.review-content ul, 
.review-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.review-content li {
  margin-bottom: 0.5rem;
  position: relative;
}

.review-content ul li::marker {
  color: var(--report-primary);
}

/* 评价报告卡片样式 - 高级设计版本 */
.review-card {
  background-color: rgba(255, 59, 48, 0.02);
  border-radius: var(--report-border-radius);
  padding: 1.8rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--report-primary);
  box-shadow: var(--report-shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(255, 59, 48, 0.08), transparent 70%);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--report-shadow-hover);
  background-color: rgba(255, 59, 48, 0.03);
}

/* 改进建议项样式 */
.improvement-item {
  background-color: white;
  border-radius: var(--report-border-radius-sm);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
}

.improvement-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--report-primary);
}

.improvement-item i {
  color: var(--report-primary);
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* 评价报告装饰元素 */
.review-decoration {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.decoration-icon {
  width: 60px;
  height: 60px;
  background: var(--report-gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(255, 59, 48, 0.2);
  position: relative;
  z-index: 1;
}

.decoration-icon::before,
.decoration-icon::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 59, 48, 0.1);
  z-index: -1;
}

.decoration-icon::before {
  width: 80px;
  height: 80px;
  animation: pulse 2s infinite;
}

.decoration-icon::after {
  width: 70px;
  height: 70px;
  animation: pulse 2s infinite 0.3s;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* 评价报告表格样式 */
.review-content table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.review-content th {
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--report-primary);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}

.review-content td {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.review-content tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

/* 评价报告状态指标 - 高级设计版本 */
.status-indicators-container {
  background-color: white;
  border-radius: var(--report-border-radius);
  padding: 1.8rem;
  margin: 1.8rem 0 2.5rem;
  box-shadow: var(--report-shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.status-indicators-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--report-gradient-light);
}

.status-indicators-container h2 {
  margin-top: 0 !important;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1.3rem;
  color: var(--report-primary);
}

.status-indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.status-indicator {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.01);
  border-radius: var(--report-border-radius-sm);
  padding: 1.2rem;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.status-indicator:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.status-indicator-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.indicator-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--report-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.indicator-icon.high-value {
  background-color: rgba(52, 199, 89, 0.1);
  color: var(--status-high);
}

.indicator-icon.medium-value {
  background-color: rgba(255, 149, 0, 0.1);
  color: var(--status-medium);
}

.indicator-icon.low-value {
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--status-low);
}

.indicator-icon.very-low-value {
  background-color: rgba(142, 142, 147, 0.1);
  color: var(--status-very-low);
}

.indicator-title {
  flex: 1;
}

.status-indicator-label {
  font-weight: 700;
  color: var(--report-text);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.status-indicator-evaluation {
  font-size: 0.8rem;
  color: var(--report-text-light);
  font-weight: 500;
}

.status-indicator-text {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--report-primary);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}

.percent-sign {
  font-size: 0.9rem;
  margin-left: 2px;
  opacity: 0.7;
}

.status-indicator-bar {
  height: 8px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 0.8rem;
}

.status-indicator-value {
  position: absolute;
  height: 100%;
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.status-indicator-value.high-value {
  background: linear-gradient(90deg, #2bd955, #34c759);
  box-shadow: 0 1px 3px rgba(52, 199, 89, 0.3);
}

.status-indicator-value.medium-value {
  background: linear-gradient(90deg, #ff9500, #ffbd2e);
  box-shadow: 0 1px 3px rgba(255, 149, 0, 0.3);
}

.status-indicator-value.low-value {
  background: linear-gradient(90deg, #ff3b30, #ff6b61);
  box-shadow: 0 1px 3px rgba(255, 59, 48, 0.3);
}

.status-indicator-value.very-low-value {
  background: linear-gradient(90deg, #8e8e93, #aeaeb2);
  box-shadow: 0 1px 3px rgba(142, 142, 147, 0.3);
}

.status-indicator-description {
  font-size: 0.85rem;
  color: var(--report-text-lighter);
  line-height: 1.4;
}

/* 评价报告底部按钮 */
#reviewModal .modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#reviewModal .btn-primary {
  background: linear-gradient(135deg, var(--report-gradient-start), var(--report-gradient-end));
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#reviewModal .btn-primary i {
  font-size: 1.1rem;
}

#reviewModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 59, 48, 0.3);
  background: linear-gradient(135deg, #ff4b40, #ff9a90);
}

#reviewModal .btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(255, 59, 48, 0.2);
}

#reviewModal .btn-secondary {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--report-text-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

#reviewModal .btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--report-text);
}

/* 评价报告截图样式 - 高级设计版本 */式 */
.info-container {
  margin: 2rem 0;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.info-card {
  background-color: white;
  border-radius: var(--report-border-radius-sm);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.info-card-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--report-gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-card-content {
  flex: 1;
}

.info-card-label {
  font-size: 0.8rem;
  color: var(--report-text-light);
  margin-bottom: 0.3rem;
}

.info-card-value {
  font-weight: 600;
  color: var(--report-text);
  font-size: 1.1rem;
}

/* 评价报告签名样式 */
.review-signature {
  margin-top: 3rem;
  text-align: center;
}

.signature-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.signature-decoration-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  flex: 1;
}

.signature-decoration-icon {
  margin: 0 15px;
  color: var(--report-primary);
  font-size: 1.2rem;
}

.signature-text {
  font-size: 0.9rem;
  color: var(--report-text-light);
  margin-bottom: 0.5rem;
}

.signature-note {
  font-size: 0.8rem;
  color: var(--report-text-lighter);
}

/* 评价报告预览模态框样式 */
#imagePreviewModal .modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

#imagePreviewModal .modal-header {
  background: linear-gradient(135deg, var(--report-gradient-start), var(--report-gradient-end));
  color: white;
  border-bottom: none;
  padding: 1rem 1.5rem;
}

#imagePreviewModal .modal-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

#imagePreviewModal .modal-body {
  padding: 1.5rem;
  background-color: #f9f9f9;
}

#imagePreviewModal .image-preview-container {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

#imagePreviewModal .image-preview-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#imagePreviewModal .image-preview-container img {
  border-radius: 12px;
  max-height: 70vh;
  object-fit: contain;
}

#imagePreviewModal .report-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

#imagePreviewModal .badge {
  padding: 0.5rem 0.8rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: rgba(0, 0, 0, 0.05) !important;
  color: var(--report-text) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#imagePreviewModal .badge i {
  color: var(--report-primary);
  font-size: 0.9rem;
}

#imagePreviewModal .modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
}

#imagePreviewModal .report-id {
  font-family: monospace;
  letter-spacing: 0.5px;
  color: var(--report-text-light) !important;
}

#imagePreviewModal .btn-secondary {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--report-text);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

#imagePreviewModal .btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.08);
  color: var(--report-text-dark);
}

#imagePreviewModal .btn-primary {
  background: var(--report-gradient-light);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
}

#imagePreviewModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 59, 48, 0.3);
  background: linear-gradient(135deg, #ff4b40, #ff9a90);
}

#imagePreviewModal .btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(255, 59, 48, 0.2);
}

/* 进度提示样式 */
.progress-toast {
  background-color: white;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.progress-toast .toast-header {
  background-color: transparent;
  border-bottom: none;
  padding: 0.8rem 1rem 0.4rem;
}

.progress-toast .toast-icon i {
  color: var(--report-primary);
}

.progress-toast .progress-percentage {
  font-weight: 600;
  color: var(--report-primary);
}

.progress-toast .progress {
  border-radius: 0;
  height: 4px !important;
  background-color: rgba(0, 0, 0, 0.03);
}

.progress-toast .progress-bar {
  background: var(--report-gradient-light);
  transition: width 0.3s ease;
}

/* 评价报告截图样式 - 高级设计版本 2.0 */
.review-screenshot {
  padding: 40px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--report-text);
}

/* 背景装饰元素 */
.review-screenshot::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.05), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.review-screenshot::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.05), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* 截图水印 */
.screenshot-watermark {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.15);
  transform: rotate(-5deg);
  font-weight: 500;
  letter-spacing: 0.5px;
  pointer-events: none;
  z-index: 10;
}

/* 截图装饰元素 */
.screenshot-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H150V150H0V0Z' fill='white'/%3E%3Cpath d='M150 0H0V20L150 150V0Z' fill='rgba(255, 59, 48, 0.03)'/%3E%3Cpath d='M150 0H0V40L150 150V0Z' fill='rgba(255, 59, 48, 0.02)'/%3E%3Cpath d='M150 0H0V60L150 150V0Z' fill='rgba(255, 59, 48, 0.01)'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

/* 截图头部 */
.screenshot-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-align: left;
  padding-bottom: 0;
  border-bottom: none;
}

.screenshot-header::after {
  display: none;
}

.screenshot-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.screenshot-logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--report-primary);
}

.screenshot-logo i {
  margin-right: 10px;
  font-size: 1.4rem;
  background: var(--report-gradient-light);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 59, 48, 0.2);
}

.screenshot-report-id {
  font-size: 0.85rem;
  color: var(--report-text-light);
  background-color: rgba(0, 0, 0, 0.03);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

.screenshot-header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.screenshot-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--report-text);
  display: flex;
  align-items: center;
}

.screenshot-title i {
  margin-right: 10px;
  color: var(--report-primary);
}

.screenshot-date {
  display: flex;
  align-items: center;
  color: var(--report-text-light);
  font-size: 0.9rem;
}

.screenshot-date span {
  display: flex;
  align-items: center;
}

.screenshot-date i {
  margin-right: 5px;
}

.date-divider {
  margin: 0 10px;
  color: rgba(0, 0, 0, 0.2);
}

/* 截图内容区 */
.screenshot-content {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  background-color: transparent;
  border: none;
  padding: 0;
}

/* 截图底部 */
.screenshot-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  text-align: left;
}

.screenshot-footer-left {
  display: flex;
  align-items: center;
}

.screenshot-footer-logo {
  margin-right: 15px;
}

.screenshot-footer-logo i {
  font-size: 1.8rem;
  color: var(--report-primary);
  opacity: 0.8;
}

.screenshot-footer-text {
  line-height: 1.4;
}

.screenshot-footer-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--report-text-light);
}

.screenshot-footer-slogan {
  font-size: 0.75rem !important;
  color: var(--report-text-lighter) !important;
}

.screenshot-footer-right {
  text-align: center;
}

.qr-code-placeholder {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.qr-code-placeholder::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 4px;
}

.qr-code-placeholder::after {
  content: '\f029';
  font-family: 'bootstrap-icons';
  position: absolute;
  font-size: 20px;
  color: var(--report-primary);
  opacity: 0.5;
}

.screenshot-footer-right p {
  margin: 0;
  font-size: 0.7rem;
  color: var(--report-text-lighter);
}

/* 截图内容样式覆盖 */
.review-screenshot .review-content {
  padding: 0 !important;
}

.review-screenshot .status-indicators-container {
  margin: 1.5rem 0 2rem;
}

.review-screenshot .review-card {
  margin-bottom: 1.5rem;
}

.review-screenshot .review-signature {
  margin-top: 2rem;
}

/* 按钮脉冲动画 */
.btn-pulse {
  animation: btn-pulse 0.3s ease;
}

@keyframes btn-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.screenshot-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--report-gradient-start), var(--report-gradient-end));
  border-radius: 3px;
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.review-content > * {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.status-indicators-container {
  animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.status-indicator {
  animation: slideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.status-indicator:nth-child(1) { animation-delay: 0.5s; }
.status-indicator:nth-child(2) { animation-delay: 0.6s; }
.status-indicator:nth-child(3) { animation-delay: 0.7s; }

.review-content > *:nth-child(1) { animation-delay: 0.1s; }
.review-content > *:nth-child(2) { animation-delay: 0.2s; }
.review-content > *:nth-child(3) { animation-delay: 0.3s; }
.review-content > *:nth-child(4) { animation-delay: 0.4s; }
.review-content > *:nth-child(5) { animation-delay: 0.5s; }
.review-content > *:nth-child(6) { animation-delay: 0.6s; }
.review-content > *:nth-child(7) { animation-delay: 0.7s; }
.review-content > *:nth-child(8) { animation-delay: 0.8s; }
.review-content > *:nth-child(9) { animation-delay: 0.9s; }
.review-content > *:nth-child(10) { animation-delay: 1s; }

/* 添加表格样式 */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.info-table th {
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.05), rgba(255, 59, 48, 0.1));
  color: var(--report-primary);
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.3px;
}

.info-table td {
  padding: 12px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  color: var(--report-text);
  font-size: 0.95rem;
}

.info-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.01);
}

/* 改进建议项目样式 */
.improvement-item {
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border-left: 3px solid var(--report-primary);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.improvement-item:hover {
  transform: translateX(3px);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* 信息容器样式 */
.info-container {
  margin: 1.5rem 0;
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

/* 报告签名样式 */
.review-signature {
  margin-top: 3rem;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
}

.signature-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.3), transparent);
  margin-bottom: 1rem;
}

.signature-text {
  color: var(--report-text-light);
  font-size: 0.9rem;
  font-style: italic;
}

/* 状态指标值颜色 */
.status-indicator-value.high-value {
  background: linear-gradient(90deg, #34c759, #5ac8fa);
}

.status-indicator-value.medium-value {
  background: linear-gradient(90deg, #ff9500, #ffcc00);
}

.status-indicator-value.low-value {
  background: linear-gradient(90deg, var(--report-gradient-start), var(--report-gradient-end));
}

/* 按钮脉冲效果 */
@keyframes btnPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.btn-pulse {
  animation: btnPulse 0.3s ease;
}

/* 截图样式 */
.review-screenshot {
  width: 800px;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* 截图头部样式 */
.screenshot-header {
  background: linear-gradient(135deg, var(--report-gradient-start), var(--report-gradient-end));
  color: white;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.screenshot-logo {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.screenshot-logo i {
  font-size: 30px;
}

.screenshot-title {
  flex: 1;
}

.screenshot-title h2 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.screenshot-title p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* 截图内容样式 */
.screenshot-content {
  padding: 30px;
  background-color: white;
}

/* 截图底部样式 */
.screenshot-footer {
  background-color: #f8f8f8;
  padding: 15px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.screenshot-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.screenshot-qr-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.05), rgba(255, 59, 48, 0.1));
  border-radius: 8px;
  position: relative;
}

.screenshot-qr-placeholder::before {
  content: "扫码";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: var(--report-primary);
  opacity: 0.7;
}

.screenshot-copyright {
  text-align: right;
  color: var(--report-text-light);
}

.screenshot-copyright p {
  margin: 5px 0;
  font-size: 12px;
}

/* 下载按钮样式 */
.download-report-btn {
  background: linear-gradient(135deg, var(--report-gradient-start), var(--report-gradient-end));
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 59, 48, 0.2);
}

.download-report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 59, 48, 0.3);
}

.download-report-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(255, 59, 48, 0.2);
}
