') no-repeat center center/cover; color: white; padding: 150px 0 100px; text-align: center; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; color: white; } .hero p { font-size: 1.5rem; max-width: 800px; margin: 0 auto 40px; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } .hero-btns .btn { background: var(--secondary); } .hero-btns .btn-outline { background: transparent; border: 2px solid white; } .hero-btns .btn-outline:hover { background: white; color: var(--primary); } /* Stats Section */ .stats { background: var(--light); padding: 60px 0; } .stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; } .stat-item { padding: 30px 20px; background: white; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .stat-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .stat-number { font-size: 3rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; } .stat-text { font-size: 1.1rem; color: var(--gray); } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text { padding-right: 20px; } .about-image { background: linear-gradient(45deg, var(--primary), var(--accent)); height: 400px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; font-weight: bold; } .company-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; } .info-card { background: var(--light); padding: 20px; border-radius: 8px; border-left: 4px solid var(--secondary); } .info-card h3 { margin-bottom: 15px; font-size: 1.3rem; } /* Products Section */ .products { background: var(--light); } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 250px; background: linear-gradient(45deg, var(--accent), var(--primary)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; font-weight: bold; } .product-content { padding: 25px; } .product-content h3 { color: var(--secondary); margin-bottom: 15px; } .product-specs { margin: 20px 0; } .spec-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #eee; } /* Supply Chain Section */ .supply-chain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .supply-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); border-top: 4px solid var(--accent); } .supply-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .supply-card h3 { display: flex; align-items: center; margin-bottom: 20px; } .supply-card h3 i { margin-right: 10px; color: var(--accent); } /* Services Section */ .services { background: var(--light); } .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); text-align: center; } .service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .service-icon { width: 80px; height: 80px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: white; font-size: 2rem; } .payment-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; } .payment-method { background: white; padding: 10px 20px; border-radius: 30px; border: 1px solid #eee; font-weight: 500; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info { background: var(--primary); color: white; padding: 40px; border-radius: 10px; } .contact-info h2 { color: white; } .contact-info h2:after { background: var(--secondary); } .contact-item { display: flex; align-items: flex-start; margin-bottom: 25px; } .contact-icon { margin-right: 15px; color: var(--secondary); font-size: 1.5rem; } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } .contact-form textarea { height: 150px; } /* Footer */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-col h3 { color: white; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .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: 15px; } .footer-col ul li a { color: #aaa; text-decoration: none; transition: var(--transition); } .footer-col ul li a:hover { color: white; padding-left: 5px; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #444; color: #aaa; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content, .contact-container { grid-template-columns: 1fr; } .about-text { padding-right: 0; margin-bottom: 30px; } h2 { font-size: 2rem; } .hero h1 { font-size: 2.8rem; } } @media (max-width: 768px) { nav ul { display: none; } .header-container { flex-direction: column; } .hero { padding: 100px 0 80px; } .hero h1 { font-size: 2.2rem; } .hero p { font-size: 1.2rem; } .hero-btns { flex-direction: column; align-items: center; } section { padding: 60px 0; } }
Manufacturer of 100% Virgin Hair Products with 25+ Years Industry Experience
As a leading manufacturer specializing in 100% human hair wigs and extensions, we combine 25+ years of industry expertise with state-of-the-art production facilities located in the world's hair capital - Xuchang, Henan, China.
Our brand YEsWiGs stands for premium quality, innovation, and exceptional customer service. We pride ourselves on delivering products that feature "no tangling, no shedding, thick ends, and comfortable wear."
Strategically located in Xuchang, the global hub for hair products, with a 3,000m² office in the Cross-Border E-commerce Industrial Park and 20,000m² factory.
124 dedicated staff members, 500+ skilled production workers, and 100+ professional sales team members committed to excellence.
Alibaba Certified Supplier with Quality Management System certification and dedicated QA/QC inspection team.
Daily shipment volume exceeding 10,000 pieces with quick turnaround for custom orders.
All our products are made with 100% virgin human hair sourced from India, Brazil, Peru, Malaysia, Europe, and Remy. Featuring pre-plucked hairlines, baby hair, and thick ends.
High-definition lace wigs for natural-looking hairlines and versatile styling.
Trendy and low-maintenance bob styles in straight, curly, and colorful variations.
Vibrant and fashion-forward colors with perfect cuticle alignment.
Our efficient production system and global logistics network ensure timely delivery worldwide.
With over 20,000m² of manufacturing space and 500+ skilled workers, we maintain:
Every product undergoes rigorous inspection:
Fast worldwide shipping with leading carriers:
Carriers: FedEx, DHL, UPS, TNT
Comprehensive solutions tailored to meet diverse business needs in the hair industry.
Competitive pricing for retailers and distributors worldwide. Primary markets: North America, Africa, Western Europe, and domestic China.
Seamless one-piece direct shipping to your customers with custom packaging options. No minimum order requirements.
Private label services including custom branding, packaging (boxes, satin bags, tags), and unique product specifications.
YEsWiGs
+86 180 3966 7325
Cross-Border E-commerce Industrial ParkXuchang, Henan Province, China
We welcome clients to visit our 20,000m² manufacturing facility in Xuchang.