'); background-size: cover; background-position: center; color: white; padding: 150px 0; text-align: center; } .hero h1 { font-size: 3.5rem; color: white; margin-bottom: 20px; animation: fadeInDown 1s ease; } .hero p { font-size: 1.3rem; max-width: 700px; margin: 0 auto 30px; animation: fadeInUp 1s ease; } .hero-buttons { display: flex; justify-content: center; gap: 20px; animation: fadeInUp 1s ease; } .btn-secondary { background: transparent; border: 2px solid white; } .btn-secondary:hover { background: rgba(255,255,255,0.1); } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text { padding-right: 30px; } .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-card { background: white; border-radius: 8px; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s ease; } .stat-card:hover { transform: translateY(-10px); } .stat-card h3 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 5px; } .certifications { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 40px; } .cert-badge { width: 120px; height: 120px; border-radius: 50%; background: white; display: flex; justify-content: center; align-items: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s ease; } .cert-badge:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(0,0,0,0.15); } .cert-badge div { text-align: center; padding: 10px; font-weight: 700; font-size: 0.9rem; color: var(--primary); } /* Services Section */ .services { background-color: #f0f4f8; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .service-content { padding: 30px; } .service-content h3 { color: var(--accent); margin-bottom: 15px; font-size: 1.5rem; } .service-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; } /* Products Section */ .products-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); } .product-header { background-color: var(--primary); color: white; padding: 20px; text-align: center; } .product-body { padding: 25px; } .product-features { margin: 20px 0; } .feature-item { display: flex; align-items: center; margin-bottom: 12px; } .feature-item i { color: var(--accent); margin-right: 10px; } .pricing-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.95rem; } .pricing-table th, .pricing-table td { border: 1px solid #e0e0e0; padding: 10px; text-align: center; } .pricing-table th { background-color: #f5f5f5; font-weight: 600; } .pricing-table tr:nth-child(even) { background-color: #f9f9f9; } /* Production Section */ .production { background-color: #f0f4f8; } .production-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .capacity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .capacity-card { background: white; border-radius: 8px; padding: 25px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .capacity-card h3 { color: var(--secondary); font-size: 2rem; margin-bottom: 10px; } /* Quality Section */ .quality-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; } .step-card { text-align: center; padding: 30px; background: white; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; } .step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--secondary); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 700; } /* Team Section */ .team { background-color: #f0f4f8; } .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .team-member { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; } .team-info { padding: 25px; } .team-info h4 { color: var(--accent); margin-bottom: 5px; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info { background: var(--primary); color: white; padding: 40px; border-radius: 8px; } .contact-info h3 { color: white; margin-bottom: 30px; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 25px; } .contact-icon { font-size: 1.5rem; margin-right: 15px; color: var(--accent); } .contact-form { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } .form-group textarea { height: 150px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { color: white; margin-bottom: 25px; font-size: 1.4rem; } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 12px; } .footer-col ul li a { color: #bbb; text-decoration: none; transition: color 0.3s; } .footer-col ul li a:hover { color: white; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #444; color: #bbb; } /* Animations */ @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* Responsive Styles */ @media (max-width: 992px) { .about-content, .production-content, .contact-container { grid-template-columns: 1fr; } .about-text { padding-right: 0; } h2 { font-size: 1.8rem; } .hero h1 { font-size: 2.8rem; } } @media (max-width: 768px) { .header-container { flex-direction: column; } nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 15px; } .hero h1 { font-size: 2.3rem; } .hero p { font-size: 1.1rem; } .hero-buttons { flex-direction: column; gap: 10px; } .stats-grid { grid-template-columns: 1fr; } }
Dongguan Yusen Industrial Co., Ltd. specializes in high-quality garment accessories including elastic bands, webbing, draw cords and more. With 20+ years of expertise and international certifications.
Your trusted partner for garment accessories manufacturing
Founded in 2003, Dongguan Yusen Industrial Co., Ltd. is a professional garment accessories manufacturer and distributor with strong design and development capabilities. Our strategically located facility in Hengli Town, Dongguan (Guangdong Province) places us near major industrial hubs including Guangzhou and Hong Kong.
Our vision is simple yet ambitious: "TO BE BEST GARMENT ACCESSORIES SUPPLIER". We achieve this through continuous innovation, strict quality control, and exceptional customer service.
Years of Experience
Factory Area
Dedicated Employees
Years on Alibaba
Our commitment to quality, sustainability, and ethical practices is validated by internationally recognized certifications:
As a Verified Supplier on Alibaba with 4.5/5 rating, we maintain an 85% on-time delivery rate and ≤4 hour response time.
Comprehensive solutions for garment accessory needs
We offer expert OEM (Original Equipment Manufacturer) services, producing high-quality garment accessories to your exact specifications. Our manufacturing capabilities include:
Our ODM (Original Design Manufacturer) services include complete product development from concept to finished product. Our 5-10 member R&D team provides:
We provide three levels of customization to meet diverse client requirements:
All custom work is supported by our specialized workshops for elastic bands, webbing, and rope/cord production.
Premium garment accessories for diverse applications
Features: OEKO-TEX® certified, nylon material, soft touch, excellent elasticity
Applications: Underwear, sportswear, yoga pants, athleisure
Price Range | Min. Order |
---|---|
$0.05-0.29 / yard | 100 yards |
$0.20-0.30 / yard | 100 yards |
$0.21-0.25 / yard | 2000 yards |
$0.19-0.35 / meter | 100 meters |
Features: Silicone print technology, polyester base, non-slip layer, durable
Applications: Sportswear, cycling apparel, activewear
Price Range | Min. Order |
---|---|
$0.15-0.50 / yard | 500 yards |
$0.11-0.37 / yard | 1000 yards |
$0.13-0.36 / yard | 1000 yards |
$0.25-0.41 / yard | 500 yards |
Features: Round/flat options, customizable tips (plastic/metal), jacquard/print logos
Applications: Hoodies, pants, shorts, shoes, drawstring bags
Price Range | Min. Order |
---|---|
$0.10-0.31 / piece | 100 pieces |
$0.30-0.45 / pair | 500 pairs |
$0.10-0.40 / piece | 100 pieces |
$0.12-0.38 / piece | 500 pieces |
We also specialize in: Webbing, Elastic Belts, Elastic Ropes, Exercise Bands, Shoelaces, Headbands, Adhesive Hook & Loop
Advanced manufacturing infrastructure for quality output
Our dedicated R&D team of 5-10 professionals focuses on innovation in materials, functionality, and design. We continuously develop new solutions to meet evolving market needs.
Key R&D capabilities include:
Our specialized workshops enable efficient, high-volume production while maintaining strict quality standards:
Monthly Production Capacity
OEM Monthly Capacity
Monthly Supply Capacity
Our facility includes dedicated workshops for elastic band production, webbing manufacturing, and rope/cord fabrication.
Commitment to excellence at every production stage
We implement comprehensive quality control measures throughout our manufacturing process to ensure consistent, reliable products:
All incoming materials undergo identification and traceability checks to ensure compliance with specifications and certifications.
Continuous monitoring during production ensures dimensional accuracy, functional performance, and visual quality.
Comprehensive testing of elasticity, strength, color fastness, and safety compliance before shipment.
Optional SGS testing available upon request, with full documentation support for certification requirements.
Dedicated professionals ready to assist you
Sales Manager
Customer Service Specialist
Technical Support
Order Management
Quality Assurance
Logistics Coordinator
Our team is committed to providing prompt, professional service with response times ≤4 hours during business hours.
Get in touch for quotes, samples, or more information
No. 48 Binfu Road, Shuibian Village Committee,Hengli Town, Dongguan City,Guangdong Province, China
+86 (769) 8337-XXXX
Monday-Friday: 8:00 AM - 6:00 PMSaturday: 9:00 AM - 1:00 PM