'); background-size: cover; background-position: center; height: 100vh; display: flex; align-items: center; color: white; text-align: center; margin-top: 80px; } .hero-content { max-width: 800px; margin: 0 auto; padding: 0 20px; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; } .hero p { font-size: 1.2rem; margin-bottom: 35px; font-weight: 300; } /* 优势展示 */ .features { background-color: var(--light); } .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .feature-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease; } .feature-card:hover { transform: translateY(-10px); } .feature-content { padding: 30px; } .feature-icon { width: 70px; height: 70px; background: linear-gradient(45deg, var(--primary), var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: white; font-size: 1.8rem; } .feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--dark); } /* 产品展示 */ .products { background-color: white; } .categories { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; gap: 15px; } .category-btn { padding: 10px 25px; background-color: white; border: 2px solid var(--primary); border-radius: 30px; color: var(--primary); font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .category-btn.active, .category-btn:hover { background-color: var(--primary); color: white; } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: var(--light); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .product-img { height: 250px; background: linear-gradient(45deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: white; font-size: 3rem; } .product-info { padding: 25px; } .product-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; } .product-tag { padding: 5px 12px; background-color: rgba(233, 30, 99, 0.1); color: var(--primary); border-radius: 20px; font-size: 0.85rem; font-weight: 500; } .product-info h3 { font-size: 1.3rem; margin-bottom: 10px; } .product-specs { margin: 15px 0; font-size: 0.95rem; } .product-specs div { display: flex; justify-content: space-between; margin-bottom: 8px; } .product-specs span:first-child { font-weight: 500; color: var(--gray); } .product-price { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; } .price { font-size: 1.2rem; font-weight: 700; color: var(--primary); } /* 关于我们 */ .about { background-color: var(--light); } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 20px; } .about-text p { margin-bottom: 20px; } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-card { background: white; padding: 20px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .stat-card h3 { font-size: 2rem; color: var(--primary); margin-bottom: 5px; } /* 支付方式 */ .payment { background-color: white; } .payment-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; } .payment-method { background-color: var(--light); padding: 15px 25px; border-radius: 10px; font-weight: 500; min-width: 150px; text-align: center; } /* 联系方式 */ .contact { background: linear-gradient(rgba(156, 39, 176, 0.9), rgba(233, 30, 99, 0.9)), url('data:image/svg+xml;utf8,'); background-size: cover; background-position: center; color: white; } .contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 25px; } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-icon { margin-right: 15px; font-size: 1.2rem; color: var(--accent); } .contact-form .form-group { margin-bottom: 25px; } .contact-form input, .contact-form textarea { width: 100%; padding: 15px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 5px; color: white; font-size: 1rem; } .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.7); } .contact-form textarea { height: 150px; resize: none; } /* 页脚 */ footer { background-color: var(--dark); color: white; padding: 50px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.2rem; margin-bottom: 25px; position: relative; } .footer-column h3::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 40px; height: 2px; background: var(--primary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 15px; } .footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--accent); } .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); } /* 响应式设计 */ @media (max-width: 992px) { .about-content, .contact-wrapper { grid-template-columns: 1fr; } .footer-content { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .section-title h2 { font-size: 2rem; } .nav-links { display: none; } .footer-content { grid-template-columns: 1fr; } }
IFANBABY brings over 12 years of manufacturing excellence to create exquisite hair accessories that combine style, quality, and affordability.
Explore CollectionsWhy global clients choose IFANBABY for their hair accessory needs
With our own factory and more than 12 years of specialized production experience, we maintain full quality control throughout the manufacturing process.
Benefit from abundant inventory supply, quick lead times, low MOQ starting from just 1 piece, and highly competitive pricing.
We welcome OEM/ODM collaborations and offer both custom designs and ready-to-ship products with easy return policies.
Our products are trusted across Europe (Eastern, Southern, Western) and the Americas (North & South), serving diverse markets.
Discover our fashion-forward hair accessories
Jiaozuo Aidudu E-Commerce Co., Ltd., operating under the brand IFANBABY, has been a leading manufacturer of fashion-forward hair accessories since 2016. Based in Henan, China, our 101-500 square meter facility employs 5-10 skilled professionals dedicated to creating elegant accessories.
Our brand philosophy centers on "Fashion & Elegance" - creating pieces that bring sophistication to everyday wear while maintaining exceptional quality standards verified through onsite inspections.
We specialize in five core categories: hair flowers, hair clips, headbands, lapel pins, and sash belts, serving global markets with customized and ready-to-ship solutions.
Years Experience
Product Designs
Response Rate
Countries Served
101-500 sqm factory in Henan, China
Flexible payment options for global transactions
Reach out for quotes, customization, or partnership opportunities
Henan, China
Jiaozuo Aidudu E-Commerce Co., Ltd.
Established: 2016
≤1 hour response time
100% response rate