 
    /* 手機寬度時 */
    @media (max-width: 767px) {
      .block .card-body {
          /* padding: 0.5rem!important; */
          padding-left: 0.5rem!important;
          padding-right: 0.5rem!important;
      }
      .block .card-body ol, .block .card-body ul {
       padding-left: 1rem!important;
      }
  }
  .block.content-with-background{
display: flex;
position: relative;

  }
  .block.content-with-background > img{

    width: 100%;
    height: auto;
    display: block;
  
    /* 將圖片顯示在上層 */
    /* position: relative; */
    position: absolute;
    /* z-index: -1; */
  }
  .block {
padding: 0px!important;
  }
  .block.content-with-background > .content{

  /* 調整 content 的位置 */
  position: absolute;
  top: 0%; /* 可以根據需要調整垂直位置 */
  /* height: 100%; */ /* 加了100% content 會變得很大 */
  width: 100%;
   /* 可以根據需要調整水平位置 */

  /* left: 0%;
  transform: translate(-50%, -50%); */
  
  /* 設定 button 在圖片之上 */
  z-index: 1; /* 設置比圖片更高的 z-index */
  }
  .container.block_container.desktop
  {
    max-width: 1001px !important;
  }
 
    /* @media (max-width: 1400px) {
      .container.block_container.desktop
      {
        max-width: 1001px !important;
      }
  }    @media (max-width: 1200px) {
    .container.block_container.desktop
    {
      max-width: 1001px !important;
    }
} */
    .block.block_group_box {
      /* 設定框線顏色為黃色 */
      /* border: 2px solid #EFBD40;  */
      position: relative;
      padding-top: 50px; /* 讓內容避免被標題方塊覆蓋 */
      border-radius: 13px; /* 設定標題方塊圓角 */
     
    }
    .block.block_group_box.monarch_gold {
      /* 設定框線顏色為黃色 */
      border: 3px solid #EFBD40;   
 
     
    }

    
    .block.block_group_box > .block_title {
      /* 字體加粗，陰影 */
    
      z-index: 20; /* 設定標題方塊疊在內容上方 */
      position: absolute;
      top: -30px; /* 設定標題方塊往上移動 */
      /* 調整標題方塊位置 */
      /* left: -10px;  */
      left: 0px; 
      background-color: #EFBD40; /* 設定標題方塊背景色與框線相同 */
      padding: 10px 30px; /* 設定標題方塊內距 */
      transform: rotate(-7deg); /* 將標題方塊歪斜 */
    
      border-radius: 13px; /* 設定標題方塊圓角 */
      border:white 2px solid; /* 設定標題方塊框線 */
      margin: 0;
      color: #000; /* 設定標題文字顏色 */
    }
    
 
    


