/* ===== 投流截图 ===== */
.screenshot-thumb {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}
.screenshot-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform .15s;
}
.screenshot-thumb img:hover { transform: scale(1.05); }
.screenshot-del {
  position: absolute;
  top: 2px; right: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,77,79,0.85);
  color: #fff;
  border: none;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.screenshot-del:hover { background: #ff4d4f; }
.screenshot-upload-btn {
  width: 80px; height: 80px;
  border: 2px dashed #d9d9d9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
  background: #fafbfc;
}
.screenshot-upload-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.screenshot-upload-btn.uploading {
  pointer-events: none;
  color: var(--primary);
  border-color: var(--primary);
}
