移到主要內容
:::

May. 18

【時間剛好.我們正好|國立嘉義大學 115 級畢業典禮】誠摯的邀請大家參加!

國立嘉義大學 115 級畢業典禮 - 家長與畢業生觀禮指南 /* 嘉大自訂色彩變數 */ :root { --ncyu-clay: #b85135; /* 嘉大暖磚紅 */ --ncyu-claydark: #8b3820; /* 深暖紅 */ --ncyu-claylight: #fdf6f0; /* 柔沙粉底 */ --ncyu-green: #005a36; /* 嘉大校徽綠 */ --ncyu-greendark: #004227; --ncyu-greenlight: #f0f7f4; } /* 覆蓋/補充 Bootstrap 樣式 */ body { background-color: #f8fafc; /* slate-50 */ color: #1e293b; /* slate-800 */ font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; } /* 嘉大專屬顏色自訂 Utility */ .bg-ncyu-clay { background-color: var(--ncyu-clay) !important; } .bg-ncyu-clay-10 { background-color: rgba(184, 81, 53, 0.1) !important; } .bg-ncyu-claylight { background-color: var(--ncyu-claylight) !important; } .bg-ncyu-green { background-color: var(--ncyu-green) !important; } .bg-ncyu-greenlight { background-color: var(--ncyu-greenlight) !important; } .text-ncyu-clay { color: var(--ncyu-clay) !important; } .text-ncyu-claydark { color: var(--ncyu-claydark) !important; } .text-ncyu-green { color: var(--ncyu-green) !important; } .border-ncyu-green-20 { border-color: rgba(0, 90, 54, 0.2) !important; } .border-orange-100-50 { border-color: rgba(254, 215, 170, 0.5) !important; } .bg-white-95 { background-color: rgba(255, 255, 255, 0.95) !important; } .bg-white-80 { background-color: rgba(255, 255, 255, 0.8) !important; } .bg-amber-50-60 { background-color: rgba(254, 243, 199, 0.6) !important; } .bg-blue-50-60 { background-color: rgba(239, 246, 255, 0.6) !important; } /* 輕量級背景格線與陰影裝飾 */ .bg-grid-pattern { background-size: 40px 40px; background-image: linear-gradient(to right, rgba(0, 0, 0, 0.015) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.015) 1px, transparent 1px); } .text-shadow-sm { text-shadow: 1px 1px 2px rgba(0,0,0,0.12); } /* 圓角美化 */ .rounded-xl { border-radius: 1rem !important; } .rounded-2xl { border-radius: 1.5rem !important; } .rounded-3xl { border-radius: 2rem !important; } /* 連結特效 */ .card-hover-transition { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .card-hover-transition:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important; } /* === 動態特效 CSS 動畫設定(免 JavaScript,防火牆絕對過關) === */ /* 1. 太陽發光旋轉動畫 */ @keyframes sun-glow-spin { 0% { transform: scale(1) rotate(0deg); opacity: 0.85; } 50% { transform: scale(1.08) rotate(180deg); opacity: 1; } 100% { transform: scale(1) rotate(360deg); opacity: 0.85; } } /* 2. 畢業帽上下微幅漂浮動畫 */ @keyframes cap-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(5deg); } } /* 3. 時間刻度緩慢旋轉 */ @keyframes dial-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .animate-sun { animation: sun-glow-spin 12s infinite ease-in-out; transform-origin: center; } .animate-cap { animation: cap-float 6s infinite ease-in-out; } .animate-dial { animation: dial-rotate 40s infinite linear; transform-origin: center; } /* === 時間軸樣式設定 === */ .timeline-container { position: relative; padding: 2rem 0; } /* 時間軸中間漸層主導線 */ .timeline-main-line { position: absolute; left: 31px; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, var(--ncyu-clay) 0%, var(--ncyu-green) 100%); border-radius: 4px; z-index: 1; } /* 中間進度連接小圓圈 */ .timeline-dot { position: absolute; left: 31px; width: 24px; height: 24px; background-color: #fff; border: 5px solid var(--ncyu-clay); border-radius: 50%; transform: translateX(-10px); z-index: 2; box-shadow: 0 0 0 4px rgba(184, 81, 53, 0.15); transition: all 0.3s ease; } .timeline-dot-green { border-color: var(--ncyu-green); box-shadow: 0 0 0 4px rgba(0, 90, 54, 0.15); } /* 時間軸卡片細緻美化 */ .timeline-schedule-card { position: relative; background: #ffffff; border-radius: 1.25rem; border: 1px solid rgba(226, 232, 240, 0.8); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-left: 5px solid var(--ncyu-clay); } .timeline-schedule-card-green { border-left-color: var(--ncyu-green); } .timeline-schedule-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06); } /* 確保時間軸在電腦版 (md 及以上) 完美左右交錯 */ @media (min-width: 768px) { .timeline-main-line { left: 50%; transform: translateX(-50%); } .timeline-dot { left: 50%; transform: translate(-50%, -50%); top: 50%; } /* 讓內容在左右兩側交替對齊 */ .timeline-item-left { text-align: right; } .timeline-item-right { text-align: left; } .timeline-schedule-card { text-align: left; } } /* FAQ CSS 展開動畫(完全不需 JS 即可在學校系統運作) */ .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; } .faq-trigger:checked ~ .faq-content { max-height: 500px; padding-top: 1rem; padding-bottom: 0.5rem; } .faq-trigger:checked ~ .faq-title svg { transform: rotate(180deg); } 內容 --> 跳過導覽,進入主內容 國立嘉義大學 National Chiayi University · 115 級畢業典禮專區 畢業生與家長觀禮指南 Commencement & Graduation Services 時間剛好.我們正好 本專區整合各校區畢業典禮重要注意事項、時間流程以及家長觀禮座位規劃,協助畢業生與親友共同見證這份青春最溫馨的榮耀時刻。 🎓 重要提醒 各班及受獎代表注意事項 畢業生整班入場 請各班畢業生依規定配合於指定時間,以整班集合之方式齊步入場,展現班級凝聚與青春風采。 受獎代表準時報到 各位「授證代表」及「領獎代表」請務必於 上午 09:00 前 完成報到,並直接前往「受獎區」依序就座。 典禮日程與流程 115 年 5 月 23 日 (星期六) 全體師生共同見證 09 : 00 師長、畢業生入場 請全體畢業生依先前排定之班級座次就位。這不僅是典禮的序幕,也是同學們在大學生涯中最後一次整齊列隊,請大家把握這莊嚴且溫馨的時刻。 典禮正式開始 校長、師長與各校區貴賓依序就座,典禮專屬音樂響起,宣告國立嘉義大學 115 級畢業典禮正式拉開帷幕,這項神聖的畢業盛典將同步於線上轉播。 09 : 20 09 : 25 溫馨致詞與祝福 校長、貴賓代表,將為全體即將踏出校園的畢業生們致上最真摯、勉勵與溫馨的期許,祝願各位在未來的各個領域中,皆能勇敢追夢、發光發熱。 榮耀時刻:授禮及頒獎 登台接受隆重的「撥穗儀式」、博士、碩士及學士學位授證,並頒發學術傑出表現獎、服務獎與優秀畢業生等榮耀,由家長在台下共同見證並記錄這光榮的一刻。 10 : 30 11 : 35 禮成:展翅高飛 齊唱校歌,禮炮與學士帽拋向空中。典禮在感動與喜悅中圓滿落幕。祝福 115 級畢業生邁向人生全新起點,懷揣在嘉大的飽滿收穫,勇敢迎向璀璨前程! Guide for Parents 各校區家長觀禮與座位全攻略 請直接依據您所在的校區,查閱專屬的觀禮規劃與家長座位安排: 蘭潭校區 (瑞穗館) 受獎學生家長區 瑞穗館 1 樓 保留給即將上台接受授證與受獎的卓越畢業生家長就座,請憑邀請券優先入場。 其他家長觀禮區 📍 瑞穗館 2 樓 (主會場挑高視野) 📍 理工大樓 1 樓 (階梯教室直播區) 📍 國際交流學園 1 樓 (國際會議廳) 民雄校區 (大學館) 受獎學生家長區 大學館內特設前排座椅區 請遵循現場工作人員導引,受獎代表家長將安排於前方舞台視野最佳位置。 其他家長觀禮區 📍 大學館(演藝廳)自由座 典禮現場座次豐富,提供家長極佳的聲光與視覺體驗。 新民校區 (管理學院) 主會場 國際會議廳 畢業典禮主典禮會場,由各系代表及受獎學生進行隆重典禮儀式。 其他家長觀禮區 📍 管理學院 A 棟 211 階梯教室 (直播) 📍 管理學院 D01-108 階梯教室 (直播) 家長觀禮 FAQ(常見問題) 解答您在參與典禮時可能遇到的常見疑問 Q1. 家長車輛可以開進校園嗎?如何辦理停車收費? 典禮當天全校區開放家長車輛入校。蘭潭、民雄及新民校區之停車場均不予收費(全面免停車費)。當天請遵從校警隊與親善大使引導停放至指定區域。 Q2. 家長可以進入主會場幫孩子拍照嗎? 因主會場(蘭潭瑞穗館一樓、民雄大學館內)空間座位有限,為確保典禮動線流暢,蘭潭校區僅限持有特定邀請券之受獎家長於指定座位區就座。新民校區因主會場座位數不足,學校備有專業攝影組,典禮全程將同步提供高品質照片與線上直播,家長亦可於非受獎段至校園戶外專設背板拍照留影。 Q3. 如果沒有拿到會場邀請券,家長可以在哪裡休息? 各校區皆設有實況轉播觀禮區(如蘭潭理工大樓、新民階梯教室等),冷氣開放且視野極佳,能第一時間看見台上的撥穗儀式。此外,各教學大樓開放空間與學生餐廳也設置家長休息區與飲水設施。 重要資訊傳送門 典禮相關重要官方連結,建議您在新視窗中開啟 畢業典禮專區 包含受獎名單、座位規劃及完整典禮重要公告。 前往專區 場地座次圖 各校區典禮座次最新公告,快來確認您的班級坐在哪裡。 查看座次 畢業典禮程序 掌握最完整的典禮進行細節、致詞順序與領獎規範。 詳細細節 國立嘉義大學 05-271-7000 600355 嘉義市學府路300號 本網頁為學校防火牆優化安全版,採用 Bootstrap 5 架構,已完全移除所有 JavaScript (script) 標籤。 © 2026 National Chiayi University. All Rights Reserved. 115 級畢業典禮執行小組版權所有

May. 12

「公告」115級畢業典禮三校區場地座次圖

國立嘉義大學 - 畢業典禮座次查詢 @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap'); body { font-family: 'Noto Sans TC', sans-serif; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; } .campus-card { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; border: 1px solid rgba(0,0,0,0.05); } .campus-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); } .lantan { border-top: 8px solid #16a34a; } .minxiong { border-top: 8px solid #ea580c; } .xinmin { border-top: 8px solid #2563eb; } .icon-container { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 1.5rem; } .btn-animation { transition: transform 0.2s ease; } .campus-card:hover .btn-animation { transform: scale(1.05); } 國立嘉義大學 115級 畢業典禮各校區座次查詢 請點擊下方對應校區以查看詳細座次表 蘭潭校區 瑞穗館 包含理工學院、農學院、生命科學院畢業生 點此查看座次 民雄校區 大學館演議廳 包含人文藝術學院、師範學院畢業生 點此查看座次 新民校區 國際會議廳 包含管理學院、獸醫學院畢業生 點此查看座次 © 國立嘉義大學 National Chiayi University 建議使用電腦查看以獲得最佳導覽體驗

Apr. 20

115級畢業典禮各項得獎同學及受證代表出席調查【蘭潭及新民校區系所】

115級畢業典禮|得獎同學及受證代表出席調查 :root { --primary-orange: #e07a3b; --secondary-gold: #f8c644; --bg-color: #fdfaf7; --card-bg: #ffffff; --text-dark: #4a3728; --text-light: #7c685b; --accent-blue: #cbdcf0; --font-family: 'Helvetica Neue', Helvetica, Arial, 'Microsoft JhengHei', sans-serif; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: var(--font-family); background-color: var(--bg-color); color: var(--text-dark); line-height: 1.6; } .hero-section { position: relative; background: linear-gradient(135deg, #f4ccae 0%, var(--accent-blue) 100%); padding: 60px 20px; text-align: center; border-bottom: 5px solid var(--secondary-gold); overflow: hidden; } .hero-section::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background-color: rgba(248, 198, 68, 0.4); border-radius: 50%; z-index: 1; } .hero-section::after { content: ''; position: absolute; bottom: -80px; left: -30px; width: 250px; height: 250px; border: 2px dashed rgba(255, 255, 255, 0.5); border-radius: 50%; z-index: 1; } .hero-content { position: relative; z-index: 2; } .univ-title { font-size: 1.1rem; color: rgba(74, 55, 40, 0.8); letter-spacing: 2px; margin-bottom: 10px; font-weight: bold; } .main-title { font-size: 2.8rem; color: var(--text-dark); font-weight: 900; text-shadow: 2px 2px 4px rgba(255,255,255,0.6); margin-bottom: 15px; } .sub-title { display: inline-block; background-color: var(--text-dark); color: #fff; padding: 8px 25px; border-radius: 30px; font-size: 1.2rem; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.1); } .container { max-width: 900px; margin: -40px auto 40px; padding: 0 20px; position: relative; z-index: 10; } .card { background-color: var(--card-bg); border-radius: 12px; box-shadow: 0 8px 24px rgba(74, 55, 40, 0.08); padding: 30px; margin-bottom: 25px; border-top: 4px solid transparent; transition: transform 0.3s ease, box-shadow 0.3s ease; } .card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(74, 55, 40, 0.12); } .intro-card { border-top-color: var(--secondary-gold); text-align: center; font-size: 1.1rem; color: var(--text-light); } .section-title { font-size: 1.5rem; color: var(--primary-orange); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; border-bottom: 2px solid #f0e4d7; padding-bottom: 10px; } .section-title.center-no-border { justify-content: center; border: none; } .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .info-card { border-left: 5px solid var(--accent-blue); padding: 20px; background-color: #fafdfc; border-radius: 8px; } .info-card.lantan { border-left-color: var(--accent-blue); } .info-card.xinmin { border-left-color: var(--primary-orange); } .info-title { font-size: 1.3rem; font-weight: bold; color: var(--text-dark); margin-bottom: 15px; display: flex; align-items: center; gap: 8px; } .info-list { list-style: none; } .info-list li { margin-bottom: 12px; display: flex; flex-direction: column; } .info-label { font-size: 0.9rem; color: #fff; background-color: var(--text-light); padding: 3px 8px; border-radius: 4px; display: inline-block; width: fit-content; margin-bottom: 4px; } .info-value { font-weight: bold; font-size: 1.1rem; } .info-value.highlight { color: var(--primary-orange); font-size: 1.2rem; } .info-note { font-size: 0.85rem; color: var(--text-light); } .cta-section { background: linear-gradient(to right, #fff, #fef7f2); border: 2px dashed var(--primary-orange); text-align: center; padding: 40px 20px; } .cta-btn { display: inline-block; background-color: var(--primary-orange); color: #fff; text-decoration: none; padding: 15px 40px; font-size: 1.3rem; font-weight: bold; border-radius: 30px; box-shadow: 0 4px 15px rgba(224, 122, 59, 0.4); transition: all 0.3s ease; margin-top: 15px; } .cta-btn:hover { background-color: #c9652a; box-shadow: 0 6px 20px rgba(224, 122, 59, 0.6); transform: scale(1.05); } .notice-card { background-color: #fff9f5; border: 1px solid #f0e4d7; } .notice-time { font-size: 1.5rem; color: var(--primary-orange); font-weight: bold; margin: 10px 0; } .notice-alert-text { color: #c0392b; font-weight: bold; font-size: 0.95rem; } .footer { text-align: center; padding: 40px 20px; background-color: var(--text-dark); color: #fff; margin-top: 40px; } /* 響應式設計 (RWD) */ @media (max-width: 768px) { .main-title { font-size: 2.2rem; } .grid-2 { grid-template-columns: 1fr; } .container { margin-top: -20px; } .card { padding: 20px; } } 國立嘉義大學 115級畢業典禮 得獎同學及受證代表出席調查 各位畢業班獲獎代表同學您好: 為利本組進行「115級畢業典禮」之座位精確安排與動線規劃, 請 【蘭潭及新民校區】 之受獎/受證同學務必填寫下方調查問卷,感謝您的配合。 【智育獎由第一名代表上台頒獎】出席調查名單只調查第1名資料 出席調查填寫 請點擊下方按鈕開啟調查表單進行填寫 立即填寫調查問卷 ※ 建議於5月6日前完成填寫以利統計 預演報到資訊 蘭潭校區 出席人員 各系畢業班受獎學生 包含所有學制之受獎/受證代表 預演地點 瑞穗館 報到時間 115年5月20日 (三) 13:10 前 新民校區 出席人員 各系畢業班受獎學生 包含所有學制之受獎/受證代表 預演地點 國際會議廳 報到時間 115年5月20日 (三) 13:10 前 典禮當天報到須知 典禮日期:115年5月23日 (星期六) 報到截止時間:09:00 AM 請所有受獎及受證同學準時於規定報到地點完成簽到。逾時將可能導致座位異動或 無法上台受獎,敬請各位準時配合!  請務必穿著學位服參加! 時間剛好 我們正好 國立嘉義大學 115 級畢業典禮 課外活動組 敬啟

獎項按鈕浮動效果
各界 德育 智育獎 進學班 優良獎智育
僑外生 實習成績 體育獎 體育獎體育獎 體育獎