'); background-size: cover; background-position: center; color: white; text-align: center; padding: 6rem 1rem; } .hero h2 { font-size: 2.8rem; margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); } .hero p { font-size: 1.4rem; max-width: 800px; margin: 0 auto 2rem; text-shadow: 0 1px 2px rgba(0,0,0,0.5); } .cta-button { display: inline-block; background: var(--accent); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s; border: 2px solid var(--accent); } .cta-button:hover { background: transparent; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Section Styles */ section { padding: 5rem 0; } .section-header { text-align: center; margin-bottom: 3rem; } .section-header h2 { font-size: 2.3rem; color: var(--primary); margin-bottom: 1rem; position: relative; display: inline-block; } .section-header h2:after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--accent); border-radius: 2px; } .section-header p { color: var(--gray); max-width: 700px; margin: 1rem auto 0; font-size: 1.1rem; } /* About Section */ .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .stat-card { background: white; border-radius: 10px; padding: 2rem; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .stat-card:hover { transform: translateY(-10px); } .stat-card .number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; } .stat-card .label { font-size: 1.1rem; color: var(--dark); } /* Products Section */ .product-tabs { display: flex; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; } .tab-btn { background: white; border: none; padding: 12px 25px; margin: 0 5px 10px; border-radius: 30px; font-weight: 600; cursor: pointer; transition: all 0.3s; box-shadow: 0 3px 10px rgba(0,0,0,0.08); } .tab-btn.active, .tab-btn:hover { background: var(--primary); color: white; } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s; } .product-card:hover { transform: translateY(-10px); } .product-img { height: 220px; background: linear-gradient(45deg, #e0e0e0, #f5f5f5); display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: 600; } .product-info { padding: 1.5rem; } .product-info h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--dark); } .product-price { color: var(--accent); font-weight: 700; font-size: 1.2rem; margin: 0.5rem 0; } .product-moq { color: var(--gray); font-size: 0.95rem; } .features { margin-top: 1rem; } .features li { margin-bottom: 0.3rem; font-size: 0.95rem; position: relative; padding-left: 20px; } .features li:before { content: '✓'; color: var(--primary); position: absolute; left: 0; top: 0; } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .service-card { background: white; border-radius: 10px; padding: 2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.08); position: relative; overflow: hidden; border-top: 4px solid var(--secondary); } .service-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--dark); } .service-card ul { padding-left: 1.2rem; } .service-card li { margin-bottom: 0.8rem; } /* Certifications */ .certifications { background: linear-gradient(135deg, var(--primary), #6a3093); color: white; padding: 4rem 2rem; text-align: center; } .cert-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; } .cert-badge { background: rgba(255,255,255,0.1); padding: 1.5rem 1rem; border-radius: 8px; min-width: 150px; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .contact-info { padding: 3rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 1.5rem; } .contact-detail { margin-bottom: 1.5rem; padding-left: 30px; position: relative; } .contact-detail i { position: absolute; left: 0; top: 0; font-size: 1.2rem; width: 24px; text-align: center; } .contact-detail h4 { font-size: 1.2rem; margin-bottom: 0.3rem; } /* Footer */ footer { background: var(--dark); color: white; padding: 3rem 0 1.5rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--accent); } .footer-col ul li { margin-bottom: 0.8rem; } .footer-col ul li a { color: #ddd; text-decoration: none; transition: color 0.3s; } .footer-col ul li a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .hero h2 { font-size: 2.3rem; } .hero p { font-size: 1.2rem; } } @media (max-width: 768px) { nav ul { display: none; } .hero { padding: 4rem 1rem; } .hero h2 { font-size: 2rem; } .section-header h2 { font-size: 2rem; } .contact-container { grid-template-columns: 1fr; } } @media (max-width: 576px) { .hero h2 { font-size: 1.8rem; } .hero p { font-size: 1.1rem; } .section-header h2 { font-size: 1.8rem; } .stat-card { padding: 1.5rem; } .product-card { max-width: 350px; margin: 0 auto; } }
With 31 years of export experience and 23 international certifications, we deliver high-quality products to global markets
Request a QuoteYiwu Qianying Jewelry Co., Ltd. is a leading manufacturer and exporter of premium wigs, hair accessories, and fashion products with over three decades of industry experience
Established in 2005 (with brand history since 1999), we've grown to become a trusted partner for global retailers including Walmart and Carrefour. Our vertically integrated operation combines R&D, manufacturing, and sales to deliver exceptional products at competitive prices.
Explore our premium range of hair products and fashion accessories designed for quality, style, and comfort
Natural black, pre-plucked hairline, heat-resistant
Designed for African-American women, Peruvian hair
Latisha style, pre-plucked, heat-resistant fibers
Breathable material for added volume at crown
Comprehensive solutions from custom manufacturing to Amazon fulfillment support
Our team provides support in 15+ languages including Italian, Russian, French, German, Spanish, Portuguese, Japanese, Vietnamese, Turkish, and Mongolian.
We maintain the highest quality standards through rigorous testing and international certifications
Why global retailers choose us as their trusted manufacturing partner
From hair fiber materials to finished products, we control the entire production process ensuring quality and cost efficiency.
23 international certifications and patent protection ensure our products meet the strictest global market requirements.
OEM/ODM services combined with Amazon specialization meet both traditional and e-commerce business needs.
10+ production lines and 24-hour shipping capacity balance high-volume manufacturing with rapid delivery.
31 years of export experience with 81-90% export ratio demonstrates deep understanding of international markets.
Rigorous quality control processes at every production stage ensure consistent product excellence.
Get in touch with our team for quotes, product information, or partnership opportunities
+86-13017986677
Zhejiang, China
Monday-Friday: 8:00 AM - 5:00 PM (GMT+8)