/* Video container styling */
.video-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Video item styling */
.video-item {
    text-align: center;
    /* Center the text under the video */
}
/* 修改为针对 img 标签的样式 */
.video-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-container img:hover {
    transform: scale(1.05);
}

.video-container video {
    width: 60%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-container video:hover {
    transform: scale(1.05);
}

.video-item span {
    display: block;
    /* Ensure the text appears below the video */
    margin-top: 10px;
    /* Add spacing between the video and text */
}