'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3rem; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .cta-button { display: inline-block; background-color: var(--accent); color: white; padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: 600; font-size: 18px; transition: var(--transition); margin-top: 20px; } .cta-button:hover { background-color: #a02028; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Stats Section */ .stats { background-color: var(--light); padding: 60px 0; text-align: center; } .stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .stat-item { padding: 25px; background: white; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .stat-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); } .stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; } .stat-text { font-size: 1.1rem; color: var(--gray); } /* About Section */ .about { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--accent); } .section-title p { color: var(--gray); max-width: 700px; margin: 20px auto 0; } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); } .about-text p { margin-bottom: 15px; } .advantages { margin-top: 30px; } .advantage-item { display: flex; align-items: flex-start; margin-bottom: 20px; } .advantage-icon { background-color: var(--primary); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; } .advantage-text h4 { font-size: 1.2rem; margin-bottom: 5px; } .values { background-color: var(--light); border-left: 4px solid var(--secondary); padding: 20px; margin-top: 30px; } .values h4 { color: var(--primary); margin-bottom: 15px; } .values p { font-style: italic; color: var(--gray); } /* Products Section */ .products { padding: 80px 0; background-color: var(--light); } .product-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 50px; } .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-header { background-color: var(--primary); color: white; padding: 20px; text-align: center; } .category-header h3 { font-size: 1.5rem; margin: 0; } .category-body { padding: 20px; } .category-body p { margin-bottom: 20px; } .category-products { list-style: none; } .category-products li { padding: 8px 0; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; } .category-products li:last-child { border-bottom: none; } .product-code { font-weight: 600; color: var(--primary); } .product-price { color: var(--accent); font-weight: 600; } .highlight-badge { display: inline-block; background-color: var(--accent); color: white; font-size: 0.8rem; padding: 3px 8px; border-radius: 4px; margin-top: 5px; } /* Certifications & Payment */ .cert-payment { padding: 80px 0; background: white; } .cert-payment-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; } .certifications, .payment-methods { background-color: var(--light); padding: 30px; border-radius: 8px; } .cert-payment h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 20px; text-align: center; } .cert-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 20px; } .cert-item { background: white; padding: 15px; text-align: center; border-radius: 5px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); } .payment-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 15px; margin-top: 20px; } .payment-item { background: white; padding: 15px 10px; text-align: center; border-radius: 5px; font-weight: 600; box-shadow: 0 3px 10px rgba(0,0,0,0.05); } /* Contact Section */ .contact { padding: 80px 0; background: linear-gradient(to right, var(--primary), #2a5298); color: white; } .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info h3 { font-size: 2rem; margin-bottom: 20px; } .contact-detail { display: flex; align-items: flex-start; margin-bottom: 25px; } .contact-icon { font-size: 1.5rem; margin-right: 15px; color: var(--secondary); } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: none; border-radius: 5px; background-color: rgba(255,255,255,0.9); } .contact-form textarea { height: 150px; resize: vertical; } /* Footer */ footer { background-color: #0d1f3d; color: rgba(255,255,255,0.7); padding: 50px 0 20px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-logo { font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 15px; } .footer-logo span { color: var(--secondary); } .footer-about p { margin-bottom: 20px; } .footer-links h4, .footer-contact h4 { color: white; font-size: 1.3rem; margin-bottom: 20px; position: relative; } .footer-links h4::after, .footer-contact h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background-color: var(--accent); } .footer-links ul { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); } .footer-links a:hover { color: var(--secondary); padding-left: 5px; } .footer-contact p { display: flex; align-items: flex-start; margin-bottom: 15px; } .footer-contact i { color: var(--secondary); margin-right: 10px; margin-top: 5px; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); } /* Responsive Design */ @media (max-width: 992px) { .about-content, .cert-payment-container, .contact-container { grid-template-columns: 1fr; } .hero h2 { font-size: 2.5rem; } } @media (max-width: 768px) { nav ul { display: none; } .hero { padding: 80px 0; } .hero h2 { font-size: 2rem; } .section-title h2 { font-size: 2rem; } } @media (max-width: 576px) { .stats-container { grid-template-columns: 1fr; } .product-categories { grid-template-columns: 1fr; } .hero h2 { font-size: 1.8rem; } }
DEEPEEL by Handan Maizhong Trade Co., Ltd. specializes in high-quality bag hardware, zippers, sliders, and textile accessories for luggage, garment, and DIY industries. With 7+ years of manufacturing excellence.
Explore Our ProductsYour trusted partner for premium bag hardware and accessories since 2018
Handan Maizhong Trade Co., Ltd., operating under the DEEPEEL brand, is a professional trading company based in Hebei, China. Since our establishment in 2018, we've specialized in manufacturing high-quality bag hardware accessories, zippers, sliders, and textile components.
With a dedicated team of 11-50 professionals and a manufacturing facility under 1,000 square meters, we maintain stringent quality control while offering competitive pricing and exceptional customer service.
Specializing in bag hardware accessories and garment components with extensive variety
Ample stock ensures timely delivery and consistent supply chain management
High-quality products at competitive prices without compromising on quality
99.61% response rate with under 3-hour response time ensures smooth communication
"Ride with dreams, live up to the prime time" - We approach every challenge with passion and dedication.
"Unite hearts and minds" - Collaboration is at the core of our success.
"Everything has records, everything has feedback, everything has follow-up" - Our systematic approach ensures accountability and quality at every stage.
Premium accessories for luggage, garments, and DIY applications
Metal components for straps, luggage, purses, featuring durable alloys and custom finishes.
Nylon, resin, and metal zippers for diverse applications including garments, bags, and textiles.
Replacement sliders for various zipper types including nylon, resin, and metal applications.
Decorative and functional textiles including webbing, lace, elastic bands, and ribbons.
Our commitment to quality and flexible transaction options
All DEEPEEL products undergo rigorous quality control and meet international standards. We maintain comprehensive certifications to ensure product safety, durability, and environmental compliance.
We offer flexible payment options to accommodate global customers and ensure secure transactions:
Reach out to our team for quotes, samples, or partnership opportunities.
Hebei, China
≤3 hours (99.61% response rate)
376+ successful transactions totaling $130,000+