'); background-size: cover; color: white; padding: 80px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .btn { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; } .btn:hover { background-color: #ff5252; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Section Styles */ section { padding: 70px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background-color: var(--secondary); } .section-title p { max-width: 700px; margin: 20px auto 0; color: var(--gray); } /* 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(--primary); } .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-card { background-color: var(--light); padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,0.05); } .stat-card .number { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; } .certification-badge { display: inline-block; background-color: #eaf7ff; color: #0066b3; padding: 5px 15px; border-radius: 20px; font-weight: 600; margin-top: 15px; font-size: 0.9rem; } /* Benefits Section */ .benefits { background-color: var(--light); } .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .benefit-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; } .benefit-card:hover { transform: translateY(-10px); } .benefit-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; } .benefit-card h3 { margin-bottom: 15px; color: var(--dark); } /* Products Section */ .products-tabs { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; } .tab-btn { padding: 10px 25px; background: none; border: none; font-weight: 600; color: var(--gray); cursor: pointer; border-bottom: 3px solid transparent; transition: all 0.3s; } .tab-btn.active { color: var(--primary); border-bottom: 3px solid var(--secondary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; } .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 8px 25px rgba(0,0,0,0.1); } .product-img { height: 200px; background-color: #f0f0f0; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: 600; } .product-details { padding: 20px; } .product-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); } .product-price { color: var(--primary); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; } .product-features { list-style: none; margin: 15px 0; } .product-features li { margin-bottom: 5px; position: relative; padding-left: 20px; font-size: 0.9rem; } .product-features li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary); } /* Testimonials */ .testimonials-container { max-width: 800px; margin: 0 auto; } .testimonial-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-bottom: 30px; position: relative; } .testimonial-card::before { content: '"'; position: absolute; top: 15px; left: 20px; font-size: 4rem; color: rgba(106, 13, 173, 0.1); font-family: Georgia, serif; } .testimonial-text { font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; } .client-info { display: flex; align-items: center; } .client-info .date { margin-left: auto; color: var(--gray); font-size: 0.9rem; } /* CTA Section */ .cta { background: linear-gradient(to right, var(--primary), #8a3ffc); color: white; text-align: center; padding: 80px 0; } .cta h2 { font-size: 2.5rem; margin-bottom: 20px; } /* Footer */ footer { background-color: #1a1a1a; color: #ddd; padding: 60px 0 20px; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; } .footer-logo { font-size: 1.8rem; color: white; margin-bottom: 15px; } .footer-about p { margin-bottom: 20px; opacity: 0.8; } .footer-title { color: white; margin-bottom: 20px; font-size: 1.2rem; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #ddd; text-decoration: none; transition: opacity 0.3s; opacity: 0.8; } .footer-links a:hover { opacity: 1; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #333; opacity: 0.7; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } .nav-menu { margin-top: 20px; justify-content: center; } .nav-menu li { margin: 0 10px; } .about-content { grid-template-columns: 1fr; } .benefits-grid { grid-template-columns: 1fr; } .products-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .hero h2 { font-size: 2.2rem; } }
Xuchang Youwang Industrial Co., Ltd specializes in high-quality human hair wigs, extensions, and braiding hair. SGS certified with 30 years of industry expertise.
Explore Our ProductsWith decades of experience in the hair industry, we've perfected the art of creating premium human hair products
Founded in 1995, we've grown into a leading manufacturer of high-quality human hair products. Our 32,000㎡ facility in Henan, China employs 301-500 skilled professionals dedicated to crafting premium hair solutions.
We serve global markets with a focus on North America, with localized design centers in the US and South Africa since 2005. Our commitment to excellence earned us the 2024 Central Plains Billionaire Online Merchant Award.
Our competitive advantages that set us apart in the hair products industry
5-7 days delivery time with large inventory ready to ship
100% human hair with no shedding or tangling. High-quality materials only
Hassle-free return policy for your peace of mind
ODM/OEM services with free logo design
Direct shipping to your customers with wholesale pricing
Round-the-clock sales support for all your needs
High-quality human hair solutions for diverse needs
Hear what our satisfied customers say about our products
"I received my hair and it's sooo beautiful and soft thank you so much!!! I will definitely come back for a blogger order soon I wish u all a blessed day"
"I love your hair it's beautiful. I would like to order more. I used your hair today. I like it"
"I got my package today. I love it and my gift. I am happy with them. I surely continue to do business with you in future"
Partner with us for premium quality hair products with wholesale pricing
Contact Us Today