
 
.video-container {
    position: relative;
    width: 100%; /* 视频宽度 */
    height: 560px; /* 视频高度 */
    background-image: url('your-background.jpg'); /* 背景图片 */
    background-size: cover; /* 背景覆盖 */
    background-position: center; /* 背景居中 */
	  border-radius: 10px;
}
 
video {
    width: 100%;
    height: 100%;
}
 
#playButton {
    position: absolute; /* 绝对定位 */
    top: 50%; /* 垂直居中 */
    left: 50%; /* 水平居中 */
    transform: translate(-50%, -50%); /* 调整位置 */
    padding: 10px 20px; /* 内边距 */
    font-size: 16px; /* 字体大小 */
    cursor: pointer; /* 鼠标指针 */
    background-color: rgba(0,0,0,0.5); /* 背景颜色 */
    color: white; /* 文字颜色 */
    border: none; /* 无边框 */
    border-radius: 5px; /* 边框圆角 */
}