.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    height: 100vh; /* 设定 100% 视窗高度 */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mySlides {
    text-align: center; /* 水平居中 */
  }
  
  .mySlides img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 或者使用 object-fit: cover; */
  }
  .mySlides img {
    width: 40%; /* 调整为适当的百分比 */
    height: auto;
  }
  .mySlides img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 或者使用 object-fit: cover; */
    transform: translateX(200%); /* 将图像水平移到最右边 */
  }