Industry-Academia: NTU Management
: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;
}
/* Heading effect */
.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;
}
/* Content block */
.gdi-content-card {
background: var(--gdi-light);
padding: 30px;
border-radius: 8px;
margin-bottom: 30px;
border: 1px solid var(--gdi-border);
}
/* Keyword enrichment and extension */
.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;
}
/* Photo gallery optimization */
#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; /* Fine-tuned width for layout balance */
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%; }
}
[Industry-Academia Exchange]
Welcome Visit by the NTU School of Professional Education and Continuing Studies — Master's Credit Program in Management
Event Overview
On Friday, January 16, 2026, GDI warmly welcomed faculty, students, and staff from the NTU School of Professional Education and Continuing Studies — Master's Credit Program in Management for an industry visit and exchange.
This exchange event was designed to provide academic professionals with an in-depth look at GDI's practical operations in precision manufacturing and enterprise management.
Visit Date: January 16, 2026 | Time: 14:00 – 16:00
[In-Depth Dialogue Between Management Practice and Precision Industry]
During the visit, participants explored how GDI applies management theory to complex mold manufacturing workflows. Through our digitalized management systems, we demonstrated lean production metrics spanning injection mold design, early-stage mold development, and final mass production — giving the Master's program participants a concrete understanding of supply chain management in precision mold manufacturing.
Technical Capabilities Showcase
During the tour, the GDI team guided participants through live production floors, offering a firsthand look at how advanced equipment and specialized craftsmanship collaborate to produce world-class industrial components.
[Industry-Leading Manufacturing Capabilities]
Participants focused on the multiple all-electric injection molding machines in active operation, with their high repeatability and energy efficiency leaving a strong impression on faculty and students alike. In the precision mold area, we demonstrated the exceptional tolerance control achieved through five-axis CNC machining. This not only showcased GDI's solid foundation in plastic injection processing, but also reflected our corporate spirit of relentless pursuit of technological advancement in plastic injection molding — treating every plastic injection product as a precision work of craftsmanship.
Event Photo Gallery
(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';
});
});
})();