'); background-size: cover; } .hero-content { position: relative; z-index: 2; max-width: 700px; } .hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800; } .hero p { font-size: 1.25rem; margin-bottom: 30px; opacity: 0.9; } .hero-stats { display: flex; margin-top: 50px; } .stat-item { flex: 1; text-align: center; padding: 20px; border-right: 1px solid rgba(255, 255, 255, 0.2); } .stat-item:last-child { border-right: none; } .stat-item .number { font-size: 2.5rem; font-weight: 700; margin-bottom: 5px; } .stat-item .label { font-size: 1rem; opacity: 0.8; } /* About Section */ .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text h3 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; } .about-text p { margin-bottom: 20px; } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature-item { display: flex; align-items: flex-start; } .feature-icon { background: var(--accent); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; } .feature-text h4 { margin-bottom: 5px; color: var(--dark); } .about-image { flex: 1; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } .about-image img { width: 100%; height: auto; display: block; } /* Products Section */ .products { background-color: var(--light); } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .product-image { height: 220px; overflow: hidden; position: relative; } .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .product-card:hover .product-image img { transform: scale(1.1); } .product-content { padding: 25px; } .product-content h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 10px; } .product-content p { margin-bottom: 20px; color: var(--text); } .product-specs { margin-top: 15px; } .spec-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #e2e8f0; } .spec-item:last-child { border-bottom: none; } /* Why Us Section */ .why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { background: white; padding: 40px 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); text-align: center; transition: all 0.3s ease; } .advantage-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .advantage-icon { width: 80px; height: 80px; background: rgba(229, 62, 62, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; } .advantage-icon svg { width: 40px; height: 40px; fill: var(--accent); } .advantage-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--primary); } /* Contact Section */ .contact { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; } .contact-container { display: flex; gap: 50px; } .contact-info { flex: 1; } .contact-info h3 { font-size: 2rem; margin-bottom: 25px; } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; margin-bottom: 20px; align-items: flex-start; } .contact-icon { margin-right: 15px; margin-top: 5px; } .contact-form { flex: 1; background: white; padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); } .contact-form h3 { color: var(--primary); margin-bottom: 25px; font-size: 1.8rem; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; color: var(--dark); font-weight: 600; } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #e2e8f0; border-radius: 4px; font-size: 1rem; transition: border-color 0.3s; } .form-group input:focus, .form-group textarea:focus { border-color: var(--accent); outline: none; } .form-group textarea { min-height: 120px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h4 { font-size: 1.4rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-col h4:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--accent); } .footer-col p { margin-bottom: 20px; opacity: 0.8; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: all 0.3s; } .footer-links a:hover { color: white; padding-left: 5px; } .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; opacity: 0.7; } /* Responsive Design */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact-container { flex-direction: column; } .hero h1 { font-size: 2.8rem; } } @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } nav ul { margin-top: 20px; justify-content: center; } nav ul li { margin: 0 10px; } .hero-stats { flex-direction: column; } .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); padding: 15px; } .stat-item:last-child { border-bottom: none; } .section-title h2 { font-size: 2rem; } .hero { padding: 150px 0 70px; } .hero h1 { font-size: 2.2rem; } }
Dongguan Yishengda Automation Equipment specializes in high-precision rotary tables, multi-station turntables, and cam dividers for manufacturing automation since 2018.
Request a QuoteFounded in 2018, Dongguan Yishengda Automation Equipment Co., Ltd. is a leading manufacturer of precision automation components
With over 7 years of industry experience, Yishengda Automation has established itself as a trusted provider of high-quality rotary indexing tables, multi-station turntables, and precision cam dividers. Our products are engineered to enhance manufacturing efficiency, accuracy, and reliability across various industries.
Based in Dongguan, China - the heart of manufacturing innovation - we combine advanced technology with expert craftsmanship to deliver solutions that meet the most demanding industrial requirements.
ISO-certified manufacturing processes
Tailored designs to meet specific needs
Skilled engineers and technicians
Exporting to over 30 countries
High-precision automation components designed for reliability and performance
High-accuracy indexing tables with excellent repeatability for CNC machining and automation applications.
Customizable turntable systems for multi-process manufacturing with high positioning accuracy.
High-precision cam-driven indexing mechanisms for smooth and reliable motion control.
Our commitment to excellence sets us apart in the automation industry
Our products are manufactured with micron-level precision using advanced CNC machinery and rigorous quality control processes.
Every component undergoes strict quality inspections at multiple stages of production to ensure flawless performance.
We specialize in designing and manufacturing bespoke automation solutions tailored to your specific requirements.
Efficient production planning and logistics ensure on-time delivery of your orders anywhere in the world.
Our engineering team provides comprehensive technical support from product selection to installation and maintenance.
Direct manufacturing with optimized processes allows us to offer premium quality at competitive prices.
Have questions about our products or need a custom solution? Our team is ready to assist you.
+86 769 8321 5769
No. 9 Xingfa Road, Huangjiang Town, Dongguan City, Guangdong Province, China