'); background-size: cover; color: white; padding: 8rem 0; text-align: center; } .hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; text-shadow: 0 2px 5px rgba(0,0,0,0.3); } .hero p { font-size: 1.5rem; max-width: 800px; margin: 0 auto 2.5rem; text-shadow: 0 1px 3px rgba(0,0,0,0.3); } .cta-button { display: inline-block; background-color: white; color: var(--primary); padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 7px 20px rgba(0,0,0,0.3); background-color: var(--light); } /* Stats section */ .stats { background-color: var(--light); padding: 4rem 0; } .stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; } .stat-item { padding: 1.5rem; } .stat-item .number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; } .stat-item .label { color: var(--gray); font-size: 1.1rem; } /* About section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } .about-text h3 { font-size: 1.8rem; color: var(--primary-dark); margin-bottom: 1.5rem; } .about-text p { margin-bottom: 1.5rem; } .certification-badge { display: inline-block; background-color: var(--light); padding: 0.8rem 1.5rem; border-radius: 5px; font-weight: 600; color: var(--primary); margin-top: 1rem; border: 1px solid var(--border); } /* Services section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .service-card { background-color: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .service-icon { background-color: var(--primary); color: white; height: 80px; display: flex; align-items: center; justify-content: center; font-size: 2rem; } .service-content { padding: 1.5rem; } .service-content h3 { color: var(--primary-dark); margin-bottom: 1rem; } /* Products section */ .products-tabs { display: flex; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; } .tab-btn { padding: 0.8rem 1.5rem; background: white; border: 1px solid var(--border); margin: 0.5rem; cursor: pointer; border-radius: 30px; transition: all 0.3s ease; } .tab-btn.active, .tab-btn:hover { background: var(--primary); color: white; border-color: var(--primary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; } .product-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all 0.3s ease; } .product-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-image { height: 200px; background-color: #f9f9f9; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: 500; } .product-details { padding: 1.5rem; } .product-price { color: var(--primary); font-weight: 700; font-size: 1.2rem; margin: 0.5rem 0; } .product-moq { color: var(--gray); font-size: 0.9rem; } /* Advantages section */ .advantages { background-color: var(--light); } .advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .advantage-card { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s ease; } .advantage-card:hover { transform: translateY(-5px); } .advantage-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; } /* Markets section */ .market-map { display: flex; justify-content: center; margin: 3rem 0; position: relative; } .market-region { position: absolute; background: rgba(142, 68, 173, 0.8); color: white; padding: 0.5rem 1rem; border-radius: 30px; font-weight: 600; } .region-northamerica { top: 20%; left: 20%; } .region-mideast { top: 40%; left: 55%; } .region-easteurope { top: 25%; left: 50%; } .region-africa { top: 55%; left: 50%; } .region-westeurope { top: 30%; left: 45%; } /* Contact section */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; } .contact-form { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; } .form-group input, .form-group textarea { width: 100%; padding: 0.8rem; border: 1px solid var(--border); border-radius: 5px; font-size: 1rem; } .form-group textarea { height: 150px; resize: vertical; } .submit-btn { background: var(--primary); color: white; border: none; padding: 1rem 2rem; border-radius: 5px; cursor: pointer; font-size: 1rem; font-weight: 600; transition: background 0.3s ease; } .submit-btn:hover { background: var(--primary-dark); } /* Footer */ footer { background: var(--dark); color: white; padding: 4rem 0 2rem; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .footer-col h3 { color: white; margin-bottom: 1.5rem; font-size: 1.5rem; position: relative; padding-bottom: 0.5rem; } .footer-col h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--secondary); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 0.8rem; } .footer-col ul li a { color: #adb5bd; text-decoration: none; transition: color 0.3s ease; } .footer-col ul li a:hover { color: white; } .copyright { text-align: center; padding-top: 3rem; color: #6c757d; border-top: 1px solid #343a40; margin-top: 3rem; } /* Responsive styles */ @media (max-width: 992px) { .header-container { flex-direction: column; text-align: center; } .logo { justify-content: center; margin-bottom: 1rem; } nav ul { justify-content: center; flex-wrap: wrap; } nav ul li { margin: 0.5rem; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } .about-content, .contact-container { grid-template-columns: 1fr; } } @media (max-width: 768px) { .section-header h2 { font-size: 2rem; } .hero { padding: 5rem 0; } section { padding: 3rem 0; } }
Custom OEM/ODM synthetic and human hair wigs with competitive pricing and perfect packaging solutions
Request a QuoteProfessional wig manufacturer with TÜV Rheinland certification and 29 years of industry experience
Founded in 2012 with wig manufacturing roots dating back to 1996, we've grown from a 20-person workshop to a leading wig manufacturer with 200+ skilled workers and a 50,000m² production facility.
Our brand JINRUILI represents quality, innovation and reliability in the global wig market. We specialize in both synthetic and human hair products, with advanced customization capabilities.
Comprehensive solutions from custom manufacturing to packaging and multilingual support
Full customization services including drawing-based, design-based, full process and minor customizations for wigs and packaging.
Comprehensive quality management with raw material identification, product traceability, on-site inspections and easy return policy.
Custom packaging for boxes, bags, labels, hang tags and wraps with our motto: "MAKE YOUR OWN PACKAGING MAKE YOUR OWN BUSINESS".
We support 8+ languages including Portuguese, German, Russian, Japanese, Vietnamese, Turkish, Indonesian and Dutch.
High-quality synthetic and human hair products for diverse markets and applications
Premium synthetic fiber, realistic look, easy to wear. Perfect for parties.
Customizable, premium material, realistic appearance. Ideal for parties.
High-quality material, realistic look, easy to wear. Christmas special.
Premium fiber, realistic appearance. Designed for black hairstyles.
Six compelling reasons to partner with JINRUILI for your wig manufacturing needs
More competitive prices for the same quality and service with products starting at just $0.87
"Perfect Packaging" - fully customizable solutions to strengthen your brand identity
85% on-time delivery rate with full process control to meet your deadlines
Strict production processes and proprietary low-temperature synthetic fibers
Designers who follow the latest fashion trends and support original designs
29 years in the wig industry with mature quality assurance and logistics systems
Our products reach customers in five major global regions
We've successfully partnered with more than 10,000 distributors worldwide. Each year we participate in 2 major industry exhibitions to expand our market reach and connect with potential partners.
Ready to start your custom wig project? Get in touch today!
Location: Zhejiang, China
Business Since: 1996 (Officially registered 2012)
Core Competency: Professional OEM/ODM wig manufacturing
Company Motto: "SINCERE SERVICE AND MOST COMPETITIVE PRICE"