'); background-size: cover; background-position: center; color: white; text-align: center; padding: 100px 20px; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3.2rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.4rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .cta-button { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; font-size: 1.2rem; font-weight: 600; text-decoration: none; border-radius: 4px; transition: all 0.3s ease; margin-top: 20px; } .cta-button:hover { background-color: #c1121f; transform: translateY(-3px); box-shadow: 0 4px 8px rgba(0,0,0,0.2); } /* Section Styles */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; } .section-title:after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--accent); } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } .about-image { background: #e0e0e0; height: 400px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--gray); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .about-text h3 { font-size: 1.8rem; color: var(--dark); margin-bottom: 20px; } .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-card { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); text-align: center; transition: transform 0.3s ease; } .stat-card:hover { transform: translateY(-5px); } .stat-card h4 { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; } .stat-card p { color: var(--gray); font-weight: 500; } /* Products Section */ .products-intro { text-align: center; max-width: 800px; margin: 0 auto 50px; } .category-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; } .tab-button { background: white; border: 2px solid var(--primary); color: var(--primary); padding: 10px 20px; border-radius: 30px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; } .tab-button.active, .tab-button:hover { background: var(--primary); color: white; } .product-category { display: none; } .product-category.active { display: block; animation: fadeIn 0.5s ease; } .product-table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); } .product-table th { background-color: var(--primary); color: white; padding: 15px; text-align: left; } .product-table td { padding: 12px 15px; border-bottom: 1px solid #eee; } .product-table tr:last-child td { border-bottom: none; } .product-table tr:nth-child(even) { background-color: #f9f9f9; } .product-table tr:hover { background-color: #f0f7ff; } /* Advantages Section */ .advantages { background-color: #f0f7ff; } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .advantage-card:hover { transform: translateY(-10px); } .advantage-card h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; } .advantage-icon { width: 50px; height: 50px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; margin-bottom: 20px; } .global-map { max-width: 800px; height: 400px; background: #d4e4f7; border-radius: 8px; margin: 50px auto 0; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .global-map::before { content: "Global Market Coverage: 120+ Countries"; position: absolute; top: 20px; left: 0; right: 0; text-align: center; font-size: 1.8rem; font-weight: bold; color: var(--primary); z-index: 2; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info { background: var(--primary); color: white; padding: 40px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .contact-info h3 { font-size: 1.8rem; margin-bottom: 25px; position: relative; padding-bottom: 15px; } .contact-info h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--accent); } .contact-details { margin-top: 25px; } .contact-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; } .contact-icon { min-width: 40px; height: 40px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; } .contact-form { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } .form-group textarea { min-height: 150px; resize: vertical; } .submit-btn { background: var(--primary); color: white; border: none; padding: 12px 30px; font-size: 1.1rem; font-weight: 600; border-radius: 4px; cursor: pointer; transition: background 0.3s ease; } .submit-btn:hover { background: var(--dark); } /* Footer */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.5rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-column h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: white; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #aaa; } /* Animations */ @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } /* Responsive Design */ @media (max-width: 992px) { .about-content { grid-template-columns: 1fr; } .contact-container { grid-template-columns: 1fr; } .hero h2 { font-size: 2.5rem; } } @media (max-width: 768px) { nav ul { gap: 15px; } .header-content { flex-direction: column; gap: 20px; } .section-title h2 { font-size: 2rem; } .stats-grid { grid-template-columns: 1fr; } .product-table { font-size: 0.9rem; } } @media (max-width: 576px) { .hero { padding: 60px 15px; } .hero h2 { font-size: 2rem; } section { padding: 60px 0; } .section-title h2 { font-size: 1.8rem; } .product-table th, .product-table td { padding: 8px 10px; } }
"Reassure the world that Made in China" - Premium Quality Adhesive Materials for Global Markets
Request a QuoteYour Trusted Adhesive Material Partner Since 2018
Established in 2018, we are a professional manufacturer and trader specializing in adhesive materials. With the brand "Shenghuamei", we are committed to delivering premium quality products that meet international standards.
Our mission is to provide innovative adhesive solutions while upholding our core principle: "Reassure the world that Made in China". We achieve this through continuous innovation, strict quality control, and exceptional customer service.
Expert Team Members
Production Lines
Manufacturing Facility
Years OEM/ODM Experience
Premium Adhesive Solutions for Diverse Applications
We specialize in manufacturing a comprehensive range of adhesive materials suitable for various industries including printing, advertising, automotive, and packaging. All products are manufactured under strict quality control with customization options available.
Product Name | Price (USD) | MOQ | Key Features |
---|---|---|---|
Photo Cold Lamination Crystal Protective Film (HY) | $0.71-0.77 / m² | 457 m² | PVC self-adhesive transparent, customizable width (5mm-1520mm) |
Transparent PET Crystal Cold Lamination Film | $0.71-0.77 / m² | 457 m² | Self-adhesive, scratch-resistant, tempered protection |
PVC Gloss Holographic Cold Lamination Film | $0.60-0.80 / m² | 4 m² | Semi-transparent, moisture-proof, sparkling design |
Waterproof Holographic Transparent Cold Lamination Film (HY) | $0.68-0.88 / m² | 4 m² | Customizable sizes, suitable for photos and posters |
Product Name | Price (USD) | MOQ | Key Features |
---|---|---|---|
Self-adhesive Color Cutting Vinyl Roll | $0.40-0.60 / m² | 50 m² | Factory price, compatible with cutting plotters |
PVC Printable Vinyl (White/Black/Gray Adhesive) | $0.30-0.60 / m² | 100 m² | Removable adhesive, multiple size options |
Printable PVC Vinyl for Car Stickers | $0.30-0.60 / roll | 100 rolls | Bubble-free, self-adhesive, ideal for advertising |
140g PVC Printable Vinyl | $0.30-0.60 / m² | 100 m² | 100μm thickness, gloss/matte options |
Product Name | Price (USD) | MOQ | Key Features |
---|---|---|---|
Holographic Self-adhesive Color Cutting Vinyl | $0.68-0.88 / m² | 1 m² | Glossy surface, multiple size options |
Gloss/Matte Color Cutting Vinyl | $0.64-0.66 / m² | 100 m² | Permanent removable, compatible with cutting machines |
2025 New PVC Color Vinyl Roll | $0.68-0.88 / m² | 4 m² | Designed for outdoor advertising |
Gold/Silver Metallic PVC Self-adhesive Vinyl | $0.68-0.88 / m² | 4 m² | Eco-friendly, high tensile strength |
Product Name | Price (USD) | MOQ | Key Features |
---|---|---|---|
5D Carbon Fiber Black Automotive Protective Vinyl | $1 / roll | 4 rolls | High-end quality, factory direct |
Aurora Automotive Paint Protection Vinyl | $1 / roll | 4 rolls | High brightness, self-adhesive, scratch-resistant |
TPU Automotive Paint Protection Film | $1 / roll | 4 rolls | Waterproof, scratch-resistant, self-healing |
PET Floral Carbon Fiber Series Car Wrap Vinyl | $1 / roll | 4 rolls | Factory direct, designed for packaging |
Product Name | Price (USD) | MOQ | Key Features |
---|---|---|---|
260gsm Satin RC Photo Paper | $0.68-0.88 / roll | 1 roll | Waterproof, gloss/matte options |
Inkjet RC Photo Paper | $0.68-0.88 / roll | 4 rolls | Waterproof, gloss/matte, factory price |
Double-sided RC Photo Paper | $0.68-0.88 / roll | 4 rolls | Gloss/silk surface, waterproof |
Premium RC Waterproof Inkjet Photo Paper | $0.02-0.03 / roll | 4 rolls | High-definition printing, office applications |
Why Choose Shenghuamei Adhesive Materials
15+ years of OEM/ODM experience with capabilities to customize product dimensions, logos (on cartons or backing paper), and patterns (camouflage, carbon fiber textures).
15 complete production lines in our 4,800m² facility. Professional team with strict quality control ensures every product undergoes full inspection before shipment.
500+ container partnerships ensure fast delivery: 24-hour shipping for in-stock items, 15 days for customized products. Worldwide coverage with reliable shipping partners.
100+ distributors/agents nationwide. International markets include Southeast Asia, Europe, North America, Middle East, Africa, and South America with continuous expansion.
To serve 120+ countries globally, achieving true product globalization. Leverage our industry expertise and advanced technology to help customers develop new materials and solve application challenges.
Get in Touch for Custom Solutions
Reach out to us for detailed product specifications, discount information, or partnership opportunities. We offer sample services and support bulk customization for long-term collaboration.
Guangzhou Hongyuan Adhesive Material Technology Co., Ltd.
Guangzhou, China
≤3 hours, 98.16% response rate