    .video-container {
        position: relative;
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        background: #000;
        border-radius: 8px;
        overflow: hidden;
    }

    .video-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 35%;
        overflow: hidden;
    }

    video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://omo-oss-image.thefastimg.com/portal-saas/pg2025111119572817669/cms/image/715c3bcc-31ae-46dd-8b2d-0fa8ca857e7f.png');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        pointer-events: auto;
    }

    .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(60%, -50%);
        text-align: center;
        color: #000;
        width: 30%;
    }

    .title {
        font-size: clamp(24px, 3vw, 42px);
        margin-bottom: 20px;
        font-weight: 600;
        font-family: "montserrat-regular-8";
        text-align: left;
        color: #000;
    }
    .summary {
        font-size: clamp(12px, 3vw, 14px);
        margin-bottom: 20px;
        line-height: 1.8;
        font-weight: 100;
        font-family: "montserrat-light-6";
        text-align: left;
        color: #000;
    }

    .btn {
        display: block;
        position: relative;
        overflow: hidden;
        text-align: center;
        box-sizing: border-box;
        width: calc(140px + (190 - 140) * ((100vw - 1024px) / (1920 - 1024)));
        padding: 8px;
        margin-right: auto;
        margin-left: 0px;
        max-width: calc(140px + (190 - 140) * ((100vw - 1024px) / (1920 - 1024)));
        background-color: rgba(255, 255, 255, 1);
        color: rgba(26, 26, 26, 1);
        font-size: calc(13px + (16 - 13) * ((100vw - 1024px) / (1920 - 1024)));
        font-family: "montserrat-regular-8";
        border-style: none;
        border-color: rgba(64, 158, 255, 0);
        border-width: 1px;
        border-radius: 50px;
        margin-top: calc(10px + (30 - 10) * ((100vw - 1024px) / (1920 - 1024)));
        transition: all 0.4s;
    }

    .btn:hover {
        transition: all 0.4s;
        background: rgba(231,146,23,1);
        color: #fff;
    }

    @media (min-width: 1921px) {
        .video-container {
            max-width: 1600px;
        }
    }

    @media (max-width: 1920px) and (min-width: 1025px) {
        .video-container {
            width: 96vw;
            max-width: 1600px;
            margin: 0 auto;
        }
    }

    @media (max-width: 1024px) {
        .video-container {
            width: 96vw;
            margin: 0 auto;
        }
        
        .video-wrapper {
            padding-bottom: 56.25%; /* 16:9比例备用 */
        }
    }

    @media (max-width: 768px) {
        .content {
            width: 90%;
        }
        
        .title {
            margin-bottom: 15px;
        }
    }