'); background-size: cover; background-position: center; color: white; padding: 120px 0 100px; text-align: center; } .hero h1 { font-size: 3.2rem; margin-bottom: 20px; color: white; animation: fadeInDown 1s ease; } .hero p { font-size: 1.4rem; max-width: 700px; margin: 0 auto 40px; color: var(--light); animation: fadeInUp 1s ease; } .hero-btns { display: flex; justify-content: center; gap: 20px; animation: fadeInUp 1s ease; } .btn-secondary { background: transparent; border: 2px solid white; } .btn-secondary:hover { background: white; color: var(--primary); } /* Features Section */ .features { background: white; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .feature-card { background: white; border-radius: 8px; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .feature-icon { width: 70px; height: 70px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: white; font-size: 1.8rem; } /* Products Section */ .products { background-color: #f5f7fa; } .categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .category-btn { padding: 10px 25px; background: white; border: 1px solid #ddd; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; font-weight: 500; } .category-btn.active, .category-btn:hover { background: var(--secondary); color: white; border-color: var(--secondary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 8px; 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: 220px; background: linear-gradient(45deg, #f1f2f6, #dfe4ea); display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: bold; } .product-info { padding: 20px; } .product-info h3 { font-size: 1.3rem; margin-bottom: 10px; } .product-meta { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.9rem; } .product-price { color: var(--secondary); font-weight: bold; } .product-moq { color: var(--gray); } .product-description { color: #666; font-size: 0.95rem; margin-bottom: 20px; } .product-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; } .feature-tag { background: #e0f7fa; color: #006064; padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 500; } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text h2 { margin-bottom: 25px; } .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-box { background: white; padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .stat-value { font-size: 2rem; font-weight: bold; color: var(--secondary); margin-bottom: 10px; } .stat-label { color: var(--gray); font-weight: 500; } .about-img { height: 400px; background: linear-gradient(45deg, #f1f2f6, #dfe4ea); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: bold; } /* Services Section */ .services { background: linear-gradient(to right, #2c3e50, #4a6491); color: white; } .services h2, .services h3 { color: white; } .services h2::after { background: var(--accent); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: rgba(255,255,255,0.1); border-radius: 8px; padding: 30px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); } .service-card h3 { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; } .service-card h3::before { content: '✓'; color: var(--accent); font-weight: bold; } /* Contact Section */ .contact { background: white; } .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info h3 { margin-bottom: 25px; font-size: 1.6rem; } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-icon { width: 40px; height: 40px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; margin-right: 15px; flex-shrink: 0; } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } .contact-form textarea { height: 150px; resize: vertical; } /* Payment Methods */ .payment-methods { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; } .payment-method { background: white; border: 1px solid #ddd; padding: 8px 15px; border-radius: 4px; font-size: 0.9rem; font-weight: 500; } /* Footer */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { color: white; margin-bottom: 25px; font-size: 1.4rem; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--secondary); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 12px; } .footer-col ul li a { color: #bbb; text-decoration: none; transition: color 0.3s ease; } .footer-col ul li a:hover { color: var(--secondary); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #bbb; font-size: 0.9rem; } /* 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); } } /* Responsive */ @media (max-width: 992px) { .about-content, .contact-container { grid-template-columns: 1fr; } .about-img { height: 300px; order: -1; } } @media (max-width: 768px) { .header-container { flex-direction: column; padding: 15px 0; } nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.1rem; } .hero-btns { flex-direction: column; align-items: center; } }
Manufacturer of high-quality stickers, metal badges, wall stickers, and keychains since 2016. Custom designs, competitive prices, and flexible MOQs.
Trusted by clients worldwide with exceptional service and quality
100% response rate with under 2-hour average response time
Waterproof, durable materials with strict quality control
Low minimum order quantities starting from just 5 units
Tailor-made designs to meet your specific requirements
High-quality decorations for all your needs
Established in 2016, Hefei ZY Trade Co., Ltd. is a professional manufacturer and trading company based in Anhui, China. We specialize in producing high-quality stickers, toys, tableware, baby products, and custom decorations.
With a dedicated team of 51-100 professionals, we operate from a 101-500 square meter facility where we maintain strict quality control processes. Our commitment to excellence is reflected in our 100% response rate and under 2-hour average response time.
Since our founding, we've successfully completed over 358 transactions with a total transaction value exceeding $30,000, serving clients worldwide with premium products at competitive prices.
Comprehensive solutions for your business needs
We specialize in custom designs for all our product categories. Bring your unique ideas to life with our flexible manufacturing capabilities.
Benefit from our logistics discounts and efficient shipping solutions to get your products delivered on time and cost-effectively.
Our team continuously collects market trends and develops new products to keep your offerings fresh and competitive.
We accommodate both small and large orders with MOQs starting as low as 5 units for select products.
Select popular items are available for immediate shipment, reducing your lead times significantly.
Enjoy fast discounts on bulk orders and receive special gifts with qualifying purchases.
Get in touch for quotes and inquiries