
.simple-video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 1464 / 600; /* 使用宽高比 */
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: none;
    background: #f5f5f5; /* 与下方图片背景一致 */
}

.video-element {
    width: 100%;
    height: auto; /* 高度自适应 */
    display: block;
    object-fit: contain; /* 保持比例，允许黑边 */
    background: #000; /* 视频黑边颜色 */
}

.cover-with-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5; /* 与容器背景一致 */
}

.cover-with-play img {
    width: 100%;
    height: auto; /* 高度自适应，保持原图比例 */
    object-fit: contain; /* 保持比例不变形 */
    display: block;
}

.play-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cover-with-play.hidden {
    display: none;
}

/* 确保封面图和视频的显示区域一致 */
.cover-with-play, .video-element {
    max-height: 600px; /* 根据你的图片高度调整 */
}
