/*Created by Chrise*/
.welcome-text {
  display: block;
  text-align: center;
  color: gray;
  margin-bottom: 33px
}

.welcome-text h3 {
  display: block;
  font-weight: 700;
  color: #333;
  font-size: 24px
}

.welcome-text span a {
  font-weight: 500
}

.welcome-text span {
  display: block;
  margin-top: 4px
}


.video-container {
   position: relative;
   width: 100%; /* Adjust based on your layout */
   height: 0;
   /*padding-bottom: 56.25%; !* Aspect ratio for 16:9 *!*/
   padding-bottom: 66.66%; /* Aspect ratio for 3:2 */
 }

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  /*background: url('path_to_play_icon.png') no-repeat center center;*/
  /*background-size: contain;*/
  border: none;
  cursor: pointer;
  background-color: transparent; /* 设置背景透明 */
  z-index: 10;
}

.video-container .ai-image-hover {
  /* Existing styles */
  z-index: 5; /* Lower than play button */
}

.video-container .play-button i {
  width: 100%; /* 设置宽度为父元素的100% */
  height: 100%; /* 设置高度为父元素的100% */
  display: block; /* 使i元素表现得像块级元素 */
  font-size: 48px;
  color: white;
  opacity: 0.9; /* 设置透明度为70% */
}

