'); background-size: cover; color: white; padding: 80px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.3rem; margin-bottom: 30px; opacity: 0.9; } .cta-button { display: inline-block; background-color: var(--accent); color: white; padding: 12px 35px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); } /* Section Styles */ section { padding: 70px 0; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.5rem; color: var(--primary); display: inline-block; padding-bottom: 15px; } .section-title h2:after { content: ''; position: absolute; width: 80px; height: 4px; background: var(--accent); bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 2px; } /* Company Overview */ .overview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; } .overview-card { background: var(--light); border-radius: 10px; padding: 25px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .overview-card:hover { transform: translateY(-10px); } .card-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 15px; } .overview-card h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.4rem; } .quality-badge { background-color: var(--success); color: white; display: inline-block; padding: 8px 20px; border-radius: 30px; font-weight: bold; margin-top: 20px; font-size: 1.1rem; } /* Advantages Section */ .advantages { background-color: var(--light); } .advantage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; } .advantage-card { background: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; } .advantage-icon { font-size: 2.5rem; color: var(--secondary); margin-right: 20px; flex-shrink: 0; } .advantage-content h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.3rem; } /* Products Section */ .product-tabs { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; } .tab-btn { background: none; border: none; padding: 12px 25px; margin: 0 5px; font-size: 1.1rem; cursor: pointer; border-radius: 30px; transition: all 0.3s ease; color: var(--dark); font-weight: 500; } .tab-btn.active, .tab-btn:hover { background-color: var(--primary); color: white; } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-image { height: 200px; background: linear-gradient(45deg, #f5f7fa, #e4e7f0); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 3rem; } .product-content { padding: 20px; } .product-tags { display: flex; flex-wrap: wrap; margin: 10px 0; } .product-tag { background-color: var(--light); color: var(--secondary); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; margin-right: 8px; margin-bottom: 8px; } .product-tag.hot { background-color: #ffebee; color: #f44336; } .product-tag.new { background-color: #e3f2fd; color: #2196f3; } .product-details { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; } .price { color: var(--accent); font-weight: bold; font-size: 1.2rem; } .moq { color: var(--dark); font-size: 0.9rem; } /* Capabilities Section */ .capabilities { background: linear-gradient(to bottom, #f9f9ff, #ffffff); } .capability-container { display: flex; flex-wrap: wrap; gap: 30px; } .capability-chart { flex: 1; min-width: 300px; background: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .market-map { flex: 1; min-width: 300px; background: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; } .market-map::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; border-radius: 50%; background: conic-gradient( #4caf50 0% 30%, #ff9800 30% 60%, #2196f3 60% 85%, #9c27b0 85% 100% ); opacity: 0.1; } .market-list { position: relative; z-index: 2; } .market-list li { padding: 10px 0; font-size: 1.1rem; display: flex; align-items: center; } .market-list li::before { content: "✓"; color: var(--success); font-weight: bold; margin-right: 10px; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .contact-info { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border-radius: 10px; padding: 35px; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 25px; position: relative; padding-bottom: 15px; } .contact-info h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--accent); } .contact-method { display: flex; align-items: center; margin-bottom: 25px; } .contact-icon { font-size: 1.8rem; margin-right: 15px; color: var(--accent); } .contact-text h4 { font-size: 1.2rem; margin-bottom: 5px; } .payment-methods { display: flex; margin-top: 20px; flex-wrap: wrap; } .payment-method { background: rgba(255, 255, 255, 0.15); padding: 8px 15px; border-radius: 20px; margin-right: 10px; margin-bottom: 10px; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 40px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; } .footer-column h3 { font-size: 1.4rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-column h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--accent); } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 12px; } .footer-column a { color: #bbb; text-decoration: none; transition: color 0.3s ease; } .footer-column a:hover { color: white; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 0.9rem; } /* Responsive */ @media (max-width: 768px) { .header-container { flex-direction: column; } nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; } nav li { margin: 5px; } .hero h2 { font-size: 2.2rem; } .section-title h2 { font-size: 2rem; } }
Yiwu Han Kai Knitting Factory - Your trusted OEM/ODM partner since 2016. Specializing in high-quality wig accessories, hair extension tools, and beauty products with flexible customization.
Request Custom QuoteEstablished in 2016 with 5+ years of manufacturing excellence in wig accessories and hair products.
Serving clients in North America, Eastern Asia, Africa, and Eastern Europe with 113+ successful transactions.
10,000+ sq. ft warehouse with 10,000+ inventory capacity ensuring timely delivery.
Annual output value of $50-100 million with 10+ production lines and 11-50 skilled workers.
5+ years OEM/ODM experience. Customize logos, colors, patterns, and packaging to match your brand identity.
Eco-friendly materials and strict quality control throughout the production process ensure product consistency.
Experienced R&D team continuously develops new products and improves existing designs.
Average response time ≤9 hours with 81.63% response rate. 24/7 customer support available.
Factory-direct pricing with negotiable rates. Flexible small batch orders accepted.
Stable supply chain management ensuring on-time delivery and inventory optimization.
Super thin HD wig cap with custom colors, ideal for wig making
Stretchable design with headband, perfect for full wigs
Synthetic gradient blue-black short straight hair wig
Japanese style open crotch fishnet stockings in plus sizes
Yiwu City, Zhejiang Province, China
24/7 Support (AM 00:00 - PM 24:00)
XiaoKai Chen | Mark JohnsonJOJO Gao | Willow X