video-list .block-richtext {
    margin-top: 14px;
}

video-list .video-list-container {
    width: 100%;
    margin-top: 30px;
}

video-list .item-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

video-list .item-image:has(.play-button) {
    cursor: pointer;
}

video-list .item-info {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

video-list .play-button {
    background-color: transparent;
    border: 0;
    position: absolute;
}

video-list .video-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000e6;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

video-list .video-popup.active {
    display: flex;
}

video-list .video-popup .video-body video {
    max-width: 95vw;
}

/* 播放按钮通用样式 */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* YouTube 按钮风格 */
.youtube-play {
    background: rgba(255, 0, 0, 0.65);
}

/* Hover 效果 */
.item-image:hover .play-button {
    transform: translate(-50%, -50%) scale(1.12);
}

/* 弹窗样式 */
.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.video-popup.active {
    display: flex;
}

.video-body {
    width: 80%;
    max-width: 960px;
    aspect-ratio: 16/9;
    position: relative;
    background: #000;
}