/* video-player.css */
/* 视频播放组件样式 */

.video-player-container {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-player-container .img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.play-btn-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-btn-container:hover {
    background: rgba(0, 0, 0, 0.6);
}

.play-btn1 {
    width: 80px;
    height: 80px;
    background: #d07405;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(208, 116, 5, 0.5);
    animation: videoPlayerPulse 2s infinite;
}

.play-btn1:hover {
    transform: scale(1.1);
    background: #d07405;
    box-shadow: 0 8px 25px rgba(208, 116, 5, 0.7);
}

.play-btn1 i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.video-content video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.close-btn {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(208, 116, 5, 0.8);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
}

.close-btn:hover {
            background: #d07405;
            transform: rotate(90deg);
}

@keyframes videoPlayerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(208, 116, 5, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(208, 116, 5, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(208, 116, 5, 0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .play-btn1 {
        width: 70px;
        height: 70px;
    }
    
    .video-content {
        width: 95%;
    }
}