        .Bestsellers-container {
            font-family: Inter, sans-serif;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 30px;
            width: 96%;
            margin: 0 auto;
        }
       
     

        .Bestsellers-module {
            background-color: #f0f0f0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .Bestsellers-module img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        /* 设置每个模块的占位 */
        .Bestsellers-module-1 {
            grid-column: 1;
            grid-row: 1 / span 1;
        }

        .Bestsellers-module-2 {
            grid-column: 1;
            grid-row: 2 / span 1;
        }

        .Bestsellers-module-3 {
            grid-column: 2;
            grid-row: 1 / span 2;
            position: relative;
            /* 确保子元素可以相对于父元素定位 */
            overflow: hidden;
        }

        .Bestsellers-module-3 video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* 确保视频充满父元素，可能会裁剪 */
        }

        .Bestsellers-module-3 .Bestsellers-overlay {
            position: absolute;
            /* 绝对定位，覆盖在视频上方 */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            /* 半透明黑色遮罩 */
            display: flex;
            justify-content: flex-start;
            align-items: center;
            z-index: 10;
            /* 确保遮罩层在视频之上 */
            color: white;
            /* 文本颜色为白色 */
            box-sizing: border-box;
        }

        .Bestsellers-overlay .Bestsellers-content {
            text-align: left;
            /* 文本左对齐 */
            max-width: 300px;
            /* 限制内容宽度 */
            padding: 16px;
            border-radius: 8px;
        }

        .Bestsellers-overlay h2 {
            margin: 0 0 10px 0;
            /* 下方留出一些间距 */
            font-size: 24px;
            font-family: Lab Grotesque !important;
            font-weight: bold;
        }

        .Bestsellers-overlay p {
            font-weight: 300;
            margin: 0 0 6px 0;
            /* 段落底部间距 */
            font-size: 16px;
            line-height: 1.4;
        }

        .Bestsellers-overlay a {
            color: #fff;
            font-size: 16px;
            /* 按钮文本颜色 */
            text-decoration: underline;
            text-underline-offset: 10px;
            display: block;
            margin-top: 20px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        /* 新增左下角文本模块 */
        .bottom-left-Bestsellers-overlay {
            position: relative;
            bottom: 132px;
            left: 0px;
            /* background-color: rgba(0, 0, 0, 0.7); */
            color: white;
            padding: 10px 15px;
            border-radius: 4px;
            max-width: 90%;
            box-sizing: border-box;
        }

        .bottom-left-Bestsellers-overlay p {
            margin: 0 0 5px 0;
            font-size: 14px;
        }

        .bottom-left-Bestsellers-overlay h2 {
            margin-bottom: 20px;
            font-size: 24px;
            margin-top: 0px;
            font-family: Lab Grotesque !important;
        }

        .bottom-left-Bestsellers-overlay a {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 8px;
            font-size: 16px;
            font-weight: bold;
        }

        .Bestsellers-module-3-p-update {
            color: #d3d3d3;
        }
        .Bestsellers-container .Bestsellers-container-a {
            text-decoration: none;
        }



        /* 响应式设计：移动端调整布局 */
        @media (max-width: 448px) {
            .Bestsellers-container {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .Bestsellers-module-1 {
                grid-column: 1;
                grid-row: 1;
            }

            .Bestsellers-module-3 {
                grid-column: 1;
                grid-row: 2;
                height: 350px;
            }

            .Bestsellers-module-2 {
                grid-column: 1;
                grid-row: 3;
            }

            .Bestsellers-overlay .Bestsellers-content {
                max-width: 90%;
                /* 在移动端更窄的宽度 */
            }
        }
      