/* 2025-05-01 Design Note by Vincent：
background-image取的路徑要配合「測試機&正式機」的路徑，因故特此創立本css檔。
說明：
../images/icon-12px-down-green.png
/images/icon-12px-down-green.png

上述「..」可能導致local編譯的時候失敗，但移除的話會導致測試機取不到圖片檔路徑。
*/
/* 2025-05-01 補充說明
最後還是把IHKE3713所有相關的自訂class都帶過來了
*/

/* 使用說明 按鈕相關↓↓↓ */
.btn-wrap-1 {
    display: flex;
    margin-top: -1.875em;
  }
  .btn-align-center {
    justify-content: center;
  }
  .more-info-btn {
    margin-left: 5px;
    padding-right: 1.25em;
    background-image: url(../images/icon-12px-down-green.png);
    background-repeat: no-repeat;
    background-position: right center;
  }
  .more-info-btn.close {
    display: inline-block;
    margin-left: 5px;
    padding-right: 1.25em;
    background-image: url(../images/icon-12px-up-green.png);
    background-repeat: no-repeat;
    background-position: right center;
  }
  /* 使用說明 按鈕相關↑↑↑ */
  
/* 使用說明 文字內容區塊相關↓↓↓ */
.more-info-block {
    /* background-color: #D7F1F5; */
    padding: 0.625em;
    color: #4e4e4e;
    /* position: absolute; */
    left: 140px;
    bottom: 0;
    /* width: 225px; */
    font-size: 16x;
    display: none;
    border: 1.25px solid var(--Cyan-color);
    margin: 0.313em;
  }
  .card-body {
    border: dashed 1px #187483;
    border-radius: 5px;
    padding: 1.25em;
  }
  .info-open {
    display: block;
  }
  
  .bold-paragraph { /* 段落文字放大變粗 */
    font-weight:900;
    font-size:1.5em;
    line-height: 1.6;
  }
  /* 使用說明 文字內容區塊相關↑↑↑ */
  
  /* 題目及答案相關樣式↓↓↓ */
  .ques-font { /* 粗字體 */ 
    line-height: 1.5em;
    padding: 0.5em 0 0.5em 0;
  }
  .ques-indent {  /* 縮排 */ 
    font-weight: bold;
    text-indent: -1em;
  }
  /* 題目及答案相關樣式↑↑↑ */
  
  /* 自訂樣式↓↓↓ */
   .red-underline { /* 紅色粗體+底線 */
    color:red;
    font-weight:800;
    text-decoration:underline;
   }
  /* 自訂樣式↑↑↑ */