'); background-size: cover; background-position: center; color: var(--light); padding: 120px 0; text-align: center; } .hero h2 { font-size: 3rem; margin-bottom: 20px; color: var(--light); text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; color: #eee; } .stats-container { display: flex; justify-content: center; flex-wrap: wrap; margin-top: 40px; } .stat-item { background-color: rgba(255,255,255,0.1); border-radius: 8px; padding: 20px; margin: 10px; min-width: 200px; text-align: center; backdrop-filter: blur(5px); } .stat-item .number { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; color: var(--accent); } /* === 公司信息部分 === */ .company-info { background-color: var(--light); border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; } .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 40px; } .info-card { padding: 20px; border-left: 3px solid var(--primary); background-color: rgba(229, 57, 53, 0.05); } .info-card h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 15px; } .info-item { margin-bottom: 10px; display: flex; } .info-item .label { font-weight: 600; min-width: 150px; } /* === 产品部分 === */ .products-section { background-color: var(--secondary); } .product-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; } .category-card { background-color: var(--light); border-radius: 8px; padding: 25px; text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,0.08); transition: all 0.3s ease; } .category-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); } .category-icon { font-size: 3rem; color: var(--primary); margin-bottom: 15px; } .product-tabs { background-color: var(--light); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .tab-header { display: flex; border-bottom: 1px solid #eee; } .tab-btn { padding: 15px 25px; background: none; border: none; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; flex: 1; } .tab-btn.active { background-color: var(--primary); color: var(--light); } .tab-content { padding: 30px; } .tab-pane { display: none; } .tab-pane.active { display: block; } .product-table { width: 100%; border-collapse: collapse; } .product-table th { background-color: var(--primary); color: var(--light); padding: 15px; text-align: left; } .product-table td { padding: 15px; border-bottom: 1px solid #eee; } .product-table tr:nth-child(even) { background-color: rgba(229, 57, 53, 0.05); } .feature-badge { display: inline-block; background-color: rgba(249, 168, 37, 0.2); color: #e65100; padding: 5px 10px; border-radius: 4px; font-size: 0.85rem; margin-top: 5px; } /* === 服务部分 === */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .service-card { background-color: var(--light); border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: all 0.3s ease; } .service-card:hover { transform: translateY(-10px); } .service-card h3 { color: var(--primary); margin-bottom: 15px; } .service-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; } .market-list { display: flex; flex-wrap: wrap; justify-content: center; list-style: none; margin-top: 15px; } .market-list li { background-color: rgba(229, 57, 53, 0.1); padding: 8px 15px; border-radius: 30px; margin: 5px; font-size: 0.9rem; } /* === CTA区域 === */ .cta-section { background: linear-gradient(135deg, var(--primary), #c62828); color: var(--light); padding: 80px 0; text-align: center; } .cta-content { max-width: 800px; margin: 0 auto; } .cta-section h2 { color: var(--light); margin-bottom: 20px; } .cta-section p { font-size: 1.2rem; margin-bottom: 30px; color: rgba(255,255,255,0.9); } .cta-btn { background-color: var(--light); color: var(--primary); font-size: 1.1rem; padding: 15px 40px; } .cta-btn:hover { background-color: var(--secondary); } /* === 页脚 === */ footer { background-color: var(--dark); color: var(--light); padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-section h3 { color: var(--light); margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-section h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background-color: var(--primary); } .contact-info p { margin-bottom: 10px; display: flex; align-items: flex-start; } .contact-icon { margin-right: 10px; color: var(--primary); min-width: 20px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 0.9rem; } /* === 响应式设计 === */ @media (max-width: 992px) { .header-content { flex-direction: column; text-align: center; } .logo { justify-content: center; margin-bottom: 20px; } nav ul { justify-content: center; } nav ul li { margin: 0 10px; } .hero h2 { font-size: 2.2rem; } } @media (max-width: 768px) { .info-grid { grid-template-columns: 1fr; } .tab-header { flex-direction: column; } .section-title { font-size: 1.8rem; } .hero { padding: 80px 0; } } @media (max-width: 576px) { section { padding: 40px 0; } .hero h2 { font-size: 1.8rem; } .stat-item { min-width: 150px; padding: 15px; } .stat-item .number { font-size: 2rem; } }
Manufacturer & Trading Company
Xiamen Baily Garment & Accessories Co., Ltd. specializes in manufacturing high-quality fashion accessories and children's clothing with over 10 years of industry experience
Contact Us NowProfessional Manufacturer Since 2016
"GREAT SERVICE IS OUR MISSION!"
"HIGH QUALITY IS OUR OBLIGATION!"
We adhere to the principle of "Customer First" in all our operations and business relationships.
Premium Fashion Accessories & Children's Wear
Baby & toddler party dresses, princess dresses, and special occasion outfits
Hair clips, headbands, scrunchies, turbans for all ages
Garment-related protective items
Decorative accessories for gifts and packaging
Product Name | Price Range | MOQ | Features |
---|---|---|---|
Baby Girl Tulle Tutu Dress + Hair Bow | $3.20-4.20 | 2 pieces | For birthday parties, princess styling Easy Return |
Original Linen Bow Hair Clips | $0.68-0.74 | 5 pieces | Sailor style, alligator clip Easy Return |
Baby Toddler Snap Clips Boutique Mini Bow | $0.16-0.28 | 5 pieces | For fringe bangs Easy Return |
Baby Girls Knot Headbands | $0.60-0.80 | 2 pieces | High elasticity, newborn to toddler Easy Return |
4 Inch JoJo Hair Bow Clips | $0.26-0.30 | 2 pieces | Ribbon material, children to teens Easy Return |
Product Name | Price Range | MOQ | Customization |
---|---|---|---|
Customized Logo Packaging Linen Hair Bows | $0.50-0.90 | 100 pieces | Logo printing on packaging, babies to women |
Customized Fabric Headband & Clips | $0.50-0.60 | 100 pieces | Custom fabric material & color |
Customize Tag Hair Bow Elastic Bands | $0.20-0.30 | 40 pieces | Custom tags on scrunchies |
200 Color Satin Ribbon Bows | $0.19-0.29 | 100 pieces | Gift packing, wide color selection |
Product Name | Price Range | MOQ | Features |
---|---|---|---|
Set of 4 PCS 3" Cotton Fabric Bow Clips | $1.30-1.80 | 2 sets | 4 clips per set New Arrival |
Lightweight Jersey Beanie Hat | $2.00-2.80 | 2 pieces | Silk lining, newborn to children New Arrival |
Set of 6 Velvet Scrunchies Headbands | $2.70-3.40 | 2 sets | Gift packaging New Arrival |
Trendy Leopard Headband | $0.88-1.28 | 4 pieces | Leopard print, knot design New Arrival |
Comprehensive Support For Your Business
Most products feature "Easy Return" policy to minimize purchasing risk. Customized products have specific after-sales policies.
We support various international payment options:
Our products reach customers worldwide:
Contact us today to discuss your requirements for premium hair accessories and children's clothing. Our team is ready to provide you with the best service and highest quality products.
Get in Touch NowWe'd Love to Hear From You
Have questions about our products or services? Our team is ready to assist you with any inquiries regarding our hair accessories, children's wear, or custom manufacturing capabilities.
Email Us