'); background-size: cover; background-position: center; color: white; padding: 120px 0; text-align: center; } .hero h1 { font-size: 3.5rem; color: white; margin-bottom: 20px; animation: fadeInDown 1s ease; } .hero p { font-size: 1.5rem; max-width: 800px; margin: 0 auto 30px; animation: fadeInUp 1s ease; } /* About Section */ .about { background-color: var(--light); } .about-content { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 40px; } .about-text { flex: 1; min-width: 300px; } .about-stats { flex: 1; min-width: 300px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .stat-card { background: white; padding: 25px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s ease; } .stat-card:hover { transform: translateY(-10px); } .stat-card h3 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 10px; } .stat-card p { color: var(--gray); font-weight: 500; } /* Core Competencies */ .competencies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .competency-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: all 0.3s ease; border-top: 4px solid var(--primary); } .competency-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .competency-card h3 { color: var(--primary); margin: 20px 0 15px; } .certifications { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; } .cert-badge { background-color: var(--light); padding: 8px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; color: var(--primary); } /* Products Section */ .products { background-color: var(--light); } .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; } .product-card { background: white; border-radius: 8px; 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: 200px; background-color: #f0f0f0; display: flex; align-items: center; justify-content: center; color: #aaa; } .product-info { padding: 20px; } .product-info h3 { color: var(--primary); margin-bottom: 10px; } .product-meta { display: flex; justify-content: space-between; margin: 15px 0; padding-top: 15px; border-top: 1px solid #eee; } .price { font-weight: 700; color: var(--secondary); } .min-order { color: var(--gray); font-size: 0.9rem; } .product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; } .tag { background-color: var(--light); padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; color: var(--gray); } /* Clients Section */ .clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; margin-top: 40px; align-items: center; } .client-logo { height: 80px; background-color: #f8f9fa; display: flex; align-items: center; justify-content: center; border-radius: 8px; padding: 15px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); } /* Global Presence */ .presence-map { position: relative; height: 400px; margin-top: 40px; background: #e9f2f7; border-radius: 8px; overflow: hidden; } .map-markers { position: absolute; width: 100%; height: 100%; } .marker { position: absolute; width: 24px; height: 24px; background-color: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: pulse 2s infinite; } .marker::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; background-color: rgba(231, 76, 60, 0.3); animation: ripple 2s infinite; z-index: -1; } .market-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; } .market-region { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .market-region h3 { color: var(--primary); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--light); } /* Logistics Section */ .logistics-container { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 40px; } .logistics-content { flex: 1; min-width: 300px; } .logistics-image { flex: 1; min-width: 300px; height: 300px; background-color: #f0f0f0; border-radius: 8px; display: flex; align-items: center; justify-content: center; } .payment-methods { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; } .payment-badge { background-color: var(--light); padding: 8px 15px; border-radius: 4px; font-size: 0.9rem; font-weight: 600; color: var(--primary); } /* Contact Section */ .contact { background: linear-gradient(rgba(26, 82, 118, 0.9), rgba(26, 82, 118, 0.95)), url('data:image/svg+xml;utf8,'); background-size: cover; background-position: center; color: white; } .contact h2 { color: white; } .contact h2:after { background-color: var(--accent); } .contact-container { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 40px; } .contact-info { flex: 1; min-width: 300px; } .contact-info h3 { color: var(--accent); margin-bottom: 15px; } .contact-info p { margin-bottom: 25px; font-size: 1.1rem; } .contact-form { flex: 1; min-width: 300px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; } .form-group input, .form-group textarea { width: 100%; padding: 12px; border-radius: 4px; border: none; } .form-group textarea { height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 60px 0 30px; } .footer-container { display: flex; flex-wrap: wrap; gap: 30px; } .footer-col { flex: 1; min-width: 200px; } .footer-col h3 { color: white; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #ddd; text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; } /* Animations */ @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } } @keyframes ripple { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(3); opacity: 0; } } /* Responsive Design */ @media (max-width: 768px) { .header-container { flex-direction: column; } nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } h1 { font-size: 2.5rem; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } section { padding: 40px 0; } }
Zhejiang Jialaite Economy and Trade Co., Ltd. - Your Trusted Partner for Educational Toys and Craft Supplies
Request a QuoteFounded in 2018, Zhejiang Jialaite Economy and Trade Co., Ltd. has established itself as a premier manufacturer and trading company specializing in educational toys, DIY craft kits, and creative play solutions.
Our integrated business model combines manufacturing expertise with global trading capabilities, allowing us to deliver high-quality products from concept to customer.
With our associated Jaredrise Private Gift Exhibition Center, we showcase innovative products that inspire creativity and learning in children worldwide.
Years of Experience
Dedicated Employees
Annual Revenue USD
Customer Response Rate
As both manufacturer and trading company, we provide end-to-end solutions from product development to global distribution.
Our experienced design team creates innovative products supporting STEM learning and creative development.
We combine premium quality with reasonable pricing, supported by responsive customer service (≤4h response time).
STEM educational toys for preschoolers
DIY jewelry making with flat clay beads
Fluffy slime toys for creative play
Discover the joy of chemistry and physics
United States, Canada, Mexico
Brazil, Argentina, Chile
UK, Germany, Scandinavia
Spain, Italy, France
India, Pakistan, Bangladesh
We provide comprehensive logistics solutions from production to shipment:
Ready to discuss your product needs? Our team is here to answer your questions and provide customized solutions.
Response Time: ≤4 hours during business hours
Location: Zhejiang, China
Business Hours: Monday-Friday, 8:30 AM - 5:30 PM (GMT+8)