/* 视频对比布局 - 竖排超清版 */
.clip-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px; /* 加大clip间距，更清爽 */
}

.clip-label {
  min-width: 70px;
  font-weight: 600;
  font-size: 1.1rem;
  padding-top: 4px;
  white-space: nowrap;
}

/* 视频容器：竖排（上下布局）*/
.clip-row .columns {
  display: flex;
  flex-direction: column; /* 关键：改成竖排 */
  gap: 12px; /* 两个视频之间的间距 */
  width: 100%;
}

/* 每个视频占满宽度 */
.clip-row .columns .column {
  width: 100% !important;
}

.video-container {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.background-container {
  padding: 16px;
  border-radius: 8px;
  background: #f9f9f9;
}
