        .video-modal-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 99999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 15px;
            box-sizing: border-box;
        }

        .video-modal-wrap {
            position: relative;
            width: 100%;
            max-width: 1024px;
        }

        .video-modal-close {
            position: absolute;
            right: 0px;
            top: -44px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            color: #ffffff;
            font-size: 34px;
            cursor: pointer;
            user-select: none;
            z-index: 10;
        }

        .video-box {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000000;
            border-radius: 4px;
            overflow: hidden;
        }

        .video-box video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .open-video-link {
            cursor: pointer;
            text-decoration: none;
        }

        .openVideoBtn {
            cursor: pointer;
            text-decoration: none;
        }