'); background-size: cover; color: white; text-align: center; padding: 80px 0; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .cta-button { display: inline-block; background: white; color: var(--primary); padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); } /* Section Styles */ section { padding: 70px 0; } .section-header { text-align: center; margin-bottom: 50px; } .section-header h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-header h2::after { content: ''; position: absolute; width: 70px; height: 3px; background: var(--primary); bottom: -10px; left: 50%; transform: translateX(-50%); } .section-header p { max-width: 700px; margin: 20px auto 0; color: #666; } /* About Section */ .about-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; background: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); } .about-info, .about-stats { padding: 20px; } .about-stats { border-left: 1px solid var(--border); } .info-item { margin-bottom: 20px; } .info-item h3 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 5px; } .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; } .stat-card { background: var(--light); padding: 15px; border-radius: 8px; text-align: center; } .stat-value { font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; } .stat-label { font-size: 0.9rem; color: #666; } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 40px; } .service-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .service-card:hover { transform: translateY(-10px); } .service-content { padding: 25px; } .service-icon { background: var(--light); height: 70px; width: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--primary); font-size: 1.8rem; } .service-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--dark); } .service-card ul { padding-left: 20px; margin-top: 15px; } .service-card ul li { margin-bottom: 8px; position: relative; } .service-card ul li::before { content: '✓'; color: var(--primary); font-weight: bold; position: absolute; left: -20px; } /* Products Section */ .product-tabs { display: flex; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; } .tab-btn { background: white; border: none; padding: 12px 25px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; border-bottom: 3px solid transparent; } .tab-btn.active { border-bottom: 3px solid var(--primary); color: var(--primary); } .product-table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .product-table th { background: var(--light); padding: 15px; text-align: left; font-weight: 600; color: var(--primary); } .product-table td { padding: 15px; border-bottom: 1px solid var(--border); } .product-table tr:last-child td { border-bottom: none; } /* Customization Section */ .custom-container { background: linear-gradient(to right, var(--light) 0%, white 50%); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); } .custom-content { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; } .custom-item { display: flex; margin-bottom: 25px; } .custom-icon { min-width: 50px; height: 50px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: var(--primary); font-size: 1.3rem; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; background: white; border-radius: 10px; padding: 40px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); } .contact-info h3 { font-size: 1.4rem; margin-bottom: 20px; color: var(--primary); } .contact-detail { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-icon { min-width: 40px; height: 40px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: var(--primary); } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--border); border-radius: 5px; font-size: 1rem; } .contact-form textarea { height: 120px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; width: 40px; height: 2px; background: var(--primary); bottom: 0; left: 0; } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #bbb; text-decoration: none; transition: color 0.3s; } .footer-col ul li a:hover { color: white; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #999; font-size: 0.9rem; } .back-top { position: fixed; bottom: 30px; right: 30px; background: var(--primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity 0.3s; box-shadow: 0 3px 10px rgba(0,0,0,0.2); } .back-top.show { opacity: 1; } /* Responsive Styles */ @media (max-width: 992px) { .custom-content { grid-template-columns: 1fr; } } @media (max-width: 768px) { nav ul { display: none; } .hero h2 { font-size: 2rem; } .section-header h2 { font-size: 1.8rem; } .product-table { display: block; overflow-x: auto; } }
Premium quality nail tips, press on nails, and nail tools with TÜV certified production. Offering OEM/ODM services with fast sampling and 100% customization options.
"Having beautiful nails can indeed bring strength to people."
Request a QuoteYour trusted partner for premium nail products since 2014
Yiwu Newby Makeup Co., Limited (义乌纽比美妆有限公司)
TüVRheinland (German TÜV) Certified Manufacturing Facility
Zhejiang, China - Manufacturing Hub of Asia
9 Years in Nail Products Manufacturing
200m² Factory Space with Advanced Equipment
Why global brands choose Newby as their nail products manufacturer
Premium nail products for salons, retailers and distributors
Product Name | Specifications | Price Range | MOQ |
---|---|---|---|
288pcs Short Almond Cream Nude Light Pink Press on Nails | False Nail Art Tips, Short Almond Shape | $1.30-1.40 | 20 boxes |
120pcs 2-in-1 Full Cover Poly Nail Gel Extension Upper Molds | Short Square Acrylic, Two-in-One Design | $1.35-1.45 | 20 boxes |
120pcs Short Medium Nail Bed Nail Extension Mold | Quick Construction Gel Dual Form | $0.65-0.75 | 20 boxes |
100pcs Clear Poly Nail Gel Molds | Square Full Cover Dual Form, Transparent | $0.45-0.55 | 20 bags |
Coffin Square Almond Shape Poly Nails Gel Mold | Includes French Line Stickers, 96pcs/box | $1.60-1.65 | 200 boxes |
Tailored solutions for your brand success
Create unique nail shapes, patterns, and styles tailored to your brand identity
Choose from premium ABS, acrylic, or gel materials for optimal quality
Custom boxes, inserts and branding to showcase your products professionally
High Quality and Good Reputation through rigorous quality control processes
24 Hours Online Service with ≤4 hour response time for all inquiries
2 dedicated testing instruments ensuring product safety and compliance
Ready to start your nail product manufacturing project?
Zhejiang, China
24/7 Online Support
Visit us at Booth: Newby 5E-C1F
Multiple products available for immediate shipment