:root {
  color: #1f2933;
  background-color: #f5f6f8;
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", "Heiti SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f5f6f8;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 16px 48px;
}

#surveyContainer {
  width: 100%;
  max-width: 800px;
}

#surveyContainer .image-sequence {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 16px 18px 12px;
  margin-bottom: 10px;
}

#surveyContainer .image-sequence__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: #52606d;
  margin-bottom: 12px;
}

#surveyContainer .image-sequence__status {
  font-size: 12px;
  color: #9aa5b1;
}

#surveyContainer .image-sequence__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#surveyContainer .survey-image {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e4e7eb;
  background: #f8f9fb;
}

#surveyContainer .survey-image.is-summary {
  border-color: #cbd2d9;
}

#surveyContainer .image-sequence__hint {
  margin: 8px 0 20px;
  color: #52606d;
  font-size: 14px;
}
