/* 趣味动画页面样式 */
        .animation-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3.5vw;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
        }
        
        .video-item {
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .video-content p {
            color: white;
            font-size: 1rem;
            margin: 0;
            line-height: 1.6;
        }
        
        .video-title {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
            font-weight: normal;
        }
        
        .video-thumbnail {
            width: 100%;
            max-width: 800px;
            height: 450px;
            background-color: #E0E0E0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            margin-bottom: 10px;
        }

        .video-thumbnail video{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        
        
        @media (max-width: 768px) {
            .video-title {
                font-size: 1rem;
            }
            
            .video-thumbnail {
                height: 200px;
            }
        }