@charset "utf-8";
/* ==========================================================================
   1. Reset CSS (整合原 reset.css)
   ========================================================================== */
* { font-size: 14px; box-sizing: border-box; }
header, menu, nav, section, footer, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td { margin: 0; padding: 0; }
fieldset, img { border: 0; }
:focus { outline: 0; }
abbr, acronym { border: 0; font-variant: normal; }
input, button, textarea, select, optgroup, option { font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit; }
code, kbd, samp, tt { font-size: 100%; }
input, button, textarea, select { *font-size: 100%; }
body { line-height: 1.5; }
ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
caption, th { text-align: left; }
sup, sub { vertical-align: baseline; vertical-align: super; font-size: smaller; }
:link, :visited, ins { text-decoration: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
* tr td { overflow: hidden; word-break: break-all; }
img { margin: 0; vertical-align: middle; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: optimize-contrast; -ms-interpolation-mode: nearest-neighbor; }
strong { font-weight: bolder; }
input[type="button"], input[type="submit"] { cursor: pointer; transition: .5s; }
input[type="button"]:hover, input[type="submit"]:hover { filter: brightness(1.2); }

/* ==========================================================================
   2. Base Styles & Theme Colors (2026 橘色系主題)
   ========================================================================== */
:root {
  --theme-orange: #E75A0D;
  --theme-orange-dark: #C44500;
  --theme-yellow: #fff100;
  --theme-blue: #0A3187;
  --text-dark: #231815;
  --text-light: #ffffff;
  --bg-dark-overlay: rgba(3, 8, 26, 0.8);
  --bg-orange-overlay: rgba(231, 90, 13, 0.9);
}

*, body, h1, h2, h3, h4, h5, h6, a, p, select { font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif, Arial, Helvetica; }
::selection, ::-moz-selection { background: var(--theme-blue); color: var(--text-light); }
a { transition: 0.5s; }
.mob { display: none !important; }

html { height: 100%; margin: 0; background: var(--theme-orange); }
body { margin: 0; min-height: 100%; }
.CleanFormat { clear: both; }
#article::after, section::after, header::after, .pageContent::after { content: ""; display: block; clear: both; }

/* 頁面底圖: 使用自訂圖片 bg.jpg */
.PageBg {
  display: block; position: fixed; width: 100%; height: 100vh; top: 0; left: 0;
  background: #E75A0D url("../images/bg.jpg") center center no-repeat;
  background-size: cover;
  z-index: -1;
}

#warp { display: block; position: relative; background: transparent; }
article { position: relative; padding: 7.5vw 0 5vw; }

/* 全域區塊設定，確保每個卡片都有固定底部間距 */
section { position: relative; width: 65%; max-width: 1200px; margin: 0 auto 4vw auto; border-radius: 10px; }
.view_w { display: block; }
.view_m { display: none; }

/* ==========================================================================
   3. Header & Menu
   ========================================================================== */
header { display: block; position: fixed; z-index: 50; top: 0; left: 0; width: 100%; }
header #header { position: relative; background: rgba(231, 90, 13, 0); padding-top: 5.209vw; transition: 0.5s; }

/* 縮小 Logo 尺寸並設定精準的垂直置中 */
header #header .Logo { display: block; position: absolute; top: 2.6vw; transform: translateY(-50%); left: 2vw; height: 2.8vw; }
header #header .Logo a { display: inline-block; height: 100%; text-decoration: none; }
header #header .Logo img { display: block; width: auto; height: 100%; transition: filter 0.5s; }
header.active #header .Logo img { filter: drop-shadow(0px 0px 1px rgba(7, 50, 135, 1)) drop-shadow(0px 0px 3px rgba(7, 50, 135, 0.7)); }
header.active #header { background: rgba(5, 56, 147, 0.85); box-shadow: 0 2px 10px rgba(0,0,0,0.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

nav.Menu { display: block; position: absolute; top: 0.521vw; right: 2.5vw; height: 4.167vw; }
nav.Menu > ul { display: inline-block; vertical-align: middle; font-size: 0; }
nav.Menu > ul > li { display: inline-block; position: relative; margin-left: 2.5vw; }
nav.Menu > ul > li:first-child { margin-left: 0; }
nav.Menu > ul > li > a { display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 1.2vw; font-weight: bold; transition: color 0.3s, filter 0.3s; }
nav.Menu > ul > li > a.Light { color: var(--theme-yellow); }
nav.Menu > ul > li.active > a, nav.Menu > ul > li.SubOpen > a, nav.Menu > ul > li > a:hover { color: var(--theme-yellow); filter: drop-shadow(0px 0px 6px rgba(255,255,255,0.8)); }

/* 電腦版選單自動展開 & 調整選單寬度 */
@media (min-width: 769px) {
    nav.Menu > ul > li:hover .SubMenu { display: block; }
    ul.SubMenu { width: auto; min-width: 9vw; }
    ul.SubMenu li a { padding: 0.5vw 1.2vw; white-space: nowrap; }
}

/* 選單箭頭 SVG 樣式 */
.menu-arrow { margin-left: 6px; transition: transform 0.3s; }
nav.Menu > ul > li.SubOpen > a .menu-arrow, nav.Menu > ul > li:hover > a .menu-arrow { transform: rotate(180deg); }

nav.Menu::after { content: ""; display: inline-block; vertical-align: middle; width: 0px; height: 100%; }

/* 修正次選單 Hover 斷層：加入 padding-top 作為感應橋樑 */
ul.SubMenu { position: absolute; left: 50%; transform: translateX(-50%); top: 100%; padding-top: 1.2vw; display: none; z-index: 1; }
ul.SubMenu li { display: block; margin-bottom: 0.2605vw; }
ul.SubMenu li a { display: block; font-size: 1vw; font-weight: bold; color: var(--theme-yellow); background: #053893; text-align: center; border-radius: 100px; padding: 0.5vw 1vw; transition: 0.3s; }
ul.SubMenu li a:hover { background: var(--theme-yellow); color: #053893; }

/* 選單日期星期圓圈設計 */
ul.SubMenu li a .DayCircle {
  display: inline-block;
  width: 1.6vw;
  height: 1.6vw;
  line-height: 1.6vw;
  background-color: #fff;
  color: #053893;
  border-radius: 50%;
  text-align: center;
  margin: 0 0.3vw;
  font-size: 0.9vw;
  vertical-align: middle;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: 0.3s;
}
ul.SubMenu li a:hover .DayCircle { background-color: #053893; color: var(--theme-yellow); }

.MobileMenu { display: none; position: absolute; top: 15px; right: 10px; z-index: 51; }
.MobileMenu a { display: block; width: 40px; height: 40px; transition: 0.5s; }
.MobileMenu a span { display: block; background: #fff; height: 3px; border-radius: 3px; position: absolute; right: 0; transition: 0.5s; }
.MobileMenu a span:first-child { width: 33%; margin-bottom: 8px; top: 0; }
.MobileMenu a span:nth-child(2) { width: 66%; margin-bottom: 8px; top: 10px; }
.MobileMenu a span:nth-child(3) { top: 20px; width: 100%; }
.MobileMenu a p { position: absolute; bottom: 0; font-size: 0.7rem; letter-spacing: 1.2px; font-weight: bold; color: #fff; transition: 0.5s; width: 100%; text-align: center; }
/* 修正：漢堡選單開啟時，叉叉圖示變為黃色 */
.MobileMenu.active a span { background: var(--theme-yellow); }
.MobileMenu.active a span:first-child { width: 100%; top: 30%; transform: rotate(45deg); }
.MobileMenu.active a span:nth-child(2) { opacity: 0; right: 22%; }
.MobileMenu.active a span:nth-child(3) { top: 30%; transform: rotate(-45deg); }
.MobileMenu.active a p { color: var(--theme-yellow); }

/* 頁面名稱標籤 */
.PageName { text-align: right; width: auto; min-width: 15vw; padding: 0.5vw 2vw; background: rgba(255, 255, 255, 0.95); color: var(--theme-orange); font-size: 1.5vw; font-weight: bold; border-top-right-radius: 100px; border-bottom-right-radius: 100px; display: inline-block; margin-top: 2vw;}

/* ==========================================================================
   4. 首頁 主視覺 (KV Video & SVG)
   ========================================================================== */
.IndexKV {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-orange);
  padding-bottom: 8vh; 
}
.IndexKV .kv-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translateX(-50%) translateY(-50%); z-index: 0; object-fit: cover; }
.IndexKV .kv-overlay { position: relative; z-index: 1; text-align: center; width: 90%; max-width: 1000px; display: flex; flex-direction: column; align-items: center; margin-top: 5vw; }

/* 整合後的主視覺圖片控制 */
.kv-overlay .kv-img { width: 85%; max-width: 750px; margin-bottom: 2vw; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4)); }

/* ==========================================================================
   5. 內頁共用 (Agenda, Speaker, Signup)
   ========================================================================== */

/* 修正 Section 透明度問題，移除 padding 讓卡片邊緣正常顯示 */
section#info { background: transparent; box-shadow: none; }

/* 區塊標題設計 */
.SectionTitle { font-size: 2vw; font-weight: bold; text-align: center; margin-bottom: 0; padding: 1vw 0; border-radius: 10px 10px 0 0; }
.speakerGroupTitle { color: #fff; background: var(--theme-blue); }

/* 講者特別分類標題：質感橫線設計 */
.SessionHeading {
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8vw; font-weight: bold; color: var(--theme-blue);
    margin: 3vw 0 2.5vw; text-align: center;
}
.SessionHeading::before, .SessionHeading::after {
    content: ""; flex: 1; height: 2px;
    background: rgba(10, 49, 135, 0.2); margin: 0 1.5vw;
}

/* 內部容器 */
.AgBox { padding: 3vw; background: rgba(255, 255, 255, 0.95); border-radius: 0 0 10px 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* 場次圓角標籤整合至標題 - 無底色，字體放大匹配標題 */
.NTP_EventTitle { display: flex; align-items: center; justify-content: center; gap: 1vw; font-size: 2.8vw; text-align: center; color: var(--theme-blue); font-weight: bolder; margin-bottom: 1.5vw; }
.EventBadge { display: inline-block; color: var(--theme-blue); font-size: inherit; font-weight: bold; line-height: 1.2; }

/* 活動資訊重構靠左對齊並整體置中 */
.EventInfo { display: flex; flex-direction: column; align-items: flex-start; margin: 0 auto 2vw; width: fit-content; gap: 0.8vw; }
.EventInfo li { display: flex; align-items: flex-start; text-align: left; }
.EventInfo li .InfoLabel { font-weight: bold; color: var(--text-dark); font-size: 1.2vw; white-space: nowrap; }
.EventInfo li .InfoValue { color: var(--text-dark); font-size: 1.2vw; }
.EventInfo li .Week { display: inline-block; font-size: inherit; margin-left: 0.2vw; }

/* 地點連結不換行 (全域電腦版) */
.PlaceText { font-size: 1.2vw !important; font-weight: normal; }
.PlaceText a { font-size: 1.2vw !important; font-weight: normal; }

/* 表格與列表 */
.AgTable li.toggle-row { display: flex; padding: 1vw; font-size: 0; align-items: center; border-bottom: 1px solid #eee; }
.AgTable li.toggle-row:nth-child(odd) { background: #fdfdfd; }
.AgTable li.toggle-row:nth-child(even) { background: #fff; }

/* 強制奪回橘色表頭權重 */
.AgTable li.AgTableHead { background: var(--theme-orange) !important; border-radius: 8px 8px 0 0; border: none; }
.AgTable li.AgTableHead div { color: #FFF !important; font-size: 1.2vw !important; font-weight: bold; text-align: center; }

.AgTable li.toggle-row > div:nth-child(1) { text-align: center; width: 20%; font-size: 1.1vw; font-weight: bold; color: var(--text-dark); }
.AgTable li.toggle-row > div:nth-child(2) { text-align: center; width: 15%; font-weight: bold; font-size: 1vw; color: #666; }
.AgTable li.toggle-row > div:nth-child(3) { width: 65%; font-size: 1.1vw;}

.AgTable li.toggle-row .AgTag { display: inline-block; padding: 0.3vw 0.8vw; color: #ffffff; background: var(--theme-blue); font-size: 0.9vw; border-radius: 5px; margin-bottom: 0.5vw; position: relative;}
.VideoPlayTag { display: block; font-size: inherit; position: absolute; left: 105%; top: 0.3vw; color: #555; white-space: nowrap; }
/* 議程標題大幅放大 */
.AgTable li.toggle-row .AgTitle { font-size: 1.5vw; font-weight: bold; color: var(--theme-orange-dark); margin-bottom: 0.5vw; }

/* 全域電腦版：講者姓名與單位對齊 */
.AgTable li.toggle-row .AgSpeaker { display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: baseline; gap: 0.4vw; margin-top: 0.5vw; line-height: 1.5; }
.AgTable li.toggle-row .AgSpeaker span { display: inline-block; }
/* 因為 HTML 是 <span 職稱> <span 姓名>，所以 nth-child(1) 是職稱，nth-child(2) 是姓名。透過 order 調換顯示順序 */
.AgTable li.toggle-row .AgSpeaker span:nth-child(1) { order: 2; font-size: 1.1vw; color: #555; font-weight: normal; }
.AgTable li.toggle-row .AgSpeaker span:nth-child(2) { order: 1; font-size: 1.4vw; font-weight: bold; color: var(--theme-blue); margin-right: 0.5vw; }

/* 座談會與談人排版 (全域電腦版：置左對齊、有橘色點、不帶虛線) */
.PanelistGroup { width: 100%; display: block; text-align: left; margin-top: 0.5vw; }
.PanelistGroup .PanelistTitle { font-size: 1.1vw; font-weight: bold; color: var(--text-dark); margin-bottom: 0.3vw; }
.PanelistGroup ul { list-style-type: none; padding-left: 0; margin-top: 0.2vw; display: block; width: 100%; }
.PanelistGroup ul li { position: relative; padding-left: 1vw; display: block; padding-bottom: 0; margin-bottom: 0.2vw; border-bottom: none; font-size: 1.1vw; color: #555; }
.PanelistGroup ul li::before { content: "•"; position: absolute; left: 0; color: var(--theme-orange); }
/* 因為與談人 HTML 本身就是 <span 姓名> <span 職稱>，順序正確，不需使用 order */
.PanelistGroup ul li span:nth-child(1) { font-size: 1.4vw !important; font-weight: bold !important; color: var(--theme-blue) !important; margin-right: 0.4vw; }
.PanelistGroup ul li span:nth-child(2) { font-size: 1.1vw !important; color: #555 !important; font-weight: normal !important; }

/* 議程合併儲存格與可點擊收合設計 (平滑收合) */
.AgTable > ul > li.AgTableFull { 
    display: flex; justify-content: space-between; align-items: center; 
    background: var(--theme-blue); color: #fff; 
    padding: 1vw 1.5vw; font-size: 1.4vw; font-weight: bold; border-radius: 5px; 
    margin: 1vw 0 0 0; border-bottom: 1px solid rgba(255,255,255,0.1); 
    cursor: pointer; transition: background 0.3s; 
}
.AgTable > ul > li.AgTableFull span { font-size: inherit; } 
.AgTable > ul > li.AgTableFull:hover { background: #1142a8; }

.toggle-status { display: flex; align-items: center; font-size: 1.2vw; color: var(--theme-blue); background: var(--theme-yellow); padding: 0.6vw 1.5vw; border-radius: 50px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.toggle-status span { font-size: inherit !important; }
.toggle-status svg { margin-left: 0.5vw; transition: transform 0.3s ease; color: var(--theme-blue); }
.AgTable > ul > li.AgTableFull.collapsed .toggle-status svg { transform: rotate(90deg); } 

/* 講者介紹 */
.speakerList ul li { display: inline-block; vertical-align: top; margin-bottom: 3vw; text-align: center; width: 48%; margin-right: 3%; }
.speakerList ul li:nth-child(even) { margin-right: 0; }
.speakerList ul li > div:nth-child(1) img { width: 75%; border-radius: 50%; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border: 5px solid var(--theme-blue); margin-bottom: 1vw; }
.speakerList ul li > div:nth-child(2) { font-size: 1.6vw; font-weight: bold; color: var(--theme-orange); }
.speakerList ul li > div:nth-child(3) { margin-bottom: 1vw; height: auto; }
.speakerList ul li > div:nth-child(3), .speakerList ul li > div:nth-child(3) span { color: #555; font-size: 1.3vw; font-weight: 500; }
.speakerList ul li > div:nth-child(4) a { display: block; width: 60%; background: var(--theme-blue); color: #FFF; font-size: 1.2vw; margin: 0 auto; border-radius: 50px; padding: 0.5vw; font-weight: bold; }
.speakerList ul li > div:nth-child(4) a:hover { background: var(--theme-orange); }

/* ======== 講者介紹區塊內的分類子標題 (上午場/下午場) - 兩側虛線樣式 ======== */
.speakerList .PanelistTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 2.5vw auto !important;
    font-size: 1.8vw !important;
    font-weight: bold;
    color: var(--theme-blue);
    letter-spacing: 2px;
}
.speakerList .PanelistTitle::before,
.speakerList .PanelistTitle::after {
    content: "";
    flex: 1;
    border-top: 1px dashed #ccc;
}
.speakerList .PanelistTitle::before { margin-right: 1.5vw; }
.speakerList .PanelistTitle::after { margin-left: 1.5vw; }

/* 彈跳視窗 Pup (調高圖層確保蓋過浮動按鈕) */
.Pup { display: none; width: 100%; height: 100vh; position: fixed; top: 0; left: 0; text-align: center; background: rgba(0, 0, 0, 0.7); z-index: 100; overflow: auto; }
.Pup::after { content: ""; display: inline-block; vertical-align: middle; height: 100%; }
/* 縮小 PupBk 最大寬度至 900px */
.Pup .PupBk { display: inline-block; vertical-align: middle; width: 90%; max-width: 900px; background: #fff; border-radius: 10px; overflow: hidden; }
.Pup .PupContent { padding: 2vw; text-align: left; }
.Pup .PupCloseBtn a { display: block; padding: 1vw 0; background: #eee; color: #333; font-size: 1.2vw; font-weight: bold; text-align: center; }
.Pup .PupCloseBtn a:hover { background: var(--theme-orange); color: #fff; }

#speakerDataList li { display: none; text-align: center; }
/* 修改講師彈窗照片尺寸比例為 40% */
#speakerDataList li > div:nth-child(1) img { width: 40%; border-radius: 50%; margin: 0 auto 1.5vw; border: 5px solid var(--theme-blue); }
#speakerDataList li > div:nth-child(2) { font-size: 2vw; font-weight: bold; color: var(--theme-orange); margin-bottom: 0.5vw;}
/* 針對職稱與介紹文字做層級區隔 */
#speakerDataList li > div:nth-child(3) { margin-bottom: 1.5vw; }
#speakerDataList li > div:nth-child(3), #speakerDataList li > div:nth-child(3) span { font-size: 1.5vw; color: #555; font-weight: bold; }
#speakerDataList li > div:nth-child(4) { padding: 0 2vw; }
#speakerDataList li > div:nth-child(4), #speakerDataList li > div:nth-child(4) p { font-size: 1.2vw; color: #333; text-align: justify; line-height: 1.8; }

/* 報名區塊 - 調整彈性佈局以確保按鈕置底 */
.Muti_Sign { display: flex; gap: 5%; justify-content: space-around; margin-top: 1vw; }
.Muti_Sign > div { width: 100%; background: #f9f9f9; padding: 0 0 2vw 0; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); display: flex; flex-direction: column; overflow: hidden; }

/* 滿版橘色標題設計 */
.SignUpDataTitle { font-size: 1.5vw; font-weight: bold; color: #fff; background-color: var(--theme-orange); margin-bottom: 1.5vw; text-align: center; padding: 1vw 0; width: 100%; }

/* 補充內文邊距 */
.SignUpDataCode { font-size: 1.05vw; color: #333; text-align: center; margin-bottom: 1.5vw; font-weight: bold; word-break: keep-all; padding: 0 2vw; }
.SignUpDataCode span { color: var(--theme-blue); font-weight: bold; font-size: 1.05vw; } 

/* 按鈕貼齊底部 */
.SignUpDataLink { display: block; padding: 0 2vw; margin-top: auto; }
.SignUpDataLink a { display: block; background: var(--theme-yellow); color: var(--theme-blue); font-size: 1.5vw; font-weight: bold; text-align: center; padding: 1vw; border-radius: 50px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.SignUpDataLink a:hover { transform: translateY(-3px); }

/* 注意事項排版重構 (加粗與超連結顏色統一) */
.SignUpDataNote { margin-bottom: 1.5vw; padding: 0 2vw; }
.SignUpDataNote ul { list-style: none; padding-left: 0; margin-top: 0.5vw; }
.SignUpDataNote ul li { display: block; font-size: 1.2vw; position: relative; padding-left: 1.2rem; margin-bottom: 8px; color: #555; line-height: 1.6; text-align: left; }
.SignUpDataNote ul li::before { content: "•"; color: var(--theme-orange); font-size: 1.5rem; line-height: 1.6; position: absolute; left: 0; top: 0; }

.SignUpDataNote ul li strong, .SignUpDataNote ul li a, .SignUpDataNote ul li span { font-size: inherit; }
.SignUpDataNote strong { color: #555; font-weight: bold; }
.SignUpDataNote a { color: #555; text-decoration: underline; }
.SignUpDataNote span { color: var(--theme-blue);}

/* 活動備註樣式 */
.EventExtraNotes { margin-top: 2.5vw; padding-top: 1.5vw; border-top: 1px dashed #ddd; }
.EventExtraNotes div { font-size: 1.1vw; color: #666; line-height: 1.8; margin-bottom: 0.5vw; }

/* 新北場 教學博覽會專屬按鈕樣式 */
.NTP_Event_Single { text-align: center; padding: 2vw 0; }
.NTP_Event_Single a { display: inline-block; background: var(--theme-blue); color: #fff; border-radius: 15px; padding: 1.5vw 4vw; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 2px solid var(--theme-blue); text-decoration: none; position: relative; overflow: visible; }
.NTP_Event_Single a:hover { background: var(--theme-yellow); color: var(--theme-blue); transform: translateY(-3px); border-color: var(--theme-yellow); }
.NTP_Event_Single a .title { display: block; font-size: 1.2vw; margin-bottom: 0.5vw; opacity: 0.9; }
.NTP_Event_Single a .subtitle { display: block; font-size: 1.8vw; font-weight: bold; letter-spacing: 1px; }

/* 手指動畫 (配合 NTP_Event_Single a 使用) */
.Eventfinger { display: block; position: absolute; width: 40px; height: auto; z-index: 10; pointer-events: none; animation: fingerAnim 1.5s infinite ease-in-out; }
@keyframes fingerAnim {
    0% { bottom: -15px; right: 5px; opacity: 0; transform: rotate(-25deg) scale(0.8); }
    50% { bottom: 10px; right: 20px; opacity: 1; transform: rotate(-25deg) scale(1.1); }
    100% { bottom: 10px; right: 20px; opacity: 0; transform: rotate(-25deg) scale(1); }
}

/* ==========================================================================
   全新浮動圖片報名按鈕 (帶光暈與掃光動畫)
   ========================================================================== */
.FloatingSignUp {
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 99;
    width: 120px; 
    height: 120px; 
    border-radius: 50%;
    /* 白色光暈與一點點原本的橘色陰影 */
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.7), 0 5px 15px rgba(231, 90, 13, 0.4);
    transition: 0.3s; 
    display: block; 
    overflow: hidden; /* 確保遮罩為正圓形，並切掉 jpeg 黑色邊角 */
    background: transparent;
    padding: 0;
}
.FloatingSignUp img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
}
.FloatingSignUp:hover {
    transform: translateY(-5px); 
    box-shadow: 0 0 25px 8px rgba(255, 255, 255, 0.9), 0 8px 20px rgba(231, 90, 13, 0.6);
}

/* 掃光動畫特效 */
.FloatingSignUp::after {
    content: ""; 
    position: absolute; 
    top: 0; 
    left: -100%;
    width: 50%; 
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: sweepShine 5s infinite ease-in-out;
    pointer-events: none; /* 避免擋住點擊 */
}

@keyframes sweepShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; } /* 停留一段時間再進行下一次掃光 */
}

/* ==========================================================================
   6. 頁尾 Footer (Logo 群組動態排版優化)
   ========================================================================== */
/* 全域(電腦版)不需下方留白 */
footer { background: #073287; padding: 40px 0 20px; text-align: center; }

/* Footer Logo 群組 Flex 排版 */
.FooterLogoContainer { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 60px; padding: 0 2vw; }
.FooterLogoGP { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.FooterLogoLabel { color: #fff; font-size: 1.1vw; padding-right: 1.5vw; border-right: 1px solid rgba(255,255,255,0.5); margin-right: 1.5vw; opacity: 0.9; white-space: nowrap; font-weight: bold; }
.FooterLogoList { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5vw; }
.FooterLogoList li { display: flex; align-items: center; justify-content: center; }

/* 設定 Logo 固定高度，讓所有不同比例的圖片自動調整寬度保持協調 */
.FooterLogoList img { height: 65px; width: auto; object-fit: contain; max-width: 100%; transition: 0.3s; }
/* 個別調整 Logo 大小 */
.FooterLogoList img[alt="遠見天下文化事業群"],
.FooterLogoList img[alt="遠見天下文化教育基金會"] { height: 85px; }
.FooterLogoList img[alt="新北市AI教育局"],
.FooterLogoList img[alt="數位課程教學領導中心"],
.FooterLogoList img[alt="新北市永和區秀朗國民小學"] { height: 45px; }

/* 移除 privacyBar 預設背景色，自然融入頁尾 */
#privacyBar { padding: 15px 0; text-align: center; background: transparent; color: #fff; font-size: 0.9rem; }
.privacyLink { margin-bottom: 10px; }
.privacyLink ul li { display: inline-block; border-right: 1px solid #777; padding-right: 10px; margin-right: 10px; }
.privacyLink ul li:last-child { border: none; padding-right: 0; margin-right: 0; }
.privacyLink ul li a { color: #ccc; font-size: 1rem; transition: 0.3s; }
.privacyLink ul li a:hover { color: #fff; }

/* ==========================================================================
   7. 延伸閱讀 (Article List) 修正跑版
   ========================================================================== */
section#articleList { width: 85%; max-width: 1200px; margin: 0 auto; padding: 0; background: transparent; box-shadow: none; border-radius: 0; }
#articleList ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2vw; }
#articleList ul li { display: block; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; border-bottom: 4px solid transparent; }
#articleList ul li:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); border-bottom: 4px solid var(--theme-orange); }
#articleList ul li a { display: block; height: 100%; text-decoration: none; }
#articleList ul li a > div:nth-child(1) { width: 100%; overflow: hidden; aspect-ratio: 16/9; }
#articleList ul li a > div:nth-child(1) img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
#articleList ul li:hover a > div:nth-child(1) img { transform: scale(1.05); }
#articleList ul li a > div:nth-child(2) { padding: 1.5vw; font-size: 1.1vw; font-weight: bold; color: var(--theme-blue); line-height: 1.6; text-align: justify; transition: color 0.3s; }
#articleList ul li:hover a > div:nth-child(2) { color: var(--theme-orange); }

/* ==========================================================================
   8. 首頁大改版 (視差區塊與按鈕)
   ========================================================================== */
.IndexCityBtns { margin-top: 3vw; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; width: 100%; }
/* 修正全域電腦版按鈕不佔滿比例，改為自適應寬度 */
.IndexCityBtns a { display: block; width: auto; min-width: 250px; padding: 15px 40px; font-size: 1.6rem; font-weight: bold; border-radius: 50px; text-decoration: none; transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.2); background-color: var(--theme-blue); color: #fff; border: 2px solid var(--theme-blue); text-align: center; position: relative;}
.comingsoon { display: block; position: absolute; top: -0.8em; right: 0; font-size: 0.8em; background: var(--theme-yellow); color: var(--theme-blue); padding: 0.1em 1em; border-radius: 50px; }
.IndexCityBtns a:hover { background-color: var(--theme-yellow); color: var(--theme-blue); border-color: var(--theme-yellow); }
/* 日期標籤字級 */
.IndexCityBtns a span { font-size: inherit; font-size: 1.3rem; opacity: 0.9; margin-left: 8px; font-weight: normal; color: inherit; }

/* 針對首頁緣起區塊降低高度，減少電腦版的垂直留白 */
section.ParallaxBlock { position: relative; width: 100%; max-width: none; margin: 0; padding: 0; border-radius: 0; box-shadow: none; background-color: transparent; min-height: 80vh; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; color: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; }
section.ParallaxBlock.InfoBlock { min-height: 60vh; }

.ParallaxBlock::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0); z-index: 1; }
.ParallaxContainer { position: relative; z-index: 2; width: 80%; max-width: 1200px; padding: 60px 0 80px; }

/* 統一內文字體放大 1920px */
.BlockTitle { font-size: 3.5rem; font-weight: bold; margin-bottom: 30px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); text-align: center; width: 100%; }
.BlockContent p { font-size: 1.5rem; line-height: 2; margin-bottom: 20px; text-shadow: 0 1px 5px rgba(0,0,0,0.5); }
.text-center { text-align: center; }

.spk-flex { display: flex; align-items: flex-end; justify-content: space-between; min-height: 80vh; padding-bottom: 0; height: 100%; }
.spk-flex.photo-left { flex-direction: row-reverse; } 
.spk-flex.photo-right { flex-direction: row; }        

.SpkText { width: 50%; padding-bottom: 80px; }
.SpkText .spk-sub { font-size: 3.5rem; color: #fff; font-weight: bold; margin-bottom: 10px; text-shadow: 0 2px 5px rgba(0,0,0,0.5); text-align: center; }
.SpkText .spk-name { font-size: 4.5rem; font-weight: bold; margin-bottom: 35px; line-height: 1.2; text-shadow: 0 4px 10px rgba(0,0,0,0.5); text-align: center; }
.spk-desc { width: 87%; margin: 0 auto; }
.SpkText .spk-desc p { font-size: 1.5rem; line-height: 2; text-align: justify; }

/* 講者照片放大與對齊 (1920px 高度限制) */
.SpkPhoto { width: 45%; max-width: 500px; display: flex; justify-content: center; }
.SpkPhoto img { width: auto; max-width: 100%; max-height: 75vh; object-fit: contain; object-position: bottom; display: block; filter: drop-shadow(0 0 20px rgba(0,0,0,0.3)); }
/* 針對 Laura Knight 照片進行放大並向外(左)側輕微位移，避免擋住文字 */
.spk-flex.photo-left .SpkPhoto img { transform: scale(1.45) translateX(-4%); transform-origin: bottom center; }

.SurveyAction { margin-top: 50px; }
/* 大調查按鈕變更為藍底白字，Hover為黃底藍字 */
.btn-survey { display: inline-block; padding: 15px 50px; background-color: var(--theme-blue); color: #fff; font-size: 1.5rem; font-weight: bold; border-radius: 50px; transition: 0.3s; box-shadow: 0 5px 20px rgba(10, 49, 135, 0.4); }
.btn-survey:hover { background-color: var(--theme-yellow); color: var(--theme-blue); transform: translateY(-5px); }

/* ==========================================================================
   全新加入的 1600px 斷點 (專為 125% 縮放或 1536px 螢幕設計)
   ========================================================================== */
@media only screen and (max-width: 1600px) {
    /* 縮減 KV 單一圖片的最大寬度，解除壓迫感 */
    .kv-overlay .kv-img { max-width: 600px; }
    
    /* 微調 125% 縮放下的按鈕尺寸與字級 */
    .IndexCityBtns a { min-width: 200px; padding: 12px 30px; font-size: 1.4rem; }
    
    /* 調整 125% 下 Laura 的圖片比例與高度，確保不切頭 */
    .spk-flex.photo-left .SpkPhoto img { transform: scale(1.2) translateX(-3%); }
    .SpkPhoto img { max-height: 80vh; }
}

/* ==========================================================================
   9. RWD 筆電版 (MacBook Air 13" 1280~1440px 對策)
   ========================================================================== */
@media only screen and (max-width: 1440px) {
    /* Logo 縮小 */
    header #header .Logo { height: 2.2vw; top: 2.6vw; }

    /* 次選單文字與按鈕稍微縮小 */
    nav.Menu > ul > li > a { font-size: 1.1vw; }
    ul.SubMenu li a { font-size: 0.9vw; padding: 0.4vw 0.8vw; }
    ul.SubMenu li a .DayCircle { width: 1.4vw; height: 1.4vw; line-height: 1.4vw; font-size: 0.8vw; }

    /* KV 縮小以適應筆電小螢幕 */
    .kv-overlay .kv-title { max-width: 350px; margin-bottom: 1.5vw; }
    .kv-overlay .kv-subtitle { max-width: 550px; }
    .IndexCityBtns a { padding: 10px 0; font-size: 1.4rem; }
    .IndexCityBtns a span { font-size: 1.1rem; }

    /* 內頁標題與標籤字體同步收斂 */
    .NTP_EventTitle { font-size: 2.5rem; }
    .EventBadge { font-size: inherit; padding: 0; }
    .EventInfo li .InfoLabel, .EventInfo li .InfoValue { font-size: 1.1rem; }
    .EventInfo li .Week { width: 1.6rem; height: 1.6rem; line-height: 1.6rem; font-size: 0.9rem; }
    .SignUpDataCode { font-size: 0.95rem; }
    .SignUpDataCode span { font-size: 0.95rem; }
    .SignUpDataNote ul li { font-size: 1.05rem; }
    .EventExtraNotes div { font-size: 1rem; }
    .NTP_Event_Single a .title { font-size: 1.1rem; }
    .NTP_Event_Single a .subtitle { font-size: 1.6rem; }

    /* 講者與內文區塊收斂字體大小 */
    .ParallaxContainer { padding: 40px 0 60px; }
    .BlockTitle { font-size: 2.6rem; margin-bottom: 20px; }
    .BlockContent p { font-size: 1.2rem; line-height: 1.8; margin-bottom: 15px; }
    
    .SpkText { padding-bottom: 40px; }
    .SpkText .spk-sub { font-size: 1.8rem; margin-bottom: 5px; text-align: center; }
    .SpkText .spk-name { font-size: 2.6rem; margin-bottom: 20px; text-align: center; }
    .SpkText .spk-desc p { font-size: 1.2rem; line-height: 1.8; }
    
    /* 講者照片高度嚴格縮減，避免在短高筆電螢幕中被切頭 */
    .SpkPhoto img { max-height: 55vh; }
    .spk-flex.photo-left .SpkPhoto img { transform: scale(1.15) translateX(-2%); }
    
    /* 議程表字體稍微收斂 */
    .AgTable > ul > li.AgTableFull { font-size: 1.3vw; padding: 0.8vw 1.2vw; }
    .toggle-status { font-size: 1vw; }

    /* 講者分類子標題稍微收斂 */
    .speakerList .PanelistTitle { font-size: 1.6rem !important; margin-bottom: 3.5vw !important; }

    /* 浮按鈕稍微縮小以適應筆電 */
    .FloatingSignUp { width: 100px; height: 100px; }
    
    .PageTopAction a { padding: 20px 50px; }
    .PageTopAction .TopText .t1 { font-size: 1.2rem; }
    .PageTopAction .TopText .t2 { font-size: 1.1rem; }
    .PageTopAction .TopArrow { margin-bottom: 5px; }
}

/* ==========================================================================
   10. RWD 平板與手機版調整
   ========================================================================== */
@media only screen and (max-width: 1024px) {
  section { width: 90%; }
  .EventInfo li > div { font-size: 1.6vw; }
  #articleList ul { grid-template-columns: repeat(2, 1fr); gap: 3vw; }
  #articleList ul li a > div:nth-child(2) { font-size: 1.5vw; padding: 2vw; }
}

@media only screen and (max-width: 768px) {
  .view_w { display: none; }
  .view_m { display: block; }
  header #header { padding-top: 70px; background: rgba(231, 90, 13, 0.9); }
  
  /* 手機版 Logo 尺寸與精準置中 */
  header #header .Logo { height: 36px; top: 35px; transform: translateY(-50%); left: 20px; }
  
  .MobileMenu { display: block; }
  nav.Menu { background: var(--theme-blue); width: 100%; height: 100vh; top: 0; left: 100%; transition: 0.4s; }
  nav.Menu.active { left: 0; }
  nav.Menu > ul { display: block; padding-top: 100px; text-align: center; width: 100%; }
  nav.Menu > ul > li { display: block; margin: 0; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  nav.Menu > ul > li > a { font-size: 1.5rem; color: #ffffff; }
  /* 次選單修正偏移問題，強制佔滿全版不再往左跑 */
  ul.SubMenu { position: relative; width: 100%; left: 0; top: 0; padding-top: 10px; transform: none !important; }
  ul.SubMenu li a { font-size: 1.3rem; display: block; width: 100%; padding: 10px 0; background: transparent; color: var(--theme-yellow); }
  ul.SubMenu li a .DayCircle { width: 1.8rem; height: 1.8rem; line-height: 1.8rem; font-size: 1rem; margin: 0 5px; transform: translateY(-1px); }
  ul.SubMenu li a:hover .DayCircle { background-color: #fff; color: #053893; }
  
  .PageName { width: 100%; text-align: center; border-radius: 0; font-size: 1.4rem; padding: 10px 0; margin-top: 0; }
  article { padding-top: 100px; }
  
  section { width: 95%; padding: 0; margin-bottom: 8vw; }
  .SectionTitle { font-size: 1.8rem; padding: 15px 0; }
  .AgBox { padding: 5vw; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
  
  .EventBadgeWrap { margin-bottom: 15px; }
  .EventBadge { font-size: inherit; padding: 0; }
  .NTP_EventTitle { flex-direction: row; flex-wrap: wrap; justify-content: center; font-size: 2.8rem; gap: 10px; margin-bottom: 3rem; }
  .SessionHeading { font-size: 1.6rem; margin: 6vw 0 4vw; }

  /* 內頁活動資訊重整置中 (橫向並排) */
  .EventInfo { width: 100%; align-items: flex-start; margin-bottom: 30px; }
  .EventInfo li { flex-direction: row; align-items: baseline; text-align: left; gap: 0; margin-bottom: 15px; }
  .EventInfo li .InfoLabel, .EventInfo li .InfoValue { font-size: 1.2rem; color: var(--text-dark); }
  
  /* 地址後面的網址斷行與文字放大 (手機版專屬) */
  .PlaceText, .PlaceText a { font-size: 1.2rem !important; }

  .IndexKV { padding-bottom: 0; }
  /* 手機版同步縮放單一 KV 圖片 */
  .kv-overlay .kv-img { width: 100%; max-width: 480px; }

  .AgTable li.toggle-row { flex-direction: column; }
  .AgTable li.toggle-row > div:nth-child(1), .AgTable li.toggle-row > div:nth-child(3) { width: 100%; font-size: 1.1rem; margin-bottom: 10px; text-align: left; }
  .AgTable li.toggle-row > div:nth-child(2) { display: none; }
  .AgTable li.AgTableHead { display: none !important; }
  
  /* 活動議程按鈕重排：文字在左上，收起按鈕在右下不換行 */
  .AgTable > ul > li.AgTableFull { font-size: 1.5rem; padding: 20px; margin: 15px 0; border-bottom: none; display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
  .toggle-status { font-size: 1.1rem; padding: 8px 16px; align-self: flex-end; white-space: nowrap; }
  
  /* 議程標題放大 */
  .AgTable li.toggle-row .AgTitle { font-size: 1.5rem; margin-bottom: 8px; }
  
  /* 議程講者標籤排版修正：明確字體並置中對齊 */
  .AgTable li.toggle-row .AgTag { font-size: 1.1rem; padding: 6px 12px; margin-bottom: 8px; display: inline-block; }
  .VideoPlayTag { left: 102%; top: 10px; font-size: 0.8em;}
  .AgTable li.toggle-row .AgSpeaker { margin-top: 10px; text-align: left; }
  
  /* 手機版專屬：姓名(nth-child(2))為藍色大字，職稱(nth-child(1))為灰色小字 */
  .AgTable li.toggle-row .AgSpeaker span:nth-child(1) { font-size: 1.1rem !important; color: #555; font-weight: normal; order: 2; margin-top: 2px; }
  .AgTable li.toggle-row .AgSpeaker span:nth-child(2) { font-size: 1.5rem !important; font-weight: bold; color: var(--theme-blue); order: 1; }
  
  /* 手機版專屬：與談人區塊回到左側與圓點顯示 */
  .PanelistGroup { width: 100%; display: block; text-align: left; }
  .PanelistGroup .PanelistTitle { font-size: 1.2rem; margin-bottom: 10px; font-weight: bold; color: var(--text-dark); }
  .PanelistGroup ul { display: block; width: 100%; }

  .PanelistGroup ul li {
      position: relative;
      padding-left: 1.2rem;
      text-align: left;
      margin-bottom: 10px;
      display: block; /* 恢復成一般區塊，讓內部的 span 自然接續排版 */
  }
  .PanelistGroup ul li:last-child { margin-bottom: 0; }
  .PanelistGroup ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 5px; /* 向下微調對齊第一行文字中心 */
      font-size: 1.5rem; /* 大幅放大橘色小點 */
      line-height: 1.5rem; /* 第一行(姓名)的文字大小是 1.5rem */
      color: var(--theme-orange);
  }

  .AgTable li.toggle-row .AgSpeaker .PanelistGroup ul li span:nth-child(1) {
      font-size: 1.5rem !important;
  }
  .AgTable li.toggle-row .AgSpeaker .PanelistGroup ul li span:nth-child(2) {
      font-size: 1.1rem !important;
  }

  /* 新北場教博會手機版專屬按鈕 */
  .NTP_Event_Single a { width: 100%; padding: 15px 20px; }
  .NTP_Event_Single a .title { font-size: 1.1rem; }
  .NTP_Event_Single a .subtitle { font-size: 1.4rem; margin-top: 5px; }

  .speakerList ul li { width: 100%; margin-right: 0; margin-bottom: 40px; }
  .speakerList ul li > div:nth-child(1) img { width: 60%; }
  .speakerList ul li > div:nth-child(2) { font-size: 1.5rem; }
  .speakerList ul li > div:nth-child(3) { height: auto; margin-bottom: 10px; }
  .speakerList ul li > div:nth-child(3), .speakerList ul li > div:nth-child(3) span { font-size: 1.15rem; font-weight: 500; }
  .speakerList ul li > div:nth-child(4) a { width: 80%; font-size: 1.2rem; padding: 10px; }
  
  /* 講者分類子標題手機版 */
  .speakerList .PanelistTitle { font-size: 1.5rem !important; margin: 0 auto 30px auto !important; }
  .speakerList .PanelistTitle::before, .speakerList .PanelistTitle::after { width: auto; height: 0; }
  .speakerList .PanelistTitle::before { margin-right: 15px; }
  .speakerList .PanelistTitle::after { margin-left: 15px; }
  
  #speakerDataList li > div:nth-child(1) img { width: 80%; border-radius: 50%; margin: 0 auto 1.5vw; border: 5px solid var(--theme-blue); }
  #speakerDataList li > div:nth-child(2) { font-size: 1.6rem; }
  #speakerDataList li > div:nth-child(3) { margin-bottom: 20px; }
  #speakerDataList li > div:nth-child(3), #speakerDataList li > div:nth-child(3) span { font-size: 1.25rem; font-weight: bold; }
  #speakerDataList li > div:nth-child(4), #speakerDataList li > div:nth-child(4) p { font-size: 1.2rem; }
  /* 講師詳細介紹彈出視窗關閉按鈕縮小 */
  .Pup .PupCloseBtn a { font-size: 1.2rem; padding: 10px 0; }
  
  .Muti_Sign { flex-direction: column; }
  .Muti_Sign > div { width: 100%; margin-bottom: 20px; padding: 0 0 5vw 0; }
  #SignUpDataType_A_1 { order: 2; }
  #SignUpDataType_A_2 { order: 1; }
  
  .SignUpDataTitle { font-size: 1.4rem; padding: 4vw 0; margin-bottom: 4vw; }
  /* 手機版不強制不換行 */
  .SignUpDataCode, .SignUpDataCode span { font-size: 1.1rem; white-space: normal; word-break: normal; }
  .SignUpDataCode, .SignUpDataNote, .SignUpDataLink { padding: 0 5vw; }
  .SignUpDataLink a { font-size: 1.3rem; width: 90%; padding: 0.5rem 0; margin: 0 auto; text-align: center; }
  .SignUpDataNote ul li { display: block; }
  .SignUpDataNote ul li, .SignUpDataNote ul li strong, .SignUpDataNote ul li a { font-size: 1.2rem; }
  
  .EventExtraNotes { margin-top: 30px; padding-top: 20px; }
  .EventExtraNotes div { font-size: 1.2rem; }

  /* 手機版懸浮按鈕放大，光暈減弱 */
  .FloatingSignUp { bottom: 20px; right: 20px; width: 90px; height: 90px; box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.6), 0 5px 10px rgba(231, 90, 13, 0.4); }

  /* 增加 padding-bottom 防止浮動按鈕遮擋文字 (手機版專屬) */
  footer { padding: 40px 0 120px; }

  section#articleList { width: 90%; }
  #articleList ul { grid-template-columns: 1fr; gap: 6vw; margin-top: 5vw; }
  #articleList ul li a > div:nth-child(2) { font-size: 1.2rem; padding: 5vw; }

  /* Footer Logo 手機版排版 */
  .FooterLogoContainer { gap: 30px; margin-bottom: 40px; }
  .FooterLogoGP { flex-direction: column; text-align: center; gap: 15px; }
  .FooterLogoLabel { font-size: 1.1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-right: 0; padding-bottom: 8px; margin-right: 0; }
  .FooterLogoList { gap: 15px; }
  .FooterLogoList img { height: 50px; }
  /* 手機版個別調整 Logo 大小 */
  .FooterLogoList img[alt="遠見天下文化事業群"],
  .FooterLogoList img[alt="遠見天下文化教育基金會"] { height: 65px; }
  .FooterLogoList img[alt="新北市AI教育局"],
  .FooterLogoList img[alt="數位課程教學領導中心"],
  .FooterLogoList img[alt="新北市永和區秀朗國民小學"] { height: 35px; }
  
  #privacyBar { font-size: 0.8rem; padding: 10px 0 0; background: transparent; color: #fff; }
  
  /* 手機版同步縮減按鈕間距與字級 (並排顯示) */
  .IndexCityBtns { flex-wrap: nowrap; gap: 10px; }
  .IndexCityBtns a { width: 48%; min-width: auto; text-align: center; font-size: 1.3rem; padding: 15px 5px; }
  .IndexCityBtns a span { font-size: 1rem; display: block; margin-top: 0; margin-left: 0; }
  section.ParallaxBlock { background-attachment: scroll; min-height: auto; }
  .ParallaxContainer { width: 90%; padding: 40px 0; }
  .BlockTitle { font-size: 2.2rem; }
  .BlockContent p, .SpkText .spk-desc p { font-size: 1.2rem; }
  
  section.ParallaxBlock.InfoBlock .BlockContent, .ParallaxBlock.SurveyBlock .BlockContent {
      text-align: justify;
  }
  
  .SpkText .spk-desc { width: 100%; } /* 手機版講者介紹恢復滿版 */
  
  .spk-flex.photo-left, .spk-flex.photo-right { flex-direction: column-reverse; align-items: center; justify-content: center; } 
  .SpkText { width: 100%; padding-bottom: 30px; text-align: center; }
  .SpkText .spk-sub { font-size: 2rem; text-align: center; }
  .SpkText .spk-name { font-size: 2.8rem; margin-bottom: 20px; text-align: center; }
  .spk-flex.reverse .SpkText { text-align: center; }
  .spk-flex.reverse .SpkText .spk-desc p { text-align-last: center; }
  .SpkPhoto { width: 80%; margin-top: 30px; }
  .SpkPhoto img { max-height: 50vh; }
  
  /* 手機版 Laura 照片優化 */
  .spk-flex.photo-left .SpkPhoto img { transform: scale(1.15); }
  
  .PageTopAction { margin: 10vw auto 5vw !important; }
  .PageTopAction::before, .PageTopAction::after { display: none; }
  .PageTopAction a { padding: 15px 40px !important; width: 85% !important; }
  .PageTopAction .TopText .t1 { font-size: 1.6rem !important; }
  .PageTopAction .TopText .t2 { font-size: 1.4rem !important; }
}

/* ==========================================================================
   11. 內頁底部返回最上方按鈕 (PageTopAction)
   ========================================================================== */
.PageTopAction {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4vw auto;
    width: 100%;
    position: relative;
}
/* 左右兩側的裝飾漸層線條改為白色 */
.PageTopAction::before,
.PageTopAction::after {
    content: "";
    flex: 1;
    max-width: 250px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
    margin: 0 2vw;
}
.PageTopAction::after {
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
}

.PageTopAction a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--theme-blue);
    color: #fff;
    padding: 1.5vw 4vw;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(10, 49, 135, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.PageTopAction a:hover {
    background: #fff;
    color: var(--theme-blue);
    border: 2px solid var(--theme-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(10, 49, 135, 0.25);
}
.PageTopAction .TopArrow {
    margin-bottom: 0.5vw;
    color: var(--theme-yellow);
    transition: transform 0.3s ease;
}
/* 放大箭頭的 SVG 尺寸 */
.PageTopAction .TopArrow svg {
    width: 32px;
    height: 32px;
}
.PageTopAction a:hover .TopArrow {
    color: var(--theme-orange);
    transform: translateY(-5px);
}
.PageTopAction .TopText {
    text-align: center;
    line-height: 1.5;
}
.PageTopAction .TopText .t1 {
    display: block;
    font-size: 1.4vw;
    font-weight: bold;
    letter-spacing: 1px;
}
.PageTopAction .TopText .t2 {
    display: block;
    font-size: 1.2vw;
    font-weight: normal;
    opacity: 0.9;
    margin-top: 0.2vw;
}

/* 1440px 筆電版調整 */
@media only screen and (max-width: 1440px) {
    .PageTopAction a { padding: 20px 50px; }
    .PageTopAction .TopText .t1 { font-size: 1.2rem; }
    .PageTopAction .TopText .t2 { font-size: 1.1rem; }
    .PageTopAction .TopArrow { margin-bottom: 5px; }
}