.demo-cms {
--demo-primary: #173b8f;
--demo-secondary: #007f91;
--demo-accent: #d98300;
--demo-soft-blue: #eef6f8;
--demo-soft-orange: #fff6e6;
--demo-soft-neutral: #f7f8fa;
--demo-text: #252a31;
--demo-muted: #565e68;
--demo-border: #d7dde3;
--demo-white: #ffffff;
max-width: 1120px;
margin: 0 auto;
color: var(--demo-text);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
"Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
font-size: 17px;
line-height: 1.85;
overflow-wrap: anywhere;
}
.demo-cms *,
.demo-cms *::before,
.demo-cms *::after {
box-sizing: border-box;
}
.demo-cms section {
margin: 0 0 2.75rem;
scroll-margin-top: 1rem;
}
.demo-cms h2 {
margin: 0 0 1.25rem;
padding: 0.28rem 0 0.28rem 0.85rem;
border-left: 0.36rem solid var(--demo-accent);
color: var(--demo-primary);
font-size: clamp(1.45rem, 2.6vw, 1.85rem);
line-height: 1.35;
letter-spacing: 0.02em;
}
.demo-cms h3 {
margin: 0;
color: var(--demo-primary);
font-size: 1.08rem;
line-height: 1.55;
}
.demo-cms p {
margin: 0 0 1rem;
text-align: justify;
text-justify: inter-ideograph;
}
.demo-cms [lang="en"] p {
text-align: left;
text-justify: auto;
}
.demo-cms a {
color: #006b7a;
font-weight: 650;
text-decoration-thickness: 0.08em;
text-underline-offset: 0.18em;
}
.demo-cms a:hover {
color: var(--demo-primary);
}
.demo-cms a:focus-visible {
outline: 3px solid var(--demo-accent);
outline-offset: 3px;
border-radius: 0.15rem;
}
.demo-cms .demo-lead,
.demo-cms .demo-overview {
padding: clamp(1.15rem, 3vw, 1.65rem);
border: 1px solid #bed8dd;
border-top: 0.32rem solid var(--demo-secondary);
border-radius: 0.75rem;
background: var(--demo-soft-blue);
}
.demo-cms .demo-lead {
margin-bottom: 1.2rem;
color: #173e49;
font-size: 1.07em;
font-weight: 650;
}
.demo-cms .demo-card-grid,
.demo-cms .demo-audience-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
}
.demo-cms .demo-card,
.demo-cms .demo-audience-item {
padding: 1.15rem 1.2rem;
border: 1px solid var(--demo-border);
border-top: 0.28rem solid var(--demo-primary);
border-radius: 0.7rem;
background: var(--demo-white);
}
.demo-cms .demo-card:nth-child(even) {
border-top-color: var(--demo-secondary);
}
.demo-cms .demo-card h3,
.demo-cms .demo-audience-item h3 {
margin-bottom: 0.5rem;
}
.demo-cms .demo-audience-item {
border-top-color: var(--demo-accent);
background: var(--demo-soft-orange);
}
.demo-cms .demo-reminder-list {
display: grid;
gap: 0.85rem;
margin: 0;
padding: 0;
list-style: none;
}
.demo-cms .demo-reminder {
position: relative;
padding: 1rem 1.1rem 1rem 3.1rem;
border: 1px solid var(--demo-border);
border-radius: 0.65rem;
background: var(--demo-soft-neutral);
}
.demo-cms .demo-reminder::before {
position: absolute;
top: 1rem;
left: 1rem;
display: grid;
place-items: center;
width: 1.35rem;
height: 1.35rem;
border-radius: 50%;
background: var(--demo-primary);
color: var(--demo-white);
content: "i";
font-weight: 750;
font-size: 0.88rem;
line-height: 1;
}
.demo-cms .demo-faq-list {
display: grid;
gap: 1rem;
}
.demo-cms .demo-faq-item {
overflow: hidden;
margin: 0;
border: 1px solid var(--demo-border);
border-radius: 0.75rem;
background: var(--demo-white);
}
.demo-cms .demo-faq-question {
display: flex;
gap: 0.75rem;
align-items: flex-start;
padding: 1rem 1.15rem;
background: var(--demo-soft-orange);
}
.demo-cms .demo-faq-q {
flex: 0 0 auto;
display: inline-grid;
place-items: center;
width: 1.75rem;
height: 1.75rem;
border-radius: 50%;
background: var(--demo-primary);
color: var(--demo-white);
font-weight: 800;
line-height: 1;
}
.demo-cms .demo-faq-answer {
padding: 1.1rem 1.2rem 1.25rem;
}
.demo-cms .demo-faq-en {
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--demo-border);
color: #4e5660;
}
.demo-cms .demo-language-tag {
display: inline-block;
margin-bottom: 0.35rem;
color: var(--demo-muted);
font-size: 0.84rem;
font-weight: 750;
letter-spacing: 0.04em;
}
.demo-cms .demo-contact {
padding: 1.15rem 1.25rem;
border-left: 0.32rem solid var(--demo-secondary);
background: var(--demo-soft-blue);
}
.demo-cms .demo-contact-list {
margin: 0 0 0.85rem;
padding-left: 1.4rem;
}
.demo-cms .demo-contact-list li {
margin: 0.45rem 0;
}
.demo-cms .demo-overview p:last-child,
.demo-cms .demo-card p:last-child,
.demo-cms .demo-audience-item p:last-child,
.demo-cms .demo-reminder p:last-child,
.demo-cms .demo-faq-answer p:last-child,
.demo-cms .demo-contact p:last-child {
margin-bottom: 0;
}
@media (max-width: 720px) {
.demo-cms {
font-size: 16px;
line-height: 1.8;
}
.demo-cms .demo-card-grid,
.demo-cms .demo-audience-grid {
grid-template-columns: 1fr;
}
.demo-cms .demo-reminder {
padding-left: 2.85rem;
}
}
@media (prefers-reduced-motion: reduce) {
.demo-cms *,
.demo-cms *::before,
.demo-cms *::after {
scroll-behavior: auto !important;
}
}
@media print {
.demo-cms {
max-width: none;
color: #000000;
font-size: 11pt;
}
.demo-cms .demo-card,
.demo-cms .demo-audience-item,
.demo-cms .demo-faq-item,
.demo-cms .demo-reminder {
break-inside: avoid;
}
}
活動說明一項技術如何離開實驗室,成為產業可以使用的解決方案?一個學生的創意,又如何走向創業與合作?這場 Demo Day 把校園裡正在發生的研發、設計與育成成果帶到城市公共空間,讓技術、人才與產業需求有機會在現場相遇。大同大學的育成中心今年首度舉辦「大同大學暨創新育成中心 Demo Day」。活動以成果展示與知識交流為核心,邀集育成企業展出研發新品、專利商品及專業服務設計,也讓學生新創、校內研究團隊與產學合作成果走到觀眾面前。現場除了規劃大同大學 70 週年校慶、培育企業、學生新創、新創主題,以及創新育成與產學合作成果等展區,另安排人工智慧、智慧製造等產業趨勢講題與逐時活動。參與者可以從實體成果理解一項創意如何被驗證、改善與應用,也能與團隊交流技術需求、人才培育及未來合作的可能性。完整講題、講者、參展團隊、展示內容與各時段安排,將陸續規劃及公布;如有特別想參加的場次,出發前請再查看活動官方頁面。Event OverviewTatung University & Innovation and Incubation Center Demo Day brings university research, student ideas, startup projects, and industry collaboration into one public showcase. It is the university’s first event of this kind.Visitors can explore five areas covering Tatung University’s 70th anniversary, incubated companies, student startups, new business themes, and the results of incubation and university-industry collaboration. Participating companies plan to present new research-based products, patented products, and professional service designs.The program also includes hourly talks and activities on topics such as artificial intelligence and smart manufacturing. General admission is free. Speakers, participating teams, exhibit content, and session details may be updated, so check the official event page before your visit.活動亮點70 週年校慶展區|從辦學歷程看見下一步以大同大學 70 週年為背景,串聯校園累積的工程、設計與實作能量。觀眾可從歷程與成果之間,看見學校如何回應不同時期的產業與人才需求。培育企業展區|讓研發成果走近使用情境育成企業規劃展示研發新品、專利商品及專業服務設計。重點不只在「做出了什麼」,也在理解技術想解決的問題、服務的對象與可能應用場景。學生新創與主題展區|從點子開始測試市場學生團隊與新創題目提供觀察創業早期階段的入口。可從提案內容、原型與團隊說明,了解創意如何經過驗證,逐步轉化成可被討論的產品或服務。育成與產學合作成果|連接研究與企業需求創新育成中心及產學合作成果,呈現學校、研究團隊與企業協作的不同方式。對正在尋找技術、人才或合作資源的參與者,可作為認識彼此的第一站。逐時演講與活動|掌握 AI 與智慧製造議題本次活動規劃自 11:00 起安排逐時演講或活動,內容聚焦人工智慧、智慧製造等熱門議題。講題、講者、場次性質及實際開始時間,請以最新議程與現場公告為準。適合誰參加學生與準備踏出第一步的新創團隊想了解育成資源、成果呈現方式或其他團隊如何把想法具體化,可從展區與逐時活動建立對創業流程的初步認識。企業人士與產業合作夥伴正在尋找技術應用、服務設計、研發合作或人才交流機會,可直接認識育成企業、學生團隊及產學合作成果。學者、教師與關心人才培育的人可觀察大學如何連結研究、課程、創業教育與企業需求,並從不同成果理解校園創新走向實際應用的路徑。對科技、新創與設計好奇的一般民眾不需要具備創業或工程背景,也能從展示作品、團隊說明及趨勢講題,認識一項技術如何回應日常與產業問題。參與提醒一般參觀自由入場:一般入場不需購票。個別演講或活動如有座位、名額、報到或參與條件將另行公布,現場請依工作人員引導入座。展場開放時間與逐時活動時間不同:展場兩日皆於 10:00 開放;9 月 18 日的逐時演講或活動安排至 16:00,9 月 19 日安排至 15:00。若為特定場次前往,請先查看最新議程。講者、團隊與展示內容仍可能調整:主辦單位尚在安排完整議程與參展資訊,最終名單、講題、展示品及場次時間,請以活動官方頁面與現場公告為準。交流前先釐清資訊使用界線:若希望進一步洽談技術、授權、實習、採購或合作,可先與團隊交換公開資訊;涉及未公開技術、個資或商業條件時,仍應由雙方另行確認保密、權利與契約內容。成果展示不等於合作或投資保證:現場內容主要供參觀與交流。產品成熟度、專利範圍、交易方式及合作條件,應由有意合作的雙方進一步查證與評估。常見問題 FAQQ 參加「大同大學暨創新育成中心 Demo Day」需要購票或事先報名嗎?中文活動為自由入場,一般參觀目前不需要購票。個別演講或活動可能配合場地容量安排座位、報到或入場順序;主辦單位如有進一步規劃,請依活動官方頁面與現場說明辦理。ENGeneral admission is free. A specific talk or activity may use seating limits, check-in, or an entry order based on venue capacity. Follow the official event page and on-site instructions if the organizer announces additional arrangements.Q 展場開放時間與「每小時一場」的演講或活動時間相同嗎?中文展場兩日皆於 10:00–17:00 開放;9 月 18 日規劃於 11:00–16:00 每小時安排一場演講或活動,9 月 19 日則規劃於 11:00–15:00 每小時安排一場。實際講題、講者、單元性質與開始時間,請以主辦單位最新議程為準。ENThe exhibition is open from 10:00 to 17:00 on both days. Hourly talks or activities are planned from 11:00 to 16:00 on Sep. 18 and from 11:00 to 15:00 on Sep. 19. Check the organizer’s latest schedule for session titles, speakers, formats, and exact start times.Q 「大同大學暨創新育成中心 Demo Day」只有學生、新創團隊或企業人士可以參加嗎?中文活動歡迎學者、教師、上班族、親子及一般民眾參觀。現場內容從校慶與成果展示,到人工智慧、智慧製造及產學合作,不需要具備創業、投資或工程背景;可依興趣選擇展區及場次。ENAcademics, teachers, working professionals, families, and members of the public are also welcome. The event covers university achievements, startups, AI, smart manufacturing, and industry collaboration. No startup, investment, or engineering background is required.Q 現場公布的講者、參展團隊與展示成果是否都已確定?中文主辦單位尚在規劃完整議程與參展內容,講者、團隊、展示品、單元名稱及時間仍可能調整。若為特定講題或團隊前往,建議出發前再次查看活動官方頁面;到場後則以現場公告為準。ENThe organizer is still finalizing the full program and exhibitor details. Speakers, teams, exhibits, session titles, and times may change. If you plan to attend for a specific topic or team, check the official event page again before your visit.活動洽詢與官方資訊Email:yangsm@gm.ttu.edu.tw電話:(02) 7736-4913活動網站:大同大學活動官方頁面完整議程、講者、參展團隊、展示內容及臨時調整,請以主辦單位最新公告與現場說明為準。