.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.video-card {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 8px;
    overflow: hidden;
    max-width: 300px;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #f8f9fa;
    width: 100%;
    cursor: pointer;
    max-width: 300px;
    margin: 0 auto;
}

.video-thumbnail img, 
.video-thumbnail .gif-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail .gif-preview-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

.video-thumbnail:hover .gif-preview-img {
    opacity: 1;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-preview-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-preview-btn i {
    font-size: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.video-thumbnail:hover .video-preview-btn {
    opacity: 1;
}

.video-preview-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-info {
    padding: 1rem;
    background: white;
}

.video-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
}

.video-title-tooltip {
    position: relative;
    display: inline-block;
    width: 100%;
}

.video-title-tooltip:hover::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: normal;
    max-width: 300px;
    font-size: 0.875rem;
    margin-top: 5px;
}

.video-tags {
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.video-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    background-color: #f0f0f0;
    color: #666;
}

.video-tag.tag-gender {
    background-color: rgba(233, 236, 239, 0.8);
    color: #495057;
}

.video-tag.tag-age {
    background-color: rgba(233, 236, 239, 0.8);
    color: #495057;
}

.video-tag.tag-race {
    background-color: rgba(233, 236, 239, 0.8);
    color: #495057;
}

.video-meta {
    font-size: 0.8rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.video-meta-item {
    display: flex;
    align-items: center;
}

.video-meta-item i {
    margin-right: 4px;
    font-size: 0.875rem;
}

.video-price-container {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    width: 100%;
}

.price-and-resolution {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: 100%;
    justify-content: space-between;
}

.video-price {
    color: #ff4d4f;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.price-wrapper {
    display: inline-flex;
    align-items: baseline;
}

.price-integer {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
}

.price-decimal, .price-unit, .bi-currency-yen {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1;
}

.video-private {
    height: 24px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.video-resolution {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #6c757d;
    flex-shrink: 0;
    margin-left: auto;
}

.placeholder-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-thumbnail i {
    font-size: 3rem;
    color: #dee2e6;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 1rem;
    background: white;
    border-radius: 0 0 4px 4px;
}

.video-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-meta {
    font-size: 0.875rem;
    color: #6c757d;
}

.upload-progress {
    margin-top: 1rem;
}

.drag-area {
    border: 2px dashed #dee2e6;
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drag-area:hover,
.drag-area.dragover {
    border-color: var(--primary-color, #007bff);
    background-color: #e9ecef;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.plyr {
    width: 100%;
    border-radius: 4px;
}

.thumbnail-preview {
    margin-top: 1rem;
    text-align: center;
    height: 100%;
}

.thumbnail-preview img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gif-preview {
    margin-top: 1rem;
    text-align: center;
    height: 100%;
}

.gif-preview img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-container {
    margin-bottom: 20px;
}

.preset-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.tag-label {
    font-weight: 500;
    color: #495057;
    margin-right: 8px;
    min-width: 48px;
}

.tag-item {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
}

/* 性别标签样式 */
.tag-gender {
    background-color: #e9ecef;
    color: #495057;
}

/* 年龄标签样式 */
.tag-age {
    background-color: #e9ecef;
    color: #495057;
}

/* 种族标签样式 */
.tag-race {
    background-color: #e9ecef;
    color: #495057;
}

/* 普通标签样式 */
.tag-normal {
    background-color: #6c757d;
    color: white;
}

/* 特征标签样式 */
.tag-preset {
    background-color: #e9ecef;
    color: #495057;
}

.tag-item:hover {
    opacity: 0.8;
}

.tag-item.selected {
    background-color: #28a745;
}

.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 40px;
    padding: 10px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 15px;
}

.selected-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background-color: #28a745;
    color: white;
    border-radius: 20px;
    font-size: 14px;
}

.selected-tag .remove-tag {
    margin-left: 8px;
    cursor: pointer;
    font-size: 16px;
}

.custom-tag-input {
    margin-top: 15px;
}

/* 修改上传蒙版样式 */
.upload-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* 调整背景透明度 */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px); /* 添加背景模糊效果 */
}

.upload-content {
    background: rgba(255, 255, 255, 0.85); /* 降低不透明度 */
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px); /* 添加毛玻璃效果 */
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.upload-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.upload-progress-container {
    margin-bottom: 2.5rem;
}

.upload-item {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.7); /* 降低不透明度 */
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px); /* 添加毛玻璃效果 */
}

.upload-label {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.progress {
    height: 24px;
    margin-bottom: 0.8rem;
    position: relative;
    background-color: rgba(0, 0, 0, 0.1); /* 调整背景透明度 */
    border-radius: 12px;
    overflow: hidden;
}

.progress-bar {
    transition: width 0.3s ease;
    background: linear-gradient(45deg, 
        rgba(0, 123, 255, 0.8), /* 降低不透明度 */
        rgba(0, 86, 179, 0.8)   /* 降低不透明度 */
    );
    color: white;
    text-align: center;
    line-height: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.progress-check {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    display: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.upload-status {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.global-status {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    padding: 1.2rem;
    background: rgba(248, 249, 250, 0.7); /* 降低不透明度 */
    border-radius: 12px;
    margin-top: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px); /* 添加毛玻璃效果 */
}

/* 添加进度条动画效果 */
@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.progress-bar.uploading {
    animation: pulse 2s infinite;
}

/* 添加完成标记动画 */
@keyframes checkmark {
    0% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

.progress-check.show {
    display: block;
    animation: checkmark 0.3s ease-out forwards;
}

.video-actions {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.action-btn {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn i {
    font-size: 0.9rem;
}

.video-thumbnail:hover .video-preview-btn,
.video-thumbnail:hover .video-actions {
    opacity: 1;
}

.action-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.action-btn.delete-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.video-date {
    font-size: 0.75rem;
    color: #adb5bd;
    text-align: right;
    margin-top: 0.5rem;
}

.section-title {
    color: #333;
    font-weight: 500;
}

/* 价格样式优化 */
.price-hour {
    font-size: 0.75rem; /* 比"元/"更小的字体 */
    font-weight: 400;
    line-height: 1;
}

/* 添加审核状态和意见的样式 */
.video-review {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #dee2e6;
}

.video-review-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.review-status-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.status-unknow {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.status-pending {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.status-processing {
    background-color: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.status-rejected {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.status-approved {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-cancelled {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.video-review-comment {
    color: #6c757d;
    font-style: italic;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 添加到现有样式中 */
.gif-preview-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none; /* 确保鼠标事件能穿透到下层 */
}

.video-thumbnail:hover .gif-preview-container {
    opacity: 1;
    pointer-events: auto; /* 在悬停时允许交互 */
}

.gif-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.gif-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    z-index: 3;
}

/* 选中状态样式 */
.tag-gender.selected,
.tag-age.selected,
.tag-race.selected,
.tag-preset.selected {
    background-color: #6c757d;
    color: white;
}