/* 剪辑计划片段管理页面 */ .plan-clips-page { padding: 24px; min-height: 100vh; background: #f5f7fa; } .plan-clips-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; } .plan-clips-header-left { display: flex; align-items: center; gap: 16px; } .plan-clips-title h2 { margin: 0; font-size: 20px; font-weight: 600; color: #1f2937; } .plan-clips-title p { margin: 4px 0 0; font-size: 13px; color: #6b7280; } .plan-clips-batch-bar { display: flex; align-items: center; gap: 16px; padding: 12px 20px; margin-bottom: 16px; background: #e6f4ff; border-radius: 8px; font-size: 14px; color: #1677ff; } .plan-clips-table-wrap { background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04); } .clip-asset-id { font-size: 12px; color: #6b7280; background: #f3f4f6; padding: 2px 6px; border-radius: 4px; } /* 排序模式 */ .plan-clips-reorder-card { margin-bottom: 16px; border-radius: 12px; } .plan-clips-reorder-list { display: flex; flex-direction: column; gap: 8px; } .plan-clips-reorder-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; cursor: grab; transition: all 0.2s; } .plan-clips-reorder-item:hover { border-color: #1677ff; background: #f0f7ff; } .reorder-index { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: #1677ff; color: #fff; border-radius: 50%; font-size: 13px; font-weight: 600; flex-shrink: 0; } .reorder-type { flex-shrink: 0; font-size: 12px; color: #6b7280; padding: 2px 8px; background: #eef2ff; border-radius: 4px; } .reorder-content { flex: 1; font-size: 14px; color: #1f2937; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .reorder-duration { flex-shrink: 0; font-size: 13px; color: #6b7280; font-variant-numeric: tabular-nums; } /* 素材导入 */ .asset-import-list { display: flex; flex-direction: column; gap: 8px; max-height: calc(100vh - 200px); overflow-y: auto; } .asset-import-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid #e5e7eb; border-radius: 8px; cursor: pointer; transition: all 0.2s; } .asset-import-item:hover { border-color: #1677ff; background: #f0f7ff; } .asset-import-item.selected { border-color: #1677ff; background: #e6f4ff; } .asset-thumb { width: 56px; height: 40px; border-radius: 4px; overflow: hidden; background: #f3f4f6; flex-shrink: 0; } .asset-thumb img { width: 100%; height: 100%; object-fit: cover; } .asset-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #9ca3af; text-transform: uppercase; } .asset-info { flex: 1; min-width: 0; } .asset-name { font-size: 14px; color: #1f2937; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .asset-meta { font-size: 12px; color: #9ca3af; margin-top: 2px; }