'); background-size: cover; background-position: center; color: var(--white); padding: 180px 0 100px; text-align: center; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; color: var(--white); animation: fadeInDown 1s ease; } .hero p { font-size: 1.3rem; max-width: 700px; margin: 0 auto 40px; color: var(--gray); animation: fadeInUp 1s ease; } .hero-buttons { display: flex; justify-content: center; gap: 20px; animation: fadeInUp 1s ease; } /* About Section */ .about { background-color: var(--light); } .about-content { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; } .about-text { flex: 1; min-width: 300px; } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-box { background: var(--white); padding: 20px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); text-align: center; } .stat-box h3 { color: var(--secondary); font-size: 2rem; margin-bottom: 5px; } .about-image { flex: 1; min-width: 300px; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.15); } /* Products Section */ .products .product-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; } .category-card { background: var(--light); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .category-card:hover { transform: translateY(-10px); } .category-header { background: var(--primary); color: var(--white); padding: 20px; text-align: center; } .category-body { padding: 25px; } .product-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; } .feature-item { display: flex; align-items: flex-start; gap: 15px; } .feature-icon { color: var(--secondary); font-size: 1.5rem; min-width: 30px; } /* Advantages Section */ .advantages { background: linear-gradient(to bottom, var(--primary) 0%, var(--primary) 50%, var(--light) 50%, var(--light) 100%); } .advantage-container { background: var(--white); border-radius: 10px; box-shadow: 0 15px 50px rgba(0,0,0,0.1); padding: 50px; } .advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { text-align: center; padding: 30px 20px; transition: all 0.3s ease; } .advantage-card:hover { transform: translateY(-10px); } .advantage-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; } /* Process Section */ .process { background-color: var(--light); } .timeline { position: relative; max-width: 900px; margin: 0 auto; } .timeline::after { content: ''; position: absolute; width: 4px; background-color: var(--secondary); top: 0; bottom: 0; left: 50%; margin-left: -2px; } .process-step { padding: 20px 30px; position: relative; width: 50%; box-sizing: border-box; } .process-step:nth-child(odd) { left: 0; } .process-step:nth-child(even) { left: 50%; } .step-content { padding: 20px; background-color: var(--white); border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); position: relative; } .step-content::after { content: ''; position: absolute; width: 20px; height: 20px; right: -10px; background-color: var(--white); top: 30px; border-radius: 50%; z-index: 1; border: 4px solid var(--secondary); } .process-step:nth-child(even) .step-content::after { left: -10px; } /* Contact Section */ .contact { background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('data:image/svg+xml;utf8,'); background-size: cover; color: var(--white); } .contact h2 { color: var(--white); } .contact h2:after { background: var(--secondary); } .contact-container { display: flex; flex-wrap: wrap; gap: 40px; } .contact-info { flex: 1; min-width: 300px; } .contact-method { display: flex; align-items: center; margin-bottom: 30px; gap: 20px; } .contact-icon { font-size: 1.8rem; color: var(--secondary); min-width: 40px; text-align: center; } /* Footer */ footer { background-color: var(--primary); color: var(--white); padding: 40px 0 20px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; } .footer-logo { color: var(--white); font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; display: block; } .footer-logo span { color: var(--secondary); } .footer-links h4 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; } .footer-links ul { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--secondary); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #999; } /* Responsive Design */ @media (max-width: 992px) { .timeline::after { left: 31px; } .process-step { width: 100%; padding-left: 70px; padding-right: 25px; } .process-step:nth-child(even) { left: 0; } .step-content::after { left: 21px; } .process-step:nth-child(even) .step-content::after { left: 21px; } } @media (max-width: 768px) { .header-container { flex-wrap: wrap; } .mobile-toggle { display: block; } nav { width: 100%; max-height: 0; overflow: hidden; transition: max-height 0.5s ease; } nav.active { max-height: 500px; } nav ul { flex-direction: column; padding: 20px 0; } nav ul li { margin: 10px 0; } h1 { font-size: 2.2rem; } h2 { font-size: 1.8rem; } .hero { padding: 150px 0 80px; } .hero h1 { font-size: 2.5rem; } .hero-buttons { flex-direction: column; align-items: center; gap: 15px; } .btn { width: 100%; max-width: 300px; text-align: center; } } /* Animations */ @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
Qingdao Nerissa Hair Products specializes in creating 100% virgin cuticle aligned human hair wigs, extensions, and hairpieces since 2015. Experience beauty redefined.
Founded in 2015 (with official establishment in 2017), Qingdao Nerissa Hair Products Co., Ltd. is a premier manufacturer and supplier of premium human hair products located in Qingdao, China - the global epicenter of hair production.
With our dedicated team of 5-10 professionals operating from a 200-1000㎡ facility, we've mastered the art of creating exceptional hair pieces that enhance natural beauty.
Our mission is simple: "Nerissa hair, make you more beautiful!" We're not just suppliers - we're your trusted partners in beauty.
Store Rating
On-time Delivery
Response Time
Minimum Order
Since 2015 | Qingdao, China
All our products are made with 100% virgin cuticle aligned human hair, featuring high quality, customization options, fast service, wholesale pricing, and large inventories.
Luxurious quality human hair wigs available in various colors and textures. Perfect for fashion-forward individuals seeking versatility.
Premium quality black wigs meeting the same high standards as our colored collection. Ideal for classic, natural looks.
Stylish short wigs (like bob cuts) made with 100% virgin hair. Perfect for convenience without compromising style.
Full customization of color, texture, and style to match your vision. Plus free logo customization and dropshipping services.
100% virgin cuticle aligned hair with quality control at every stage. Backed by TEST REPORT and CE certification.
Worldwide shipping via UPS, TNT, FedEx, EMS, and more. Professional packaging with complimentary gifts included.
Low MOQ starting from 1 piece, wholesale pricing for all customers, and large in-stock inventory for immediate shipping.
Dedicated R&D and QC teams with nearly 30 years of industry experience ensuring continuous innovation and perfection.
Round-the-clock customer service with ≤2 hour response time and dedicated after-sales support team.
Every Nerissa hair product undergoes a meticulous 6-step production process to ensure premium quality and customer satisfaction.
Selection of premium quality human hair raw materials with aligned cuticles.
Thorough cleansing of raw materials ensuring hygiene and preparation for processing.
Precision crafting of desired curl patterns and textures according to specifications.
Expert hand and machine sewing of wefts to create the foundation of each piece.
Rigorous inspection by our QC team before packaging to ensure perfection.
Professional packaging and dispatch through our global logistics partners.
Have questions about our products? Our team is ready to assist you 24/7.
Qingdao, China - The Global Hair Products Capital
Nerissa Wang, Season Pang, Carmen Zhang, Elena Qiu
PayPal, MasterCard, VISA, MoneyGram, Western Union