'); background-size: cover; background-position: center; color: white; text-align: center; padding: 180px 0 100px; margin-top: 80px; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; } .hero p { font-size: 1.5rem; max-width: 800px; margin: 0 auto 40px; font-weight: 300; } /* 关于区域 */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-image { border-radius: 10px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .about-image svg { width: 100%; height: auto; display: block; } .about-text h3 { font-size: 2rem; margin-bottom: 20px; color: var(--dark); } .stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-box { background: var(--light); padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .stat-box h4 { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; } .stat-box p { font-size: 1rem; color: var(--gray); } /* 产品分类 */ .product-categories { background-color: #f8f9fa; } .categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .category-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .category-card:hover { transform: translateY(-10px); } .category-header { background: var(--primary); color: white; padding: 20px; text-align: center; } .category-header h3 { font-size: 1.5rem; margin-bottom: 5px; } .category-products { padding: 20px; } .product-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #eee; } .product-item:last-child { border-bottom: none; } .product-name { font-weight: 600; } .price-moq { text-align: right; } .price-moq .price { color: var(--accent); font-weight: 700; } .price-moq .moq { font-size: 0.85rem; color: var(--gray); } /* 优势区域 */ .advantages { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .advantage-card { text-align: center; padding: 40px 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .advantage-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .advantage-icon { width: 80px; height: 80px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary); font-size: 2rem; } .advantage-card h3 { margin-bottom: 15px; font-size: 1.4rem; } /* 流程区域 */ .process { background: linear-gradient(to right, var(--primary), #9b59b6); color: white; } .process-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 50px; } .step { flex: 0 0 calc(25% - 20px); text-align: center; padding: 30px 20px; background: rgba(255,255,255,0.1); border-radius: 10px; position: relative; min-height: 200px; } .step-number { position: absolute; top: -25px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; background: white; color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .step h3 { margin-bottom: 15px; font-size: 1.3rem; } /* 认证区域 */ .certifications { background-color: var(--light); } .cert-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 30px; } .cert-logo { background: white; border-radius: 10px; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .cert-logo svg { width: 120px; height: 60px; } /* 联系区域 */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 30px; color: var(--dark); } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-icon { 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-text h4 { font-size: 1.1rem; margin-bottom: 5px; } .contact-form { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--dark); } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; transition: border 0.3s ease; } .form-control:focus { border-color: var(--primary); outline: none; } textarea.form-control { min-height: 150px; resize: vertical; } /* 页脚 */ 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-column h3 { font-size: 1.4rem; margin-bottom: 25px; position: relative; } .footer-column h3::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 50px; height: 3px; background: var(--primary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #ddd; text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--primary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 0.9rem; } /* 响应式设计 */ @media (max-width: 992px) { .about-content, .contact-container { grid-template-columns: 1fr; } .step { flex: 0 0 calc(50% - 20px); } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } } @media (max-width: 768px) { .nav-links { display: none; } .section-title h2 { font-size: 2rem; } .stats { grid-template-columns: 1fr; } .step { flex: 0 0 100%; } }
Shenzhen GLMD Technology - Leading OEM/ODM Manufacturer of Premium Beauty Products Since 2018
Request a QuoteQuality, Service, and Value is Our Core Mission
Shenzhen GLMD Technology Co., Ltd. (brand name: GLMD, Glamour Beauty) is a leading manufacturer and supplier specializing in high-quality beauty products and accessories. Founded in 2018 and headquartered in Guangdong, China, we bring over 10 years of expertise in cosmetics OEM/ODM manufacturing.
Our mission is to be your one-stop beauty solution provider, offering premium products with exceptional service. We pride ourselves on being the reliable Chinese warehouse for global beauty brands and retailers.
Weekly Production Capacity
Product Formulas
Response Rate
Average Response Time
Premium Beauty Products with Low MOQ Options
Professional PMU Equipment & Tools
Professional Lash Tools & Accessories
Premium Makeup & Skincare Products
Your Competitive Advantages in Beauty Manufacturing
Minimum order quantities as low as 3-100 units, perfect for startups and small businesses
ISO9001, SGS, FDA, GMPC certified with strict quality control procedures
60,000+ weekly production capacity ensures quick turnaround times
96.15% response rate with ≤3 hour average response time
Full customization of logo, packaging, and formulation with 30+ R&D specialists
Simple Steps to Create Your Private Label Products
Discuss your product requirements and order quantity
Receive detailed pricing based on your specifications
Review and approve physical product sample
Full-scale manufacturing begins after sample approval
Rigorous inspection before shipment
Final payment and shipping arrangement
Internationally Recognized Quality Standards
Get in Touch for OEM/ODM Inquiries
Guangdong, China
Tina Wu, Bella Tang, Crystal Gan, Kayla Sun, Fiona Zhou
Showroom, Office, Laboratory, Workshop available for on-site inspection
We welcome inquiries for bulk orders and offer special support for startups looking to create their own beauty brand.
"Your satisfaction is our satisfaction" - GLMD Technology Team