'); background-size: cover; background-position: center; color: white; text-align: center; padding: 100px 20px; margin-bottom: 60px; } .hero h2 { font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); } .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); } .btn { display: inline-block; background: var(--primary); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer; font-size: 1rem; } .btn:hover { background: #d62a7c; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .btn-outline { background: transparent; border: 2px solid white; margin-left: 15px; } .btn-outline:hover { background: white; color: var(--primary); } /* Sections */ section { padding: 60px 0; } section:nth-child(even) { background-color: #f8f9fa; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.5rem; color: var(--dark); display: inline-block; padding-bottom: 15px; position: relative; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--primary); border-radius: 2px; } /* About Section */ .about-content { display: flex; gap: 40px; align-items: center; } .about-text { flex: 1; } .about-stats { 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 5px 15px rgba(0,0,0,0.05); text-align: center; border-left: 4px solid var(--primary); } .stat-card h3 { font-size: 2rem; color: var(--primary); margin-bottom: 10px; } /* Products Section */ .categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 40px; } .category-btn { padding: 10px 20px; background: white; border: 1px solid #ddd; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; } .category-btn.active, .category-btn:hover { background: var(--primary); color: white; border-color: var(--primary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); } .product-img { height: 200px; background: #f1f1f1; display: flex; align-items: center; justify-content: center; color: #aaa; font-weight: bold; } .product-info { padding: 20px; } .product-info h3 { margin-bottom: 10px; color: var(--dark); } .product-meta { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.9rem; } .price { color: var(--primary); font-weight: 600; } .moq { background: #e8f5e9; color: var(--success); padding: 3px 8px; border-radius: 10px; font-size: 0.8rem; } .features { list-style: none; margin-top: 15px; } .features li { padding: 5px 0; display: flex; align-items: flex-start; } .features li::before { content: '✓'; color: var(--success); margin-right: 10px; font-weight: bold; } /* Customization Section */ .customization { text-align: center; } .custom-process { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 40px; } .process-step { flex: 1; min-width: 250px; max-width: 300px; padding: 30px 20px; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .step-number { width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: bold; } /* Contact Section */ .contact-content { display: flex; gap: 40px; } .contact-info { flex: 1; } .contact-info p { margin-bottom: 15px; display: flex; align-items: center; } .contact-info p i { margin-right: 10px; color: var(--primary); width: 20px; } .contact-form { flex: 1; background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .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; } textarea.form-control { min-height: 120px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-column h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--primary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #bbb; text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: white; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #444; color: #bbb; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content, .contact-content { flex-direction: column; } .hero h2 { font-size: 2.5rem; } } @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } .logo { margin-bottom: 20px; } nav ul { flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } .hero { padding: 80px 20px; } .hero h2 { font-size: 2rem; } .section-title h2 { font-size: 2rem; } .stat-card h3 { font-size: 1.5rem; } }
Yiwu Joyce Accessories Manufactory specializes in high-quality hair bows, headbands, and custom accessories with low MOQ and fast production since 2019.
Explore Products Request Custom QuoteFounded in 2019 in Zhejiang, China, we are a professional manufacturer and trading company specializing in hair accessories and fashion items. With our dedicated team of 11-50 skilled workers in a 1000 m² facility, we've successfully served over 100,000 customers worldwide.
Our verified manufacturing facility has been onsite-checked and certified. We pride ourselves on our JOYCE brand products that combine quality, affordability, and innovative design.
Customer Response Rate
Average Response Time
Successful Transactions
Years of Experience
Red heart design with leather texture, perfect for Valentine's Day
Personalized cheerleading bows with rhinestone detailing
Adorable bunny and egg design for kids' Easter celebrations
Ultra-soft headbands for infants with comfortable elastic
We specialize in custom hair accessories tailored to your specific requirements with low minimum order quantities.
Send us your design ideas, photos, or specifications
Choose from our wide range of materials and colors
We create a sample for your approval
We manufacture your order with quality control
Custom logo cheer bows, Team keychains, Personalized sports tassels, Branded hair accessories
Minimum Order Quantity: Most custom products start at just 10 pieces!
📍 Yiwu, Zhejiang, China
📞 +86 18058485286
🌐 www.janebao.com
Founded: 2019
Facility Size: 1000 m²
Annual Output: Below US$1 Million
Verification: Onsite Check Certified
T/T, L/C, MoneyGram, Credit Card, Western Union, Cash