'); background-size: cover; color: white; padding: 100px 0; text-align: center; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; } .hero p { font-size: 1.5rem; max-width: 800px; margin: 0 auto 30px; } .btn { display: inline-block; background-color: var(--primary); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; margin: 10px 5px; } .btn:hover { background-color: #7d3c98; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .btn-secondary { background-color: var(--secondary); } .btn-secondary:hover { background-color: #2980b9; } /* Section Common Styles */ section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 60px; } .section-header h2 { font-size: 2.5rem; color: var(--dark); position: relative; display: inline-block; margin-bottom: 15px; } .section-header h2::after { content: ''; position: absolute; width: 70px; height: 3px; background-color: var(--primary); bottom: -10px; left: 50%; transform: translateX(-50%); } .section-header p { max-width: 700px; margin: 20px auto 0; color: #777; } /* About Section */ .about-content { display: flex; flex-wrap: wrap; gap: 30px; } .about-text { flex: 1; min-width: 300px; } .about-stats { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; min-width: 300px; } .stat-card { background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; } .stat-card:hover { transform: translateY(-10px); } .stat-card h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; } .stat-card p { color: var(--dark); font-weight: 600; } /* Products Section */ .products-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s; display: flex; flex-direction: column; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-img { height: 200px; background-color: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #aaa; font-weight: bold; } .product-content { padding: 25px; flex: 1; display: flex; flex-direction: column; } .product-content h3 { margin-bottom: 10px; color: var(--dark); } .product-content ul { margin: 15px 0; padding-left: 20px; flex: 1; } .product-content li { margin-bottom: 8px; } .product-price { background-color: var(--light); padding: 15px 25px; font-weight: 700; color: var(--primary); } /* Advantages Section */ .advantages { background-color: var(--light); } .advantages-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; } .advantage-card { background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: all 0.3s; } .advantage-card:hover { transform: translateY(-10px); } .advantage-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; } .advantage-card h3 { margin-bottom: 15px; color: var(--dark); } /* Timeline */ .timeline { position: relative; max-width: 800px; margin: 0 auto; } .timeline::after { content: ''; position: absolute; width: 4px; background-color: var(--primary); top: 0; bottom: 0; left: 50%; margin-left: -2px; } .timeline-item { position: relative; width: 50%; padding: 20px 40px; } .timeline-item::after { content: ''; position: absolute; width: 20px; height: 20px; background-color: white; border: 4px solid var(--primary); border-radius: 50%; top: 25px; z-index: 1; } .left { left: 0; } .left::after { right: -12px; } .right { left: 50%; } .right::after { left: -12px; } .timeline-content { background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } /* Contact Section */ .contact-container { display: flex; flex-wrap: wrap; gap: 40px; } .contact-info { flex: 1; min-width: 300px; } .contact-form { flex: 1; min-width: 300px; } .info-item { display: flex; margin-bottom: 25px; } .info-icon { font-size: 1.5rem; color: var(--primary); margin-right: 15px; min-width: 30px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; font-size: 1rem; } textarea.form-control { min-height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 60px 0 30px; } .footer-container { display: flex; flex-wrap: wrap; gap: 50px; } .footer-column { flex: 1; min-width: 250px; } .footer-column h3 { margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-column h3::after { content: ''; position: absolute; width: 40px; height: 3px; background-color: var(--primary); bottom: 0; left: 0; } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 10px; } .footer-column ul li a { color: #bbb; text-decoration: none; transition: color 0.3s; } .footer-column ul li a:hover { color: white; } .copyright { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #bbb; font-size: 0.9rem; } /* Responsive */ @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } .timeline::after { left: 31px; } .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; } .timeline-item::after { left: 21px; } .right { left: 0; } nav ul { flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } }
Manufacturer of 100% Human Hair Wigs, Hair Bundles & Lace Closures Since 2007
Explore Products Contact UsProfessional OEM manufacturer specializing in premium human hair products for global markets
Royce Hair represents the unified strength of Guangzhou Aosun Hair Products Co., Ltd. and Xuchang Royce Hair Products Co., LTD. With combined expertise spanning over 18 years, we've established ourselves as a leading force in the global human hair industry.
Our manufacturing base in Xuchang — known as the "World's Wig Capital" — spans over 10,000m² and employs 355 skilled professionals. This vertical integration allows us to maintain complete control over our production process, ensuring consistent quality from raw material selection to finished products.
We specialize in 100% human hair products designed specifically for black women, with 91-100% of our products exported to major markets worldwide.
Years Experience
Factory Area
Skilled Workers
Export Volume
100% human hair products with cuticle aligned, double drawn, and glueless options
Natural-looking, easy-to-wear wigs designed for convenience
Premium quality raw materials at wholesale prices
Undetectable hair integration solutions
Our competitive advantages that set us apart in the hair industry
Eliminate middlemen costs with wholesale prices direct from our manufacturing facility.
Hot-selling items ready for immediate dispatch with global shipping options.
Start with as little as 1 piece - perfect for new businesses and small orders.
Customize colors, sizes, packaging, and branding to your specifications.
Strict quality management system with inspection at every production stage.
Dedicated team with ≤2 hour response time and one-on-one order tracking.
Our commitment to excellence through industry-leading certifications
Royce Hair maintains the highest quality standards verified by leading international certification bodies:
Our dedicated QC team implements a comprehensive quality control system covering:
On-time Delivery
Customer Satisfaction
Average Response Time
Product Certifications
From two specialized companies to an integrated industry leader
Our manufacturing foundation established in Xuchang, the global hub for human hair products, focusing exclusively on 100% human hair processing.
Founded Guangzhou Aosun Hair Products Co., Ltd. as a dedicated sales company focusing on international markets and southern China distribution.
Royce Hair Products achieved SGS Gold Supplier certification, validating our international quality standards.
To optimize operations and enhance customer service, Aosun Hair relocated from Guangzhou to Xuchang and fully integrated with Royce Hair.
Consolidated all operations under the Royce Hair brand, with Aosun Hair's Alibaba store closing on October 14, 2023.
Get in touch for wholesale inquiries, OEM requests, or product information
Xuchang Royce Hair Products Co., LTD.
Xuchang City, Henan Province, China
www.roycehairs.com
www.roycewigs.com
WhatsApp Business Account
(Contact us for specific number)
T/T, L/C, PayPal, Credit Card, Western Union