'); background-size: cover; background-position: center; color: white; padding: 5rem 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 3rem; margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; } .cta-button { display: inline-block; background: var(--accent); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); } .cta-button:hover { background: #c0392b; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4); } /* Section Styling */ section { padding: 5rem 0; } .section-header { text-align: center; margin-bottom: 3rem; } .section-header h2 { font-size: 2.5rem; color: var(--primary); position: relative; display: inline-block; padding-bottom: 15px; } .section-header h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--secondary); } .section-header p { max-width: 700px; margin: 1rem auto 0; color: #666; font-size: 1.1rem; } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; } .about-text h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--primary); } .features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; } .feature { background: white; padding: 1.5rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .feature:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); } .feature h4 { color: var(--secondary); margin-bottom: 10px; } .stats { display: flex; justify-content: space-around; margin-top: 3rem; text-align: center; } .stat { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .stat:hover { transform: scale(1.05); } .stat h3 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 10px; } .stat p { color: var(--dark); font-weight: 500; } /* Products Section */ .product-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; } .category-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .category-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .category-img { height: 200px; background: var(--light); display: flex; align-items: center; justify-content: center; position: relative; } .category-name { background: rgba(52, 152, 219, 0.9); color: white; position: absolute; bottom: 0; left: 0; width: 100%; padding: 15px; text-align: center; font-weight: bold; font-size: 1.2rem; } .category-content { padding: 20px; } .category-content ul { padding-left: 20px; margin: 15px 0; } .category-content li { margin-bottom: 8px; position: relative; } .category-content li::before { content: '•'; color: var(--secondary); font-weight: bold; position: absolute; left: -15px; } .highlight-products { background: white; border-radius: 8px; padding: 2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .tabs { display: flex; border-bottom: 2px solid var(--light); margin-bottom: 2rem; } .tab-btn { background: none; border: none; padding: 10px 20px; cursor: pointer; font-weight: 500; color: #666; position: relative; } .tab-btn.active { color: var(--secondary); } .tab-btn.active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: var(--secondary); } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; } .product-card { border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: var(--transition); } .product-card:hover { border-color: var(--secondary); } .product-header { background: #f8f9fa; padding: 15px; border-bottom: 1px solid #eee; } .product-body { padding: 20px; } .product-price { color: var(--accent); font-weight: bold; font-size: 1.2rem; margin: 10px 0; } /* Technology Section */ .tech-container { background: linear-gradient(to right, var(--primary), #1a2530); color: white; border-radius: 10px; padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; position: relative; overflow: hidden; } .tech-container::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 200%; background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(255,255,255,0) 70%); transform: rotate(30deg); } .tech-content h3 { font-size: 2rem; margin-bottom: 1.5rem; } .tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } .tech-item { background: rgba(255,255,255,0.1); padding: 1.5rem; border-radius: 8px; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.15); } .tech-item h4 { margin-bottom: 10px; color: var(--secondary); } /* Timeline */ .timeline { position: relative; max-width: 800px; margin: 0 auto; } .timeline::after { content: ''; position: absolute; width: 4px; background: var(--secondary); top: 0; bottom: 0; left: 50%; margin-left: -2px; } .timeline-item { position: relative; width: 50%; padding: 10px 40px; margin-bottom: 2rem; } .timeline-item:nth-child(odd) { left: 0; } .timeline-item:nth-child(even) { left: 50%; } .timeline-content { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); position: relative; } .timeline-content::after { content: ''; position: absolute; width: 20px; height: 20px; background: var(--secondary); border-radius: 50%; top: 20px; } .timeline-item:nth-child(odd) .timeline-content::after { right: -40px; } .timeline-item:nth-child(even) .timeline-content::after { left: -40px; } .timeline-year { font-weight: bold; color: var(--secondary); margin-bottom: 10px; } /* Team Section */ .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; } .team-member { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: var(--transition); } .team-member:hover { transform: translateY(-10px); } .member-avatar { height: 150px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--secondary); } .member-info { padding: 20px; } .member-info h4 { margin-bottom: 5px; color: var(--primary); } .member-role { color: var(--secondary); font-weight: 500; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .contact-info { background: var(--primary); color: white; padding: 3rem; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 15px; } .contact-info h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--accent); } .contact-details { margin-top: 2rem; } .contact-item { display: flex; margin-bottom: 20px; } .contact-icon { min-width: 40px; height: 40px; background: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; } .contact-form { padding: 3rem; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; transition: var(--transition); } .form-control:focus { border-color: var(--secondary); outline: none; box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2); } textarea.form-control { min-height: 120px; resize: vertical; } .submit-btn { background: var(--accent); color: white; border: none; padding: 12px 30px; border-radius: 4px; cursor: pointer; font-weight: bold; transition: var(--transition); } .submit-btn:hover { background: #c0392b; } /* Footer */ footer { background: var(--dark); color: white; padding: 3rem 0 1.5rem; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; } .footer-section h3 { font-size: 1.3rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 10px; } .footer-section h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #bbb; text-decoration: none; transition: var(--transition); } .footer-links a:hover { color: var(--accent); padding-left: 5px; } .social-links { display: flex; gap: 15px; margin-top: 15px; } .social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); } .social-link:hover { background: var(--accent); transform: translateY(-5px); } .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content, .tech-container, .contact-container { grid-template-columns: 1fr; } .timeline::after { left: 31px; } .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; } .timeline-item:nth-child(even) { left: 0; } .timeline-item:nth-child(odd) .timeline-content::after, .timeline-item:nth-child(even) .timeline-content::after { left: 15px; } } @media (max-width: 768px) { .header-container { flex-direction: column; } nav ul { margin-top: 1rem; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } .hero h1 { font-size: 2rem; } .hero p { font-size: 1rem; } .section-header h2 { font-size: 2rem; } .features { grid-template-columns: 1fr; } .stats { flex-direction: column; gap: 1.5rem; } }
Founded in 2007, Shenzhen Well Pellets Technology specializes in advanced color-changing microcapsules and encapsulation pellets for the cosmetics and personal care industry.
Explore Our Products16 years of expertise in microencapsulation technology for cosmetic applications
As a leading innovator in microencapsulation technology, our mission is to use the power of advanced technology to realize raw material visualization, empowering the sustainable beauty of products.
Founded in 2007, we've dedicated 16 years to perfecting our proprietary "Colorful Micro Pellet Encapsulation Technology" that transforms cosmetic formulations.
Every batch undergoes rigorous quality control and testing to meet international standards.
Continuous R&D investment ensures cutting-edge encapsulation solutions.
Full customization of ingredients, colors, shapes and sizes for unique formulations.
Eco-friendly manufacturing processes and biodegradable materials.
Years Experience
Response Rate
Product Categories
Response Time
Comprehensive selection of microencapsulated pellets for cosmetic and personal care formulations
Advanced microcapsules that transform color upon application:
Applications: Foundation, BB/CC Cream, Sunscreen
Microencapsulated oil beads for targeted delivery:
Applications: Face/Body Serums, Water-based Formulations
Natural-looking botanical alternatives:
Applications: Shower Gels, Shampoos, Luxury Cosmetics
Gentle yet effective exfoliating particles:
Applications: Body Scrubs, Facial Cleansers, Toothpastes
High-purity calamine encapsulation for soothing skincare applications
Features: Zinc oxide-rich formula, anti-inflammatory properties
Applications: Calming serums, after-sun products
Dual-fragrance beads designed specifically for toothpaste formulations
Features: High purity, two complementary fragrances
Applications: Premium toothpaste products
Luxury simulated gold foil with vitamin encapsulation
Features: Dissolves completely without residue, customizable size
Applications: Premium serums, luxury skincare
Advanced oil encapsulation technology for serum formulations
Features: Press-release mechanism, natural ingredients
Applications: Face and body serums, water-based formulations
State-of-the-art manufacturing capabilities and quality assurance systems
Our 7-room production facility ensures pharmaceutical-grade quality control at every stage:
Ultra-pure water production for formulation consistency
Class 1000 cleanroom environment for critical processes
Comprehensive quality verification and analysis
Innovation hub with advanced encapsulation technology
Stringent quality management throughout the production cycle:
Comprehensive screening of all incoming ingredients
Continuous monitoring during manufacturing
Advanced microbial detection and irradiation sterilization
Performance, stability and safety verification
15kg
Accessible for small-batch innovators and startups
7 Days
Fast production turnaround for urgent requirements
Milestones in our development since 2007
Founded our first company dedicated to cosmetic ingredient research
Established second company focusing on encapsulation technology development
Launched third research facility for advanced microencapsulation techniques
Commissioned first dedicated manufacturing factory with GMP standards
Expanded trading operations globally and opened second production facility
Dedicated professionals committed to your success
≤2 hour response time • 100% response rate • Customization support
WHERE PERSONAL CARE INGREDIENTS AND CREATORS COME TOGETHER
Exhibition Dates
Location
Visit Us
Discover our new collections: color-changing microcapsules, oil beads, and innovative encapsulation solutions
Get in touch for product inquiries, samples, and custom solutions
Our team is ready to discuss your encapsulation needs and provide technical support.
Shenzhen, China
Monday-Friday: 8:30AM - 5:30PM
(GMT+8 China Standard Time)