'); background-size: cover; opacity: 0.2; } .hero-content { position: relative; max-width: 800px; margin: 0 auto; padding: 0 20px; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; text-shadow: 0 2px 4px rgba(0,0,0,0.2); } .hero p { font-size: 1.5rem; margin-bottom: 30px; font-weight: 300; max-width: 700px; margin-left: auto; margin-right: auto; } /* About Section */ .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; } .about-card { background: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; } .about-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .about-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; } .about-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--dark); } .stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; } .stat-item { text-align: center; padding: 20px; background: var(--light); border-radius: 8px; } .stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; } .stat-label { font-size: 1.1rem; color: var(--dark); } /* Products Section */ .products-tabs { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; } .tab-btn { padding: 12px 25px; background: var(--light); margin: 5px; border: none; border-radius: 30px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; } .tab-btn:hover, .tab-btn.active { background: var(--primary); color: white; } .tab-content { display: none; } .tab-content.active { display: block; } .product-table { width: 100%; border-collapse: collapse; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-radius: 10px; overflow: hidden; } .product-table th { background: var(--primary); color: white; padding: 15px 20px; text-align: left; font-weight: 600; } .product-table td { padding: 15px 20px; border-bottom: 1px solid var(--border); } .product-table tr:last-child td { border-bottom: none; } .product-table tr:hover { background-color: rgba(142, 68, 173, 0.05); } .badge { display: inline-block; padding: 5px 10px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; margin-right: 5px; } .badge.top { background: #ffc107; color: #333; } .badge.ready { background: #28a745; color: white; } .badge.picks { background: #dc3545; color: white; } /* Materials Section */ .materials-section { background: var(--light); } .materials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .material-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .material-header { background: var(--secondary); color: white; padding: 20px; text-align: center; } .material-body { padding: 25px; } .material-body ul { list-style: none; margin-top: 15px; } .material-body li { padding: 8px 0; border-bottom: 1px dashed var(--border); display: flex; } .material-body li:last-child { border-bottom: none; } .material-body li::before { content: '•'; color: var(--primary); font-weight: bold; display: inline-block; width: 20px; font-size: 1.2rem; } /* CTA Section */ .cta-section { background: linear-gradient(135deg, var(--dark) 0%, #1a2530 100%); color: white; text-align: center; padding: 80px 0; } .cta-content { max-width: 800px; margin: 0 auto; } .cta-section h2 { font-size: 2.5rem; margin-bottom: 20px; } .cta-section p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .cta-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } .btn-secondary { background: transparent; border: 2px solid white; } .btn-secondary:hover { background: white; color: var(--dark); } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.5rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-column h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 3px; background: var(--primary); } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 12px; } .footer-column ul li a { color: #bbb; text-decoration: none; transition: color 0.3s ease; } .footer-column ul li a:hover { color: white; } .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #999; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 768px) { .header-container { flex-direction: column; padding: 15px 0; } nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } .section-title h2 { font-size: 2rem; } .cta-buttons { flex-direction: column; align-items: center; } .product-table { display: block; overflow-x: auto; } } /* Material Icons */ .material-icons { font-family: 'Material Icons'; font-weight: normal; font-style: normal; font-size: 24px; display: inline-block; line-height: 1; text-transform: none; letter-spacing: normal; word-wrap: normal; white-space: nowrap; direction: ltr; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; -moz-osx-font-smoothing: grayscale; font-feature-settings: 'liga'; } /* Print styles */ @media print { nav, .cta-section, .products-tabs, footer { display: none; } body { padding: 20px; background: white; color: black; font-size: 12pt; } .container { max-width: 100%; padding: 0; } .hero, .materials-section { background: white; color: black; padding: 20px 0; } .section-title::after, .footer-column h3::after { background: black; } }
Leading Chinese exporter of high-quality wigs, hair extensions, closures, and men's hair systems with 20+ years of industry expertise
Explore Our ProductsTrusted manufacturer and supplier of premium hair products
Qinyang Mingxia Trading Co., Ltd. is a professional hair products manufacturer and trading company based in Henan, China. Founded in 2022, we bring over 20 years of industry expertise to every product we create.
We specialize in high-quality human hair products including wigs, extensions, closures, frontals, and men's toupees. Our products are crafted using Brazilian, Vietnamese, Cambodian, and Mongolian virgin hair.
All our manufacturing processes undergo strict quality control and onsite verification. We guarantee authentic human hair with proper cuticle alignment and minimal processing.
High-quality hair solutions for professional and personal use
Product Name | Price Range | Min. Order | Details |
---|---|---|---|
Hot Halloween Clown Party Wig Short Blue Curl | $1.20-1.57 | 50 pcs | High-temperature synthetic fiber, light brown lace |
Boho Style Triangle Knotless Curly Braided Wig | $27-32 | 1 pc | Full lace front with transparent lace, Boho style |
34Inch Full Lace Braided Wigs Synthetic Twisted | $19.50-45.60 | 99 pcs | With baby hair, HD lace frontal |
JJ-W-6 HD Full Braided Wigs Human 360 Lace Frontal | $8.90-41.90 | 10 pcs | Knotless box braided, Swiss lace Top Pick |
26" HD Lace Front Half Braided Wigs for Women | $8.90-41.90 | 10 pcs | Half braided half curly, Burgundy color |
Short Hair Afro Kinky Curly Wigs With Bangs | $9.80-14.80 | 100 pcs | Synthetic ombre, natural blonde red blue Ready to Ship |
180% Density Bob Lace Front Wig 99J Burgundy | $23.50-48.60 | 9 pcs | Bob color wigs, multiple colors available |
Transparent HD 13x4 Lace Front Human Hair Wig | $19.50-45.60 | 1 pc | Bone straight Brazilian Peruvian virgin hair Top Pick |
Product Name | Price Range | Min. Order | Details |
---|---|---|---|
Super Double Drawn 14A Grade Bone Straight Vietnamese Hair | $47 | 1 pc | Virgin human hair extension bundle Top Ranking |
Micro Ring Hair Extensions Dark Brown | $2.90-15.80 | 1 pc | Micro loop human hair extensions |
60# Platinum Blonde Straight Micro Bead Hair Extensions | $2.90-15.80 | 1 pc | Remy micro loop human hair extensions |
RTS 12-Inch Silky Straight Remy Human Hair Extensions | $21.58 | 2 pcs | Seamless skin weft tape, 613# Ready to Ship |
BEST QUALITY 9A Grade Raw Virgin Vietnamese Hair | $6.57-9.50 | 3 pcs | Cuticle aligned, natural straight mink hair bundles |
Product Name | Price Range | Min. Order | Details |
---|---|---|---|
Wholesale Kim 2x6 Swiss Lace Closure | $9.60-41.90 | 99 pcs | 100% Virgin Brazilian human hair, deep middle part |
44 55 66 77 Lace Closure, 134 136 360 Lace Frontal | $9.60-41.90 | 99 pcs | HD/Transparent lace available, multiple sizes |
Wholesale Raw Thin HD Lace Transparent 4X4 5X5 | $9.60-41.90 | 99 pcs | Virgin Brazilian hair, 4x4 to 7x7 closures |
Cheap 10A Grade Brazilian Human Hair Black Color | $6.90-7.60 | 99 pcs | 4x4x1 closure, T part lace closure |
Product Name | Price Range | Min. Order | Details |
---|---|---|---|
High Grade Human Hair Replacement | $98-108 | 99 pcs | Professional hair salon toupee for men |
Human Hair Toupee for Men NLW European | $98-108 | 99 pcs | French lace units, human hair replacement system |
Wholesale Full Lace Afro Toupee Hair for Man | $98-108 | 99 pcs | Replacement system with natural hairline |
Men Hair Toupee Men's Thickness Full PU Wig | $89.20-214.30 | 1 pc | 100% straight hair men wigs |
Superior quality through expert material selection and manufacturing
We use only the finest human hair sourced from various regions:
Our premium lace options ensure undetectable hairlines:
Every product includes premium craftsmanship details:
Contact us today for wholesale pricing, dropshipping options, and custom orders. Our team is available 24/7 to assist with your hair product needs.