'); background-size: cover; background-position: center; color: white; text-align: center; padding: 80px 20px; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; } .btn { display: inline-block; padding: 12px 30px; background: var(--accent); color: white; text-decoration: none; border-radius: 4px; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; } .btn:hover { background: #a8895a; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.2); } .btn-outline { background: transparent; border: 2px solid white; margin-left: 15px; } .btn-outline:hover { background: rgba(255,255,255,0.1); } /* Stats Section */ .stats { background: white; padding: 50px 0; text-align: center; } .stats h2 { text-align: center; margin-bottom: 40px; color: var(--primary); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; } .stat-box { padding: 25px 15px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .stat-box:hover { transform: translateY(-5px); } .stat-value { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; } .stat-title { font-size: 1.1rem; color: var(--dark); } /* Why Choose Us */ .why-us { background: var(--light); padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; color: var(--primary); } .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .feature-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s; } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .feature-icon { height: 70px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: white; font-size: 30px; } .feature-content { padding: 25px; } .feature-content h3 { color: var(--primary); margin-bottom: 15px; } /* Products Section */ .products { padding: 80px 0; background: white; } .product-tabs { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; } .tab-btn { padding: 10px 20px; background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--dark); border-bottom: 3px solid transparent; margin: 0 5px 10px; transition: all 0.3s; } .tab-btn.active, .tab-btn:hover { color: var(--primary); border-bottom: 3px solid var(--accent); } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .product-card { border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); background: white; transition: all 0.3s; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-img { height: 200px; background: linear-gradient(45deg, #f5f5f5, #e9e9e9); display: flex; align-items: center; justify-content: center; color: #999; font-size: 14px; } .product-info { padding: 20px; } .product-info h3 { color: var(--primary); margin-bottom: 10px; } .product-price { color: var(--secondary); font-weight: 700; font-size: 1.2rem; margin: 10px 0; } .product-specs { font-size: 0.9rem; color: #666; margin: 10px 0; } /* About Section */ .about { padding: 80px 0; background: var(--light); } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text h2 { color: var(--primary); margin-bottom: 20px; } .about-features { margin: 30px 0; } .feature-item { display: flex; align-items: flex-start; margin-bottom: 15px; } .feature-item i { color: var(--accent); font-size: 20px; margin-right: 10px; margin-top: 5px; } .team-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .team-member { background: white; border-radius: 8px; padding: 20px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .team-img { height: 100px; width: 100px; border-radius: 50%; background: linear-gradient(45deg, var(--primary), var(--secondary)); margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; color: white; font-size: 40px; } /* Contact Section */ .contact { padding: 80px 0; background: white; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info { background: var(--light); padding: 30px; border-radius: 8px; } .contact-info h3 { color: var(--primary); margin-bottom: 20px; } .contact-detail { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-detail i { color: var(--accent); font-size: 20px; margin-right: 15px; margin-top: 5px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } .contact-form textarea { height: 150px; } /* Footer */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; } .footer-column h3 { color: var(--accent); margin-bottom: 20px; font-size: 1.2rem; } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 10px; } .footer-column ul li a { color: #ccc; text-decoration: none; transition: color 0.3s; } .footer-column ul li a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #444; color: #aaa; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 768px) { .about-content, .contact-grid, .team-showcase { grid-template-columns: 1fr; } nav ul { display: none; } .hero h2 { font-size: 2rem; } .main-header { flex-direction: column; text-align: center; } .logo { margin-bottom: 15px; } }
Qingdao Newtimes Hair Industries - Your trusted partner for high-quality wigs, toupees, hair systems, and extensions since 2013. Alibaba's top-rated hairpiece supplier with 12+ years of expertise.
With over 12 years of experience and a team of 100+ specialized wig-makers and craftsmen, we deliver products of the highest quality standards.
Maintain 80,000+ ready-to-ship wholesale hairpieces with 50+ color options. Immediate shipment for standard products.
Factory-direct prices with no middlemen. Special bulk discounts for large quantity orders. Unbeatable value for premium hair products.
Every product undergoes rigorous finished product inspection. Verified supplier on Alibaba with comprehensive quality control processes.
Comprehensive after-sales support including 30-day free return policy for unused inventory. Hassle-free exchanges and refunds.
Annual production of 100,000+ custom orders through drawing-based, sample-based, and design-based customization options.
Founded in 2013, Qingdao Newtimes Hair Industries Co., Ltd. has established itself as a leading manufacturer and supplier of premium hair replacement solutions. With 12+ years of industry expertise, we serve 5,000+ wholesale clients across North America, Western Europe, and the Middle East.
128 employees including 100+ specialized senior wig-makers and craftsmen with decades of experience.
Annual production capacity of 180,000+ pieces with extensive customization options.
Verified Alibaba supplier with rigorous quality control processes and finished product inspection.
25+ years wig-making expertise
50+ hair color matching techniques
Ensuring premium standards
Creating natural hair solutions
Qingdao, Shandong Province, China
+86 18661939293
www.newtimeshair.com
newtimeshair.en.alibaba.com
Ivan & Robin (Customer Service Managers)