.page-wrapper {
    max-width: 1260px; 
    margin: 0 auto;
  }

  /* 上方圖片：依照螢幕變更大小，但維持比例 */
  .banner-img {
    width: 100%; /* 隨螢幕縮放 */
    max-width: 1230px; 
    height: auto;
    aspect-ratio: 1280 / 850; /* 維持比例 */
    display: block;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .content-text {
    max-width: 1230px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
  }

  /* 下方容器：確保內容不被擠壓 */
  .container-scroll {
    width: 100%;
    overflow-x: auto; /* 若螢幕太小，允許水平捲動以保護表格尺寸 */
  }

  /* 排版表格：寬度固定，不隨螢幕變動 */
  .layout-table {
    width: auto; /* 依照內容（圖片）變更寬度 */
    border-collapse: separate;
    border-spacing: 20px 0;
    margin-left: -20px;
  }

  .product-box-cell {
    width: 500px; /* 依照您的圖片寬度固定 */
    vertical-align: top;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  /* 下方圖片：固定尺寸，不隨寬度變更 */
  .img_td img {
    display: block;
    width: 500px;  /* 固定寬度 */
    height: 250px; /* 固定高度 */
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }
@media (max-width: 768px) {

  .layout-table,
  .layout-table tbody,
  .layout-table tr,
  .product-box-cell {
    display: block;
    width: 100%;
  }

  .layout-table {
    margin-left: 0;
    border-spacing: 0;
  }

  .product-box-cell {
    margin-bottom: 20px;
  }

  .img_td img {
    width: 100%;
    height: auto; /* 手機版建議不要鎖高 */
  }
}
  .text_td {
    padding: 15px;
    text-align: left;
  }

  h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
  }

  .see-more-link {
    color: #0e4778 !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
  }