/* pages/reports/reports.wxss */
.filter-bar {
  display: flex;
  gap: 2.1333vw;
  margin-bottom: 3.2vw;
  overflow-x: auto;
  padding-bottom: 1.0667vw;
}

.filter-btn {
  padding: 1.6vw 3.7333vw;
  border-radius: 4.2667vw;
  font-size: 3.4667vw;
  white-space: nowrap;
  background: #fff;
  color: #6b7280;
  border: 0.1333vw solid #e8e9ee;
}

.filter-btn.active {
  background: #4a7fd4;
  color: #fff;
  border-color: #4a7fd4;
  font-weight: 500;
}

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

.report-item {
  background: #fff;
  border-radius: 2.6667vw;
  padding: 3.7333vw;
  margin-bottom: 2.6667vw;
  box-shadow: 0 0.2667vw 1.6vw rgba(0, 0, 0, 0.03);
}

.report-item.priority-high {
  border-left: 0.8vw solid #ea6668;
}

.report-item.priority-facility {
  border-left: 0.8vw solid #e8912a;
}

.report-item.priority-daily {
  border-left: 0.8vw solid #52c41a;
}

.report-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.1333vw;
}

.report-top-right {
  display: flex;
  align-items: center;
  gap: 2.1333vw;
}

.report-type {
  font-size: 2.9333vw;
  padding: 0.8vw 2.6667vw;
  border-radius: 1.6vw;
}

.rt-facility { background: #fff4e5; color: #e8912a; }
.rt-daily { background: #eaf8e8; color: #3da134; }
.rt-class { background: #eef3fd; color: #4a7fd4; }

.report-time {
  font-size: 2.9333vw;
  color: #9ca3af;
}

.report-status {
  font-size: 2.6667vw;
  padding: 0.5333vw 2.1333vw;
  border-radius: 1.6vw;
}

.rs-pending { background: #fff4e5; color: #e8912a; }
.rs-done { background: #eaf8e8; color: #3da134; }

.report-content {
  font-size: 3.7333vw;
  color: #333;
  line-height: 1.7;
}

.report-bottom {
  margin-top: 2.6667vw;
  display: flex;
  justify-content: flex-end;
}

.report-action-btn {
  padding: 1.6vw 4.2667vw;
  border-radius: 4.2667vw;
  font-size: 3.4667vw;
  background: #4a7fd4;
  color: #fff;
  border: none;
  line-height: 1.5;
}

.report-action-btn::after {
  border: none;
}
