/* 确保视频不会浮到最顶层 */
        video {
            position: relative;
            z-index: 1;
            width: 100%;
            height: auto;
        }

        /* 禁止全屏按钮 */
        video::-webkit-media-controls-fullscreen-button {
            display: none;
        }

        video::-moz-media-controls-fullscreen-button {
            display: none;
        }

        video::-ms-media-controls-fullscreen-button {
            display: none;
        }

        /* 确保视频播放器容器不会改变 */
        .video-player {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
        }


		* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #111;
            color: #fff;
        }

		.feed-container {
            max-width: 100%;
            margin: 0 auto;
        }

        h1 {
            margin-bottom: 20px;
        }

        .video-card {
            border: 0px solid #333;
			border-radius: 10px;
            margin-bottom: 20px;
            background-color: #222;
        }

        .user-info {
            display: flex;
            align-items: center;
            padding: 10px;
        }

        .user-info img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .user-details {
            display: flex;
            flex-direction: column;
        }

        .time {
            color: #888;
            font-size: 12px;
        }

        .video-description {
            padding: 10px;
        }

        .video-player video {
            width: 100%;
            border-radius: 0px 0px 0px 0px;
        }

        .interaction-buttons {
            display: flex;
            padding: 10px;
        }

        .like-button,
        .comment-button {
            display: flex;
            align-items: center;
            background-color: transparent;
            border: none;
            color: #fff;
            margin-right: 5px;
            cursor: pointer;
        }

        .like-button.liked {
            color: #ff6347;
        }


/* 在 video.css 文件中添加以下样式 */
.thumbnails {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* 从左边开始排列 */
}

.thumbnails a {
    width: calc(25% - 7.5px); /* 每行四个图片，减去间距 */
    margin-bottom: 10px;
    margin-right: 10px;
}

.thumbnails a:nth-child(4n) {
    margin-right: 0; /* 每四个图片的最后一个去掉右边距 */
}

.thumbnails img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* 为按钮添加样式 */
        .character-button {
            width: 80px;
            height: 80px;
            font-size: 30px;
            margin: 5px;
            background-color: #fd8b26; /* 浅绿色背景 */
            border: none;
            cursor: pointer;
            border-radius: 15px; /* 背景框添加圆角 */
        }