@charset "utf-8";
/* CSS Document */



/*banner*/

    .vid-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    
    .vid-mtop {
        margin-top: 75px;
    }
    
    .vid-modal {
        display: none;
        text-align: center;
        margin: 0;
    }
    
    .vid-modal video {
        width: 100%;
        height: auto;
    }
    
    .vid-banner {
        width: 100%;
        height: 100vh;
        position: relative;
        overflow: hidden;
        background: #000;
    }
    
    .vid-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .vid-slides {
        list-style: none;
        height: 100%;
        margin: 0;
        padding: 0;
    }
    
    .vid-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }
    
    /* 修改视频容器为全屏居中 */
    .vid-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .vid-preview {
        /* 确保视频始终覆盖整个容器并居中 */
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }
    
    .vid-btn-container {
        position: absolute;
        bottom: 80px;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 10;
    }
    
    .vid-play-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.9);
        color: #333;
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border: none;
        font-size: 16px;
    }
    
    .vid-play-btn:hover {
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }
    
    .vid-play-btn svg {
        margin-right: 10px;
    }
    
    .vid-spacer {
        height: 20px;
    }
    
    /* 手机端样式 */
    .vid-mobile {
        display: none;
        margin-top: 75px;
        text-align: center;
    }
    
    .vid-mobile video {
        max-width: 100%;
        border-radius: 8px;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .vid-banner {
            display: none;
        }
        
        .vid-mobile {
            display: block;
        }
    }
    
    /* 弹窗样式 */
    .vid-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999999999999999;
        align-items: center;
        justify-content: center;
    }
    
    .vid-modal-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .vid-modal-content video {
        width: 90%;
        height: auto;
        max-height: 90%;
        border-radius: 8px;
    }
    
    .vid-close-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 30px;
        cursor: pointer;
        background: rgba(0,0,0,0.5);
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        transition: all 0.3s ease;
    }
    
    .vid-close-btn:hover {
        background: rgba(0,0,0,0.8);
        transform: scale(1.1);
    }
    
    .vid-title {
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        text-align: center;
        color: white;
        font-size: 36px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        z-index: 10;
    }
    
    .vid-description {
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        text-align: center;
        color: white;
        font-size: 18px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        max-width: 800px;
        margin: 0 auto;
        z-index: 10;
    }
    
    /* 弹窗视频的关闭按钮 */
    .vid-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 24px;
        cursor: pointer;
        background: rgba(0,0,0,0.7);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        transition: all 0.3s ease;
    }
    
    .vid-modal-close:hover {
        background: rgba(0,0,0,0.9);
        transform: scale(1.1);
    }
    
    /* 原视频控制按钮 */
    .vid-original-controls {
        position: absolute;
        bottom: 20px;
        right: 20px;
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    
    .vid-control-btn {
        background: rgba(0,0,0,0.6);
        color: white;
        border: none;
        border-radius: 4px;
        padding: 8px 12px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .vid-control-btn:hover {
        background: rgba(0,0,0,0.8);
    }
