.main_bg_01 {
  
    background-image: url(../images/main_bg_01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 auto;
    position: relative; /* 添加相對定位 */
    padding: 0; /* 移除內邊距 */
    overflow: hidden; /* 防止內容溢出 */
    background-attachment: fixed;
}
/* 影片容器基本樣式 */
.videoContainer {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}

/* 確保 iframe 在容器內正確顯示 */
.videoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 標準 16:9 比例 */
.ratio-16x9 {
  --aspect-ratio: 56.25%;
  padding-bottom: var(--aspect-ratio);
}

/* 直向影片 - 9:16 比例 */
.ratio-9x16 {
  --aspect-ratio: 177.78%;
  padding-bottom: var(--aspect-ratio);
}

/* 正方形影片 - 1:1 比例 */
.ratio-1x1 {
  --aspect-ratio: 100%;
  padding-bottom: var(--aspect-ratio);
}

/* 寬螢幕影片 - 1.91:1 比例 (類似 21:9) */
.ratio-191x1 {
  --aspect-ratio: 52.36%;
  padding-bottom: var(--aspect-ratio);
}

/* 4:3 比例 (額外提供) */
.ratio-4x3 {
  --aspect-ratio: 75%;
  padding-bottom: var(--aspect-ratio);
}

.one_banner img {
    border-radius: 15px;
}