
.real-time-monitor[data-v-eab1bed8] {
  padding: 20px;
  background: #f5f7fa;
  min-height: 100vh;
}
.header[data-v-eab1bed8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.monitor-grid[data-v-eab1bed8] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.monitor-item[data-v-eab1bed8] {
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.monitor-item[data-v-eab1bed8]:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.monitor-item.error[data-v-eab1bed8] {
  border: 2px solid #f56c6c;
}
.monitor-header[data-v-eab1bed8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  background: #fafafa;
  border-bottom: 1px solid #e4e7ed;
}
.monitor-header h4[data-v-eab1bed8] {
  margin: 0;
  color: #303133;
}
.monitor-status[data-v-eab1bed8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.fps[data-v-eab1bed8] {
  font-size: 12px;
  color: #909399;
}
.monitor-content[data-v-eab1bed8] {
  position: relative;
}
.video-container[data-v-eab1bed8] {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.video-container img[data-v-eab1bed8] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detection-overlay[data-v-eab1bed8] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.detection-info[data-v-eab1bed8] {
  padding: 16px;
  background: #fafafa;
  border-top: 1px solid #e4e7ed;
}
.detection-count[data-v-eab1bed8] {
  font-weight: bold;
  margin-bottom: 10px;
  color: #303133;
}
.detection-list[data-v-eab1bed8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.detection-item[data-v-eab1bed8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 4px 8px;
  background: #e1f3d8;
  border-radius: 4px;
  font-size: 12px;
}
.detection-class[data-v-eab1bed8] {
  font-weight: bold;
  color: #67c23a;
}
.detection-confidence[data-v-eab1bed8] {
  color: #909399;
}
.monitor-actions[data-v-eab1bed8] {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid #e4e7ed;
}
.monitor-detail[data-v-eab1bed8] {
  padding: 20px 0;
}
.current-frame[data-v-eab1bed8] {
  text-align: center;
}
.current-frame h4[data-v-eab1bed8] {
  margin-bottom: 10px;
  color: #303133;
}

/* 响应式设计 */
@media (max-width: 768px) {
.monitor-grid[data-v-eab1bed8] {
    grid-template-columns: 1fr;
}
.monitor-actions[data-v-eab1bed8] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
.monitor-grid[data-v-eab1bed8] {
    grid-template-columns: repeat(2, 1fr);
}
}

