section.video-gallery{
    position: relative;
    overflow: hidden;
    padding-bottom: calc(90 * var(--rpx));
    padding-top: var(--header-height-max);
}

section.video-gallery .wrapper{
    position: relative;
    z-index: 210;
    pointer-events: none;
}

section.video-gallery .breadcrumbs{
    pointer-events: all;
}

.gallery-ctn{
    height: calc(700 * var(--rpx-50));
    position: relative;
    margin-top: calc(-40 * var(--rpx-50));
}

.gallery-canvas{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gallery-ctn .btn-prev,
.gallery-ctn .btn-next{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: calc(50 * var(--rpx-75));
    height: calc(50 * var(--rpx-75));
    background: center/contain no-repeat;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: .6s cubic-bezier(0.15, 1, 0.336, 1);
}

.gallery-ctn .btn-prev{
    background-image: url("../images/btn_gallery_prev.svg");
    right: calc(50% + 215 * var(--rpx));
}

.gallery-ctn .btn-next{
    background-image: url("../images/btn_gallery_next.svg");
    left: calc(50% + 215 * var(--rpx));
}

.gallery-ctn .btn-prev:hover,
.gallery-ctn .btn-next:hover{
    transform: scale(1.1);
}

.gallery-ctn .btn-prev:active,
.gallery-ctn .btn-next:active{
    transform: scale(.9);
    transition: 0s;
}

.swiper-gallery-info{
    width: 100%;
    margin-top: calc(-60 * var(--rpx));
}

.swiper-gallery-info .swiper-slide{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gallery-info .arr{
    width: calc(19.3 * var(--rpx-75));
    height: calc(14 * var(--rpx-75));
    background: url("../images/icon_gallery_arr.svg") center/contain no-repeat;
}

.gallery-info .vid-cat{
    font-size: calc(24 * var(--rpx));
    margin-top: calc(18 * var(--rpx));
}

.gallery-info .vid-cat.hidden{
    display: none;
}

.gallery-info .vid-title{
    font-size: calc(40 * var(--rpx-50));
    line-height: calc(57em / 48);
    font-weight: bold;
    max-width: calc(8.3333vw + 560px); /* 720px @1920 → 640px @960 */
    margin-top: calc(20 * var(--rpx));

    word-break: keep-all;
    overflow-wrap: anywhere; /* 防止极端溢出 */
    line-break: strict;
}

.gallery-info .swiper-slide{
    opacity: 0;
}
.gallery-info .swiper-slide-active{
    opacity: 1;
}

.corner-icon{
    width: calc(50 * var(--rpx));
    height: calc(50 * var(--rpx));
    border-radius: calc(15 * var(--rpx));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, .1);
}

.vid-cover .corner-icon{
    display: none;
    border-radius: calc(8 * var(--rpx));
    background-color: rgba(0, 0, 0, .3);
}

.corner-icon::after{
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    bottom: 0;
    right: 0;
    margin: auto;
    background: url("../images/icon_vid_play.svg") center/contain no-repeat;
    width: calc(13% / 0.4);
    height: calc(11% / 0.4);
}

.gallery-ctn .corner-icon{
    left: 0;
    top: 0;
    position: absolute;
    z-index: 220;
}

.site-footer{
    border-top: 1px solid rgba(0, 0, 0, .15);
}

section.videos{
    position: relative;
    padding-top: calc(90 * var(--rpx));
    padding-bottom: calc(90 * var(--rpx));
}

section.value-lab::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background: linear-gradient(to right, #0000 30%, #0002, #0000 70%);
}

.video-list.value-lab{
    --column: 3;
    --gap-x: calc(50 * var(--rpx-50));
}

.vid-link{
    cursor: pointer;
    position: relative;
}

body.wfEditorMode .vid-link a.wfEditorMode{
    position: absolute;
    right: 0;
    top: 0;
    margin-top: unset;
    z-index: 250;
}

.section-title{
    margin-bottom: calc(50 * var(--rpx));
}

.style1 .vid-link{
    border-radius: calc(30 * var(--rpx));
    overflow: hidden;
    aspect-ratio: 1050/590;
}

.value-lab .vid-link{
    aspect-ratio: 500/590;
}

.vid-cover{
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.vid-cover img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s;
}

.style1 .vid-cover{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 200;
    transition: .2s;
}

.vid-link:hover .vid-cover img{
    transform: scale(1.04);
    transition: .8s cubic-bezier(0.15, 1, 0.336, 1);
}

.style1 .vid-info{
    position: absolute;
    width: calc(100% - 20 * var(--rpx-75));
    left: 0;
    right: 0;
    margin: auto;
    bottom: calc(20 * var(--rpx-75));
    z-index: 220;
    border-radius: calc(15 * var(--rpx));
    background: rgba(0, 0, 0, .5);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    padding: calc(15 * var(--rpx-75)) calc(20 * var(--rpx-75)) calc(20 * var(--rpx-75));
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    transition: .2s;
}

.style1 .vid-title{
    margin-top: calc(12 * var(--rpx));
    font-size: calc(24 * var(--rpx));
    line-height: calc(34em / 24);
    font-weight: bold;
    max-width: 80%;

    word-break: keep-all;
    overflow-wrap: anywhere; /* 防止极端溢出 */
    line-break: strict;
}

.style1 .vid-link:hover .vid-info{
    backdrop-filter: blur(30px) brightness(140%);
    -webkit-backdrop-filter: blur(30px) brightness(140%);
    background: rgba(0, 0, 0, .25);
    transition: .6s cubic-bezier(0.15, 1, 0.336, 1)
}

.style1 .corner-icon{
    position: absolute;
    right: calc(30 * var(--rpx));
    bottom: calc(30 * var(--rpx));
    z-index: 230;
}

section .btn-ctn{
    margin-top: calc(60 * var(--rpx));
    display: flex;
    justify-content: center;
}

.btn-expand::after{
    content: "";
    background-image: url("../images/icon_plus.svg");
}

.video-list{
    align-items: flex-start;
    align-content: flex-start;
}

.video-list.her-story{
    --column: 2;
    --gap-x: calc(50 * var(--rpx-50));
}

.style2 .vid-link{
    border-radius: calc(30 * var(--rpx));
    position: relative;
    aspect-ratio: 775/436;
    overflow: hidden;
}

.style2 .vid-cover{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.style2 .vid-cover::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #000f, #0000);
    opacity: .8;
    transition: .2s;
}


.style2 .vid-link:hover .vid-cover::after{
    opacity: 1;
    height: 75%;
    transition: .6s cubic-bezier(0.15, 1, 0.336, 1);
}

.style2 .vid-info{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 220;
    color: #fff;
    padding: calc(0 * var(--rpx)) calc(30 * var(--rpx)) calc(25 * var(--rpx));

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.style2 .corner-icon{
    position: absolute;
    right: calc(30 * var(--rpx));
    bottom: calc(30 * var(--rpx));
}

.style2 .vid-title{
    font-size: calc(24 * var(--rpx));
    margin-top: calc(15 * var(--rpx));
    font-weight: bold;
    max-width: 85%;
    line-height: calc(34em / 24);
}

.vid-split{
    display: flex;
    gap: calc(50 * var(--rpx));
    align-items: stretch;
}

.vid-split .left{
    flex: 0 0 calc(65% - calc(50 * var(--rpx)));
}

.vid-split .left .vid-link{
    width: 100%;
    height: auto;
    aspect-ratio: 1050/590;
}

.vid-split .left .vid-title{
    max-width: 90%;
}

.vid-split .right{
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
}

.style3 .vid-link{
    display: flex;
    gap: calc(40 * var(--rpx));
    align-items: center;
}

.vid-split .right .vid-link{
    border-top: 1px solid #0002;
}

.vid-split .right .vid-link:last-of-type{
    border-bottom: 1px solid #0002;
}

.style3 .vid-cover{
    aspect-ratio: 240/135;
    flex: 0 0 calc(240 * var(--rpx));
}

.friends .right .vid-link{
    gap: calc(20 * var(--rpx));
    width: 100%;
    flex: 0 0 33.33%;
}

.friends .right .vid-cover{
    flex: 0 0 calc(220 * var(--rpx));
}

.style3 .vid-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.style3 .vid-cover{
    border-radius: calc(15 * var(--rpx));
}

.vid-link .vid-title{
    word-break: keep-all;
    overflow-wrap: anywhere; /* 防止极端溢出 */
    line-break: strict;
}

.style3 .vid-title{
    font-size: calc(24 * var(--rpx));
    line-height: calc(34em / 24);
    font-weight: bold;
}

.right.style3 .vid-title{
    font-size: calc(18 * var(--rpx));
    line-height: calc(28em / 18);
    font-weight: normal;
}

.style3 .tag{
    margin-bottom: calc(12 * var(--rpx));
}

.friends .right .tag{
    display: none;
}

.style3 .vid-link::after{
    content: "";
    background: linear-gradient(to right, #0000, #0001, #0000);
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 200;
    transition: .2s;
}

.style3 .vid-link:hover::after{
    opacity: 1;
    transition: .4s;
}

.style3 .vid-link>.corner-icon{
    display: none;
}

.style3 .vid-cover>.corner-icon{
    display: block;
    width: calc(30 * var(--rpx-75));
    height: calc(30 * var(--rpx-75));
    position: absolute;
    right: calc(10 * var(--rpx-75));
    bottom: calc(10 * var(--rpx-75));
}

.style3 .vid-link>*{
    position: relative;
    z-index: 210;
}

.video-list.style3.style3-full{
    --column: 2;
    --gap: 0px;
    margin-top: calc(60 * var(--rpx));
    border-bottom: 1px solid #0002;
}

.video-list.style3.style3-full .vid-link{
    flex: 0 0 auto;
    padding-right: calc(40 * var(--rpx));
    padding-top: calc(50 * var(--rpx));
    padding-bottom: calc(50 * var(--rpx));
    border-top: 1px solid #0002;
}


.workshop .right{
    display: flex;
    flex-direction: column;
    gap: calc(30 * var(--rpx));
}

.workshop .right .flex-item{
    width: 100%;
    aspect-ratio: unset;
    height: calc((100% - 30 * var(--rpx)) / 2);
}

.workshop .video-list.workshop{
    margin-top: calc(60 * var(--rpx));
    --column: 2;
    --gap: calc(40 * var(--rpx));
}

.section-navigator-ctn{
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 700;
    bottom: calc(20 * var(--rpx));
}

.section-navigator{
    box-shadow: 0 0 calc(40 * var(--rpx)) rgba(0, 0, 0, .08);
    background-color: #fff;
    height: calc(80 * var(--rpx-75));
    border-radius: calc(40 * var(--rpx-75));
    padding: calc(10 * var(--rpx-75));
    pointer-events: all;
}

.section-navigator::-webkit-scrollbar{
    display: none;
}

.section-navigator-inner{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    font-size: calc(18 * var(--rpx-75));
    position: relative;
    gap: calc(5 * var(--rpx-75));
    transform-origin: center bottom;
}

.section-navigator .float-pill{
    position: absolute;
    z-index: 805;
    width: 0;
    height: calc(60 * var(--rpx-75));
    left: 0;
    top: 0;
    border-radius: calc(30 * var(--rpx-75));
    background-color: rgba(0, 0, 0, .1);
}

.section-thumb{
    padding-left: calc(27.5 * var(--rpx-75));
    padding-right: calc(27.5 * var(--rpx-75));
    border-radius: calc(30 * var(--rpx-75));
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 810;
    transition: background-color .3s;
    white-space: nowrap;
}

.section-thumb.active{
    font-weight: bold;
}

@media (min-width: 751px) {
    .section-thumb:hover{
        background-color: rgba(0, 0, 0, .05);
    }
}

.section-thumb.active:hover{
    background-color: transparent;
}

@media (max-width: 960px) {
    .video-list.value-lab{
        --gap-x: calc(30 * var(--rpx));
    }

    .style1 .vid-title{
        font-size: calc(24 * var(--rpx));
    }

    .vid-split{
        gap: calc(40 * var(--rpx));
    }

    .vid-split .left{
        flex: 0 0 calc(60% - 20 * var(--rpx));
    }

    .vid-split .right{
        flex: 0 0 calc(40% - 20 * var(--rpx));
    }

    .vid-split .right .vid-link{
        height: auto;
        padding-top: calc(30 * var(--rpx));
        padding-bottom: calc(30 * var(--rpx));
    }

    .vid-split .style2 .vid-link{
        aspect-ratio: 500/281;
    }

    .friends .right .vid-cover{
        flex: 0 0 calc(200 * var(--rpx));
    }

    .video-list.style3.style3-full .vid-link{
        gap: calc(30 * var(--rpx));
    }

    .video-list.style3.style3-full .vid-link:nth-of-type(2n){
        padding-right: 0;
        padding-left: calc(20 * var(--rpx));
    }

    .video-list.style3.style3-full .vid-link:nth-of-type(2n+1){
        padding-right: calc(20 * var(--rpx))
    }

    .video-list.style3-full{
        align-items: stretch;
    }

    .style3.style3-full .vid-cover{
        width: calc(210 * var(--rpx));
    }
}

@media (max-width: 750px) {
    .section-navigator{
        max-width: var(--wrapper-width);
        bottom: var(--wrapper-margin);
        overflow: auto;
    }

    .section-navigator-inner{
        width: fit-content;
        font-size: calc(24 * var(--rpx));
    }

    .gallery-ctn{
        margin-top: 0;
        height: calc(640 * var(--rpx));
    }

    .video-list.value-lab{
        --column: 2;
        --gap-x: calc(20 * var(--rpx));
        --gap-y: calc(20 * var(--rpx));
    }

    .video-list.her-story{
        --column: 1;
        --gap-y: calc(30 * var(--rpx));
    }

    .vid-info .tag{
        display: none;
    }

    .style1 .vid-info{
        width: calc(100% - 20 * var(--rpx));
        bottom: calc(10 * var(--rpx));
    }

    .style1 .vid-title{
        margin-top: 0;
    }
    .style2 .vid-title{
        font-size: calc(28 * var(--rpx));
    }

    .vid-split{
        display: flex;
        flex-direction: column;
    }

    .vid-split .left{
        width: 100%;
        flex: 0 0 auto;
    }

    .vid-split .right{
        width: 100%;
        flex: 0 0 auto;
    }

    .style3 .vid-link .vid-cover,
    .style3.style3-full .vid-link .vid-cover{
        flex: 0 0 calc(360 * var(--rpx));
    }

    .right.style3 .vid-title,
    .style3.style3-full .vid-title{
        font-size: calc(28 * var(--rpx));
        font-weight: bold;
    }

    .right.style3 .vid-link,
    .style3.style3-full .vid-link{
        gap: calc(30 * var(--rpx));
    }

    .style3 .vid-cover>.corner-icon{
        width: calc(40 * var(--rpx));
        height: calc(40 * var(--rpx));
    }

    .video-list.style3.style3-full{
        --column: 1;
    }

    .video-list.style3.style3-full .vid-link:nth-of-type(2n),
    .video-list.style3.style3-full .vid-link:nth-of-type(2n+1){
        padding-left: 0;
        padding-right: 0;
    }

    .video-list.style3.style3-full{
        margin-top: 0;
    }

    .video-list.style3.style3-full .vid-link:first-of-type{
        border-top: none;
    }

    section.videos{
        padding-top: calc(20 * var(--rpx) + var(--header-height-max));
        padding-bottom: calc(40 * var(--rpx));
    }

    section .btn-ctn{
        margin-top: calc(40 * var(--rpx));
    }

    .gallery-info .vid-title{
        max-width: var(--wrapper-width);
        font-size: calc(40 * var(--rpx));
    }
}


