Heshan Hongjian Mirror Industry Co., Ltd
Ease Moment - Professional Makeup Bag & Mirror Manufacturer | OEM/ODM Services
// Tailwind Configuration
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#2D3748', // Dark gray primary
secondary: '#F5F0E6', // Beige secondary
accent: '#D4AF37', // Gold accent
green: '#4CAF50', // Eco green
gray: {
100: '#F8F9FA',
200: '#E9ECEF',
300: '#DEE2E6',
800: '#343A40',
900: '#212529'
}
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
}
}
}
@layer utilities {
.content-auto {
content-visibility: auto;
}
.text-shadow {
text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hover-scale {
transition: transform 0.3s ease;
}
.hover-scale:hover {
transform: scale(1.03);
}
.section-padding {
padding: clamp(3rem, 8vw, 6rem) 0;
}
}
Ease Moment
Jiangmen Makeup Bag & Mirror Factory
About Us
Core Advantages
Quality Control
Products
About Us
Core Advantages
Quality Control
Products
About Ease Moment
20+ years focusing on R&D and production of makeup bags, vanity mirrors and leather products, building industry-leading supply chain system
2500㎡ Workshop
Modern production workshop equipped with advanced manufacturing equipment for efficient large-scale production
120+ Stable Employees
Core team with over 10 years of experience, regular skill training to ensure production efficiency and product quality
BSCI Certified
Strictly follow international social responsibility standards, production processes meet global trade requirements
50+ Countries Covered
Products sold in North America, Europe, Southeast Asia and other regions with stable global cooperation network
Our Commitment
Located in Jiangmen with convenient transportation, Ease Moment adheres to the core values of "Quality, Service, Innovation". We provide flexible OEM/ODM services for both small-batch customization and bulk orders with timely delivery guaranteed.
We prioritize sustainable development with all products made from eco-friendly materials that comply with EU RoHS and REACH standards. Our production process achieves low carbon emissions to provide high-quality and environmentally friendly products for customers.
Core Competitive Advantages
Full-process control from design to delivery, building a strong supply chain system for makeup bags and vanity mirrors
Eco-Friendly Production
Eco-Compliant Products
Made from recyclable eco-friendly materials, compliant with EU RoHS, REACH and other international environmental standards, with third-party environmental testing certification.
Professional Design
Visionary Design Team
Professional design team with 20+ years of experience, following international fashion trends, able to customize designs according to customer needs with complete design solutions from concept to finished product.
Strict QC
Full-Process Quality Control
Established four-level quality inspection system (IQC, IPQC, FQC, OQC) with professional testing equipment and team, strict inspection standards for each process to ensure zero-defect products.
Stable Team
Stable Employee Team
Core employees with over 10 years of service, employee turnover rate lower than industry average, regular skill training and performance evaluation to ensure production stability and consistency.
Supply Chain Advantage
Strong Supply Chain System
Comprehensive upstream and downstream supply chain system, stable raw material procurement channels, quick response to bulk orders with monthly production capacity of 100,000 pieces of makeup bags/mirrors.
Flexible Customization
Flexible OEM/ODM Services
Support small-batch customization and bulk order production, customizable materials, sizes, colors, LOGO, providing one-stop OEM/ODM services with fast sampling and on-time delivery.
Strict Quality Control Process
Strict control over every link from raw materials to finished product delivery to ensure stable product quality
IQC - Incoming QC
100% inspection of incoming raw materials including environmental performance, wear resistance, color fastness testing. Non-conforming materials are directly returned to control quality from the source.
IPQC - In-Process QC
Patrol inspection every 2 hours during production to check process implementation and semi-finished product quality, promptly identify and solve quality issues in production.
FQC - Final QC
100% inspection of finished products including appearance, size, function, packaging and all indicators to ensure every product meets customer requirements.
OQC - Outgoing QC
Random sampling inspection according to AQL standards before delivery, verifying quantity, packaging, labeling to ensure integrity and accuracy of delivered products.
Professional QC Team & Equipment
We have a professional QC team of 10 members, all strictly trained and certified. Equipped with high-precision measuring instruments, wear resistance testers, color fastness testers and other professional QC equipment to ensure accurate and reliable inspection results.
Established a comprehensive quality traceability system with complete inspection records for each batch of products, enabling real-time traceability of production and quality inspection information for customer peace of mind.
Our Products
Diversified range of makeup bags and vanity mirrors with customizable production to meet different market needs
Makeup Bags Series
Including portable makeup bags, large-capacity cosmetic cases, travel makeup bags, silicone makeup bags, made of PU, canvas, nylon, eco-friendly silicone and other materials.
Vanity Mirrors Series
Including foldable vanity mirrors, tabletop makeup mirrors, portable pocket mirrors with customizable magnetic design and other functions.
Leather Products
Including leather storage bags, jewelry boxes, leather makeup brush holders made of eco-friendly leather with exquisite craftsmanship and customizable LOGO.
Global Cooperation & Win-Win Future
Our products are sold in more than 50 countries and regions worldwide, looking forward to establishing long-term and stable cooperative relationships with you
North America
Europe
Southeast Asia
Middle East
Australia
South America
Our Philosophy
Ease Moment adheres to the core values of "Quality, Service, Innovation", customer-oriented, product quality-based, and innovation-driven development.
We are committed to providing high-quality makeup bags and vanity mirrors for global customers, building an industry-leading supply chain system,
and achieving mutually beneficial and win-win long-term cooperation.
// Navbar Scroll Effect
const navbar = document.getElementById('navbar');
window.addEventListener('scroll', () => {
if (window.scrollY > 50) {
navbar.classList.add('py-2', 'shadow-md');
navbar.classList.remove('py-4', 'shadow-sm');
} else {
navbar.classList.add('py-4', 'shadow-sm');
navbar.classList.remove('py-2', 'shadow-md');
}
});
// Mobile Menu
const menuBtn = document.getElementById('menuBtn');
const mobileMenu = document.getElementById('mobileMenu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
menuBtn.innerHTML = mobileMenu.classList.contains('hidden')
? ''
: '';
});
// Smooth Scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
// Close mobile menu
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
menuBtn.innerHTML = '';
}
// Scroll to target position
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
// Back to Top Button
const backToTopBtn = document.getElementById('backToTop');
window.addEventListener('scroll', () => {
if (window.scrollY > 300) {
backToTopBtn.classList.remove('opacity-0', 'invisible');
backToTopBtn.classList.add('opacity-100', 'visible');
} else {
backToTopBtn.classList.add('opacity-0', 'invisible');
backToTopBtn.classList.remove('opacity-100', 'visible');
}
});
backToTopBtn.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
https://www.ease-moment.com