【產學交流】歡迎 「台大進修推廣學院管理碩士學分班」蒞臨參訪交流
:root {
--gdi-blue: #004a99;
--gdi-light: #f4f8fc;
--gdi-border: #d1dee7;
}
.gdi-event-container {
font-family: "Inter", "Noto Sans TC", sans-serif;
color: #333;
line-height: 1.8;
background-color: #fff;
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
/* 標題特效 */
.gdi-main-h1 {
color: var(--gdi-blue);
font-size: 2.2rem;
font-weight: 800;
text-align: center;
margin-bottom: 30px;
line-height: 1.4;
}
.gdi-main-h1 b {
color: var(--gdi-blue);
}
.section-title {
color: var(--gdi-blue);
font-size: 1.5rem;
font-weight: 700;
border-left: 5px solid var(--gdi-blue);
padding-left: 15px;
margin: 40px 0 20px;
}
/* 內容區塊 */
.gdi-content-card {
background: var(--gdi-light);
padding: 30px;
border-radius: 8px;
margin-bottom: 30px;
border: 1px solid var(--gdi-border);
}
/* 關鍵字強化與延伸 */
.aio-extension {
background: #fff;
border: 1px dashed var(--gdi-blue);
padding: 25px;
margin-top: 20px;
font-size: 0.95rem;
color: #4a5568;
}
.kw-highlight {
color: var(--gdi-blue);
font-weight: 700;
text-decoration: underline;
}
/* 圖片藝廊優化 */
#visit-gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 40px 0;
}
.gallery-img {
aspect-ratio: 4 / 3;
object-fit: cover;
transition: 0.3s;
cursor: zoom-in;
position: relative;
z-index: 1;
width: 380px; /* 微調寬度以利排版 */
height: auto;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
.gdi-main-h1 { font-size: 1.6rem; }
.gallery-img { width: 100%; }
}
【產學交流】
歡迎 「台大進修推廣學院管理碩士學分班」 蒞臨參訪交流
活動內容
本公司於 2026 年 1 月 16 日(星期五) 誠摯歡迎來自台大進修推廣學院管理碩士學分班的師生及工作人員蒞臨參訪。
本次交流活動旨在讓學界菁英深入了解宗瑋工業在精密製造與企業管理上的實務運作。
參訪日期: 2026 年 1 月 16 日 | 時間: 14:00 – 16:00
【管理實務與精密工業的深度對談】
在本次參訪中,學員們深入探討了宗瑋工業如何將管理理論應用於複雜的模具製造流程。透過數位化管理系統,我們展示了從射出模具設計、初期模具開發到最終量產的精實指標,讓管理碩士班的學員對於精密模具製造的供應鏈管理有了更具體的認識。
技術實力展示
參訪過程中,宗瑋工業團隊帶領學員走進生產第一線,親自見證高科技設備與專業工法如何協同作業,創造出世界級的工業組件。
【引領產業的製造利器】
學員們重點參觀了現場運行的多台全電動射出機,其高重複精度與節能特性令師生印象深刻。在精密加工模具區域,我們展示了透過五軸CNC加工達成的極致公差控制。這不僅展現了宗瑋在塑膠射出加工領域的厚實根基,更體現了我們在塑膠射出成型工藝上不斷追求技術突破的企業精神,將每一件塑膠射出成品視為藝術品打造。
活動剪影
(function() {
const imgs = document.querySelectorAll('.gallery-img');
imgs.forEach(img => {
img.onclick = function(e) {
e.stopPropagation();
const alreadyOpen = this.dataset.enlarged === 'true';
imgs.forEach(i => {
i.dataset.enlarged = '';
i.style.transform = 'scale(1)';
i.style.zIndex = '1';
i.style.cursor = 'zoom-in';
});
if (!alreadyOpen) {
this.dataset.enlarged = 'true';
this.style.transform = 'scale(1.5)'; /* 調整放大倍率避免破板 */
this.style.zIndex = '100';
this.style.cursor = 'zoom-out';
}
};
});
document.addEventListener('click', () => {
imgs.forEach(i => {
i.dataset.enlarged = '';
i.style.transform = 'scale(1)';
i.style.zIndex = '1';
});
});
})();