'); 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; color: white; margin-bottom: 20px; } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } /* About Section */ .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .about-card { background: var(--light); padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .about-card:hover { transform: translateY(-10px); } .about-card h3 { color: var(--primary); margin-bottom: 15px; display: flex; align-items: center; } .stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin-top: 30px; } .stat-item { text-align: center; padding: 20px; background: white; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); } .stat-item .number { font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 10px; } /* Products Section */ .products-section { background: var(--light); } .product-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; } .filter-btn { padding: 8px 20px; background: white; border: 1px solid var(--gray); border-radius: 30px; cursor: pointer; transition: all 0.3s; } .filter-btn.active, .filter-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: 30px; } .product-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s; } .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-img { height: 200px; background: var(--gray); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; background: linear-gradient(45deg, #8e44ad, #3498db); } .product-info { padding: 20px; } .product-title { font-size: 1.2rem; margin-bottom: 10px; } .product-price { color: var(--accent); font-weight: 700; font-size: 1.3rem; margin-bottom: 10px; } .product-moq { color: var(--dark); font-weight: 600; } .product-features { list-style: none; margin: 15px 0; } .product-features li { padding: 5px 0; display: flex; align-items: flex-start; } .product-features li:before { content: '✓'; color: var(--primary); font-weight: bold; margin-right: 10px; } /* Why Choose Us */ .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .benefit-card { display: flex; background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .benefit-icon { min-width: 80px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; } .benefit-content { padding: 25px; } /* Testimonials */ .testimonials-section { background: linear-gradient(to right, #8e44ad, #3498db); color: white; } .testimonials-section h2 { color: white; } .testimonials-section h2:after { background: white; } .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .testimonial-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 8px; backdrop-filter: blur(10px); } .testimonial-text { font-style: italic; margin-bottom: 20px; position: relative; padding-left: 30px; } .testimonial-text:before { content: '"'; position: absolute; left: 0; top: -15px; font-size: 4rem; color: rgba(255,255,255,0.3); font-family: serif; } /* Contact */ .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .contact-info { display: flex; flex-direction: column; gap: 20px; } .contact-item { display: flex; align-items: flex-start; gap: 15px; } .contact-icon { min-width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; } .contact-form { background: var(--light); padding: 30px; border-radius: 8px; } .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: 4px; font-size: 16px; } textarea.form-control { min-height: 150px; } /* Footer */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-col h3 { color: white; margin-bottom: 20px; font-size: 1.3rem; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #bbb; text-decoration: none; transition: all 0.3s; } .footer-links a:hover { color: white; padding-left: 5px; } .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #bbb; font-size: 14px; } .certifications { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 15px; } .cert-badge { background: rgba(255,255,255,0.1); padding: 8px 15px; border-radius: 30px; font-size: 12px; } /* Responsive */ @media (max-width: 768px) { .header-container { flex-wrap: wrap; } .mobile-toggle { display: block; order: 1; } .logo { order: 0; } nav { width: 100%; order: 2; margin-top: 15px; display: none; } nav.active { display: block; } nav ul { flex-direction: column; } nav li { margin: 0; margin-bottom: 10px; } h1 { font-size: 2.5rem; } h2 { font-size: 1.8rem; } }
LSY HAIR - Professional manufacturer of 100% virgin human hair wigs, extensions and closures with over 9 years experience. Certified supplier with global distribution network.
Contact Us TodayXuchang Longshengyuan Hair Products Co., Ltd. is a leading manufacturer specializing in premium human hair products.
Founded: 9+ years
Location: Xuchang, Henan, China
Facilities: 8,845 m² production facility (12,000 m² total area)
Employees: 500+ total staff including 34 foreign trade specialists and 50 technical/managers
Annual Revenue: $1.3M+ through online channels
Our commitment to quality is verified by:
Recognized as Alibaba "20-Year Gold Supplier" and "Top 10 Leading Factory for Hair Extensions & Wigs".
With branches in Guangzhou, UK, and Nigeria, we serve customers worldwide:
96.2% on-time delivery rate with 5-hour average response time.
100% virgin human hair with no chemical treatment, ensuring healthy cuticles and longevity.
Our competitive advantages that set us apart in the hair industry
As a direct manufacturer, we offer wholesale prices without middleman markups, maximizing your profit potential.
4 dedicated QA/QC inspectors implement raw material + finished product double inspection system.
Specialized designs for diverse markets including Afro-textured styles, European preferences, and Asian trends.
Full OEM/ODM support: custom packaging, logo printing, and personalized specifications (length/color/density).
96.2% on-time delivery rate through partnerships with DHL, FedEx, UPS and strategically located warehouses.
100% virgin human hair with intact cuticles ensuring no shedding, no tangling, no mix, and 2-3 year lifespan.
Hear what our global clients say about our products and services
Reach out to start your hair business partnership today
https://lsyhairfactory.en.alibaba.com
Xuchang Longshengyuan Hair Products Co., Ltd. Xuchang City, Henan Province, China
Monday-Friday: 8:30 AM - 6:00 PM (GMT+8) Saturday: 9:00 AM - 4:00 PM