'); color: white; padding: 100px 0; text-align: center; position: relative; overflow: hidden; } .hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; } .hero h2 { font-size: 3.5rem; margin-bottom: 20px; animation: fadeInDown 1s ease; } .hero p { font-size: 1.3rem; margin-bottom: 30px; animation: fadeInUp 1s ease 0.3s both; } .hero-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 50px; animation: fadeIn 1s ease 0.6s both; } .stat-box { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); border-radius: 10px; padding: 20px; min-width: 200px; border: 1px solid rgba(255, 255, 255, 0.2); } .stat-box h3 { font-size: 2.5rem; margin-bottom: 5px; } .stat-box p { font-size: 1rem; margin: 0; } .btn { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 2px solid var(--secondary); animation: pulse 2s infinite; } .btn:hover { background-color: transparent; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); } .btn-outline { background-color: transparent; border: 2px solid white; margin-left: 15px; } .btn-outline:hover { background-color: white; color: var(--primary); } /* Sections */ section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 50px; } .section-header h2 { font-size: 2.5rem; color: var(--primary); position: relative; display: inline-block; margin-bottom: 15px; } .section-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--secondary); border-radius: 2px; } .section-header p { color: var(--gray); max-width: 700px; margin: 20px auto 0; } /* About Section */ .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .about-stat { background: var(--light); padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .about-stat h4 { color: var(--primary); margin-bottom: 10px; } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: var(--transition); border: 1px solid #eee; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); } .service-icon { background: linear-gradient(to right, var(--primary), var(--secondary)); height: 80px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: white; } .service-content { padding: 25px; } .service-content h3 { margin-bottom: 15px; color: var(--dark); } /* Products Section */ .product-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .tab-btn { padding: 12px 25px; background: var(--light); border: none; border-radius: 30px; cursor: pointer; font-weight: 600; transition: var(--transition); } .tab-btn.active, .tab-btn:hover { background: linear-gradient(to right, var(--primary), var(--secondary)); color: white; } .tab-content { display: none; } .tab-content.active { display: block; animation: fadeIn 0.5s ease; } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); transition: var(--transition); } .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } .product-img { height: 200px; background: linear-gradient(45deg, #f5f7fa, #e4e7eb); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 3rem; } .product-info { padding: 20px; border-top: 1px solid #eee; } .product-info h4 { margin-bottom: 10px; color: var(--dark); } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px dashed #eee; } .product-price { color: var(--secondary); font-weight: 700; font-size: 1.1rem; } .product-moq { color: var(--gray); font-size: 0.9rem; } .cert-badge { display: inline-block; background: #eef7ff; color: #1e88e5; font-size: 0.8rem; padding: 3px 10px; border-radius: 20px; margin-top: 10px; } /* Core Competitiveness */ .competitiveness { background: linear-gradient(to bottom, #f9f7ff, #ffffff); } .competence-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .competence-card { text-align: center; padding: 40px 30px; background: white; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); transition: var(--transition); border: 1px solid #f0f0f0; } .competence-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); } .competence-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } /* Certifications */ .certifications-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; } .cert-card { background: white; border-radius: 10px; padding: 25px 20px; text-align: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); border: 1px solid #f5f5f5; } .cert-card h4 { color: var(--primary); margin: 15px 0 10px; } .cert-id { font-size: 0.9rem; color: var(--gray); margin: 5px 0; } .cert-date { font-size: 0.85rem; color: var(--gray); font-style: italic; } /* Contact Section */ .contact { background: linear-gradient(to right, var(--primary), #6a11cb); color: white; } .contact-container { display: flex; gap: 50px; } .contact-info { flex: 1; } .contact-info h3 { font-size: 2rem; margin-bottom: 20px; } .contact-details { margin-top: 30px; } .contact-item { display: flex; align-items: center; margin-bottom: 20px; } .contact-icon { font-size: 1.5rem; margin-right: 15px; color: var(--secondary); } .contact-team { margin-top: 40px; } .team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; margin-top: 15px; } .team-member { text-align: center; } .team-member .avatar { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(45deg, var(--secondary), var(--primary)); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { color: var(--secondary); margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--secondary); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 12px; } .footer-col a { color: #ccc; text-decoration: none; transition: var(--transition); } .footer-col a:hover { color: var(--secondary); padding-left: 5px; } .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; } .value-card { background: rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 10px; border-left: 3px solid var(--secondary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #aaa; font-size: 0.9rem; } /* 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); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); } } /* Responsive */ @media (max-width: 992px) { .header-container { flex-direction: column; text-align: center; } nav ul { margin-top: 20px; justify-content: center; } nav li { margin: 0 10px; } .hero h2 { font-size: 2.8rem; } .about-content { flex-direction: column; } .contact-container { flex-direction: column; } } @media (max-width: 768px) { .hero h2 { font-size: 2.2rem; } .section-header h2 { font-size: 2rem; } .hero-stats { gap: 15px; } .stat-box { min-width: 150px; padding: 15px; } .stat-box h3 { font-size: 2rem; } } @media (max-width: 576px) { .hero { padding: 70px 0; } .hero h2 { font-size: 1.8rem; } .hero p { font-size: 1.1rem; } .hero-stats { flex-direction: column; align-items: center; } .stat-box { width: 100%; max-width: 300px; } .btn { display: block; margin: 10px auto; width: 80%; max-width: 250px; } .btn-outline { margin-left: 0; margin-top: 20px; } }
With over 14 years of excellence in perfumes, nail equipment, depilatory devices and beauty supplies manufacturing
Years of Experience
Export Percentage
Platform Rating
On-Time Delivery
Zhejiang EG Cosmetics Co., Ltd. is a professional manufacturer specializing in cosmetic products with extensive OEM/ODM capabilities
Established in 2009 and located in Yiwu City, Zhejiang Province, we have grown into a trusted manufacturer and exporter of high-quality cosmetic products. Our company operates in close association with Zhejiang Rongfeng Electronic Technology Co., Ltd., leveraging combined expertise in production and quality assurance.
With a dedicated team of 50+ employees and a 1570m² manufacturing facility, we serve a global client base with a focus on Europe, North America, Southeast Asia and Russia. Our commitment to quality and customer satisfaction has earned us a 4.6/5 rating on Alibaba and recognition as a 4-Year VR Showroom Supplier.
Annual Revenue (CNY)
Production & Office Area
Production Lines
Employees
5th Building, 2nd Floor
Yiwu City, Zhejiang, China
Postal Code: 322000
We provide comprehensive solutions tailored to meet specific client requirements
With 12 years of OEM expertise, we manufacture products according to your specifications while maintaining your brand identity. Our services include custom formulations, packaging, and branding for perfumes, nail products, and beauty devices.
Leverage our 10+ R&D specialists to develop unique products from concept to market. We offer full design, development, and manufacturing services especially for fragrances and nail equipment with 20 years of industry experience.
Our 5+ member QC team implements rigorous quality control processes including raw material identification, in-process inspection, and finished product testing. All products meet international standards like RoHS, CE, EMC, and MSDS.
We maintain a responsive supply chain capable of handling orders from small-batch custom productions (1000+ units) to large wholesale quantities. Our 98.9% on-time delivery rate ensures reliability for your business operations.
Discover our range of internationally certified cosmetic products and equipment
Home & bedroom relaxation, long-lasting fragrance, glass container
RoHSCustomizable fragrance for hotels/homes, glass container
RoHSWoody notes, long-lasting, elegant packaging
RoHS, EMCPortable travel size, leak-proof design, metal carabiner
EMCSalon essential, >98% on-time delivery
RoHS, CEHome/salon use, best value product
RoHS, EMCHigh sharpness, rust-resistant, easy maintenance
RoHSKey strengths that set us apart in the cosmetics manufacturing industry
10+ specialized R&D staff with rapid response to new product design requirements. Proven ODM capabilities with innovative solutions.
10+ trade specialists with expertise in international logistics and customs clearance. 95% export ratio serving 30+ countries.
3 parallel production lines with ¥30M+ annual output. Flexible manufacturing for small batches to large volume orders.
12+ years in OEM manufacturing with specialization in perfumes and nail equipment. Customization from formulation to packaging.
5+ QC professionals implementing full-process quality control from raw materials to finished products. Comprehensive certification coverage.
≤3h average response time to customer inquiries. Dedicated customer service team providing 24/7 support.
International certifications ensuring product quality and compliance
Electric Nail Drill
Nail Equipment, Wax Heaters
Electric Nail Drill
UV Nail Lamp
Pesticide-related Products
Nail Polish, Glitter Powder
Reach out to our dedicated professionals for quotes, product information, or partnership opportunities
5th Building, 2nd Floor, Yiwu City, Zhejiang, China 322000
Click customer service avatar on our Alibaba store
Wang Wallance
Liu Yara
Ryan Yang
Layla He
COCO
Lena Nie