'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; } .stats-container { display: flex; justify-content: center; flex-wrap: wrap; margin-top: 40px; gap: 30px; } .stat-box { background: rgba(255,255,255,0.1); border-radius: 8px; padding: 20px; min-width: 180px; text-align: center; backdrop-filter: blur(5px); } .stat-number { font-size: 2.5rem; font-weight: 700; margin-bottom: 5px; } .stat-label { font-size: 1rem; opacity: 0.9; } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--dark); } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature-box { background: var(--light); padding: 20px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .feature-box:hover { transform: translateY(-5px); } .feature-box h4 { color: var(--primary); margin-bottom: 10px; } /* Services Section */ .services { background-color: #f8f9fa; } .services-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .service-card { background: white; border-radius: 10px; 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-header { background: var(--primary); color: white; padding: 20px; text-align: center; } .service-header h3 { font-size: 1.5rem; } .service-body { padding: 25px; } /* Products Section */ .categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 40px; } .category-btn { background: var(--light); padding: 10px 20px; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; border: 1px solid #eee; } .category-btn.active, .category-btn:hover { background: var(--primary); color: white; border-color: var(--primary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: all 0.3s ease; background: white; } .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-badge { position: absolute; top: 10px; right: 10px; background: var(--accent); color: white; padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; } .product-img { height: 200px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: 600; } .product-body { padding: 20px; position: relative; } .product-category { color: var(--primary); font-size: 0.9rem; margin-bottom: 5px; } .product-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); } .product-features { margin: 15px 0; font-size: 0.9rem; } .product-feature { display: flex; margin-bottom: 8px; } .product-feature span:first-child { font-weight: 600; min-width: 100px; } .product-price { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin: 15px 0; } /* Contact Section */ .contact { background: linear-gradient(to right, #8e44ad, #3498db); color: white; } .contact .section-title h2 { background: transparent; color: white; } .contact .section-title::after { background: rgba(255,255,255,0.3); } .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; } .contact-method { display: flex; align-items: center; margin-bottom: 25px; } .contact-icon { background: rgba(255,255,255,0.1); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 20px; font-size: 1.5rem; } .languages { margin-top: 40px; } .language-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; } .language-tag { background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; } .contact-form input, .contact-form textarea { width: 100%; padding: 15px; margin-bottom: 20px; border: none; border-radius: 4px; background: rgba(255,255,255,0.9); } .contact-form textarea { height: 150px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 50px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-column h4 { color: white; margin-bottom: 20px; font-size: 1.2rem; } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 10px; } .footer-column ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.3s ease; } .footer-column ul li a:hover { color: white; padding-left: 5px; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content, .contact-container { grid-template-columns: 1fr; } .hero h1 { font-size: 2.5rem; } } @media (max-width: 768px) { .mobile-menu-btn { display: block; } nav { position: fixed; top: 70px; left: -100%; background: white; width: 100%; height: calc(100vh - 70px); transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } nav.active { left: 0; } nav ul { flex-direction: column; padding: 20px; } nav ul li { margin: 15px 0; } .feature-box { grid-column: span 2; } .section-title h2 { font-size: 2rem; } } @media (max-width: 576px) { .hero h1 { font-size: 2rem; } .stat-box { min-width: 140px; } .products-grid { grid-template-columns: 1fr; } }
Manufacturer of high-quality wigs, braiding hair, and hair accessories from the "Hair Capital of China"
Contact Us TodayBased in Xuchang, China - renowned as the "Hair Capital of China", Xuchang Hongshijia New Material Co., Ltd. specializes in manufacturing premium synthetic hair products including wigs, braiding hair, faux locs, and hair accessories.
With over 500 skilled employees and 3 years of experience as an Alibaba Gold Supplier, we've built a reputation for quality, reliability, and exceptional customer service across global markets.
Products shipped worldwide through Alibaba, AliExpress, Amazon, eBay, and Wish platforms.
High-temperature synthetic fiber for durability and natural appearance.
Most products available with 1 piece minimum order quantity.
Quick dispatch for in-stock items to reduce delivery time.
We meticulously craft each product using premium materials to ensure optimal performance and natural appearance. Our quality control process includes multiple inspection points from raw materials to finished products.
Leveraging Xuchang's renowned hair industry ecosystem, we possess deep expertise in synthetic hair manufacturing. Our established supply chain ensures consistent product quality and reliable delivery timelines.
Our dedicated customer service team provides 24/7 support with 99.76% response rate and ≤1 hour average response time. We offer expert guidance on product selection and troubleshooting.
We specialize in custom hair solutions from concept to production. Whether you need private labeling, custom colors, or unique textures, our design and manufacturing teams can bring your vision to reality.
We welcome wholesale, custom orders, and dropshipping partnerships from worldwide distributors, retailers, and salon professionals.
+86 15290945180 (24-hour response)
xchsjcl.en.alibaba.com
We provide customer service in 11 languages: