/* pages/briefing/briefing.wxss */
.refresh-btn {
  font-size: 3.2vw;
  padding: 1.0667vw 3.2vw;
  background: #eef3fd;
  color: #4a7fd4;
  border-radius: 3.2vw;
  line-height: 1.5;
}

.refresh-btn::after {
  border: none;
}

.report-summary {
  font-size: 3.7333vw;
  color: #333;
  line-height: 1.8;
  margin-bottom: 3.2vw;
  padding: 2.6667vw;
  background: #f8f9ff;
  border-radius: 1.6vw;
}

.report-section {
  margin-bottom: 3.2vw;
}

.report-section:last-child {
  margin-bottom: 0;
}

.report-section-title {
  font-size: 3.7333vw;
  font-weight: 600;
  color: #1a1b1c;
  margin-bottom: 1.6vw;
}

.report-item {
  font-size: 3.4667vw;
  color: #555;
  line-height: 1.8;
  padding-left: 1.0667vw;
}

/* AI 洞察问答 */
.insight-card {
  background: linear-gradient(135deg, #f8f9ff, #eef3fd);
  border: 0.2667vw solid #d6e4ff;
}

.insight-desc {
  font-size: 3.2vw;
  color: #6b7280;
  margin-bottom: 2.6667vw;
  line-height: 1.5;
}

.insight-recommend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6vw;
  margin-bottom: 2.6667vw;
}

.recommend-tag {
  font-size: 2.9333vw;
  color: #4a7fd4;
  background: #fff;
  border: 0.1333vw solid #c5d8ff;
  padding: 1.3333vw 2.6667vw;
  border-radius: 2.6667vw;
}

.recommend-tag:active {
  background: #eef3fd;
}

.insight-input-row {
  display: flex;
  align-items: center;
  gap: 1.6vw;
  margin-bottom: 2.6667vw;
}

.insight-input {
  flex: 1;
  background: #fff;
  border-radius: 2.1333vw;
  padding: 0 3.2vw;
  height: 10.6667vw;
  font-size: 3.4667vw;
  border: 0.1333vw solid #d6e4ff;
}

.insight-send-btn {
  background: #4a7fd4;
  color: #fff;
  font-size: 3.4667vw;
  padding: 0 4.2667vw;
  height: 10.6667vw;
  line-height: 10.6667vw;
  border-radius: 2.1333vw;
  margin: 0;
}

.insight-send-btn::after {
  border: none;
}

.insight-answer {
  background: #fff;
  border-radius: 2.1333vw;
  padding: 3.2vw;
  min-height: 16vw;
}

.insight-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.3333vw 0;
}

.loading-dot {
  width: 1.6vw;
  height: 1.6vw;
  background: #4a7fd4;
  border-radius: 50%;
  margin: 0 0.8vw;
  animation: dotPulse 1.2s infinite;
}

.loading-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 60%, 100% { transform: scale(1); opacity: 0.4; }
  30% { transform: scale(1.3); opacity: 1; }
}

.loading-text {
  font-size: 3.2vw;
  color: #6b7280;
  margin-left: 2.1333vw;
}

.answer-header {
  display: flex;
  align-items: center;
  margin-bottom: 2.1333vw;
}

.answer-avatar {
  font-size: 4.2667vw;
  margin-right: 1.6vw;
}

.answer-label {
  font-size: 3.4667vw;
  font-weight: 600;
  color: #4a7fd4;
}

.answer-content {
  font-size: 3.4667vw;
  color: #333;
  line-height: 1.9;
  white-space: pre-wrap;
}

.answer-cursor {
  display: inline-block;
  color: #4a7fd4;
  font-size: 3.4667vw;
  animation: cursorBlink 0.8s infinite;
}

@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.section-title-wrap {
  display: flex;
  align-items: center;
}
.section-head .section-title { margin-bottom:0; flex:1; }
.section-head .refresh-btn { width:18.1333vw; flex-shrink:0; margin:0; white-space:nowrap; display:flex; align-items:center; justify-content:center; }

/* 班级氛围 / 每周小约定入口 */
.entry-card {
  display: flex;
  align-items: center;
  padding: 4.2667vw;
}

.entry-icon {
  font-size: 6.4vw;
  margin-right: 3.2vw;
}

.entry-content {
  flex: 1;
}

.entry-title {
  font-size: 4vw;
  font-weight: 600;
  color: #1a1b1c;
  margin-bottom: 0.8vw;
}

.entry-desc {
  font-size: 3.2vw;
  color: #9ca3af;
}

.entry-arrow {
  font-size: 5.3333vw;
  color: #ccc;
}

