/* 视频观看区块按钮样式优化 */
.video-action-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* 中间留空 */
    margin-bottom: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #2b2b31 0%, #1a1f2e 100%);
    border-radius: 12px;
    border: 1px solid #3d3d44;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-action-left,
.video-action-right {
    flex: 0 0 40%; /* 左右各占40% */
}

.video-action-btn {
    width: 100%;
    height: 48px; /* 与下方压缩包下载按钮高度一致 */
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    position: relative;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 左侧按钮样式 - 主要操作按钮 */
.video-action-left .video-action-btn {
    background: linear-gradient(135deg, #5E50F9 0%, #0090e7 100%);
    box-shadow: 0 4px 15px rgba(94, 80, 249, 0.3);
}

.video-action-left .video-action-btn:hover {
    background: linear-gradient(135deg, #6f61ff 0%, #1aa3ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 80, 249, 0.4);
}

/* 右侧按钮样式 - 次要操作按钮 */
.video-action-right .video-action-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff9f43 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.video-action-right .video-action-btn:hover {
    background: linear-gradient(135deg, #ff7979 0%, #ffb347 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* 按钮激活状态 */
.video-action-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 - 始终保持水平排列 */
@media (max-width: 768px) {
    .video-action-container {
        gap: 15px; /* 减小间距以适应小屏幕 */
        padding: 15px;
    }
    
    .video-action-left,
    .video-action-right {
        flex: 0 0 45%; /* 小屏幕下各占45%，留出更多间距 */
    }
    
    .video-action-btn {
        height: 44px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .video-action-container {
        gap: 10px; /* 进一步减小间距 */
        padding: 12px;
    }
    
    .video-action-left,
    .video-action-right {
        flex: 0 0 47%; /* 超小屏幕下各占47%，确保能容纳按钮 */
    }
    
    .video-action-btn {
        height: 40px;
        font-size: 12px;
        padding: 0 8px; /* 减小内边距以适应更小的空间 */
    }
}

/* 确保与下方压缩包下载按钮样式一致 */
.plan__btn {
    height: 48px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #1dd1a1 0%, #46c35f 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3) !important;
    transition: all 0.3s ease !important;
}

.plan__btn:hover {
    background: linear-gradient(135deg, #2ee6b8 0%, #57d470 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.4) !important;
}