'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero h1 { font-size: 3rem; margin-bottom: 20px; animation: fadeIn 1s ease-in-out; } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; animation: fadeIn 1.2s ease-in-out; } .btn { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s; animation: fadeIn 1.5s ease-in-out; } .btn:hover { background-color: #c0392b; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* About Section */ .about { padding: 80px 0; background-color: var(--light); } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.2rem; color: var(--primary); display: inline-block; padding-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--accent); } .about-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; } .company-info { flex: 1; min-width: 300px; background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; } .info-item { padding: 15px; background-color: #f9f9f9; border-radius: 8px; border-left: 4px solid var(--accent); } .info-item h3 { color: var(--primary); margin-bottom: 8px; font-size: 1.1rem; } .stats { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 20px; } .stat-card { background-color: white; padding: 25px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; } .stat-card h3 { color: var(--primary); margin-bottom: 15px; } .stat-value { font-size: 2.5rem; font-weight: 700; color: var(--accent); margin-bottom: 10px; } /* Products Section */ .products { padding: 80px 0; } .categories { display: flex; overflow-x: auto; gap: 10px; padding-bottom: 20px; margin-bottom: 40px; scrollbar-width: thin; } .category-btn { padding: 10px 20px; background-color: #e9ecef; border: none; border-radius: 30px; cursor: pointer; transition: all 0.3s; white-space: nowrap; font-weight: 500; } .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: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-img { height: 200px; background-color: #f8f9fa; display: flex; align-items: center; justify-content: center; color: var(--gray); position: relative; } .product-img::before { content: 'Product Image'; position: absolute; } .product-badge { position: absolute; top: 15px; right: 15px; background-color: var(--secondary); color: white; padding: 5px 10px; border-radius: 3px; font-size: 0.8rem; font-weight: 500; } .product-content { padding: 20px; } .product-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary); } .product-features { margin-bottom: 15px; color: var(--gray); font-size: 0.9rem; } .product-features li { margin-bottom: 5px; } .product-price { display: flex; align-items: center; margin-bottom: 15px; } .price-wholesale { font-size: 1.3rem; font-weight: 700; color: var(--secondary); margin-right: 15px; } .price-original { font-size: 1rem; color: var(--gray); text-decoration: line-through; } .product-moq { font-weight: 500; color: var(--primary); margin-bottom: 15px; } /* Features Section */ .features { padding: 80px 0; background-color: var(--light); } .features-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; } .feature-card { background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; } .feature-card:hover { transform: translateY(-10px); } .feature-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; } .feature-card h3 { color: var(--primary); margin-bottom: 15px; } /* EEAT Section */ .eeat { padding: 80px 0; text-align: center; } .eeat-container { max-width: 800px; margin: 0 auto; } .eeat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 30px; margin-top: 50px; } .eeat-card { padding: 25px; background-color: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .eeat-card h3 { color: var(--primary); margin-bottom: 15px; } /* Footer */ footer { background-color: var(--primary); color: white; padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background-color: var(--accent); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #ddd; text-decoration: none; transition: color 0.3s; } .footer-col ul li a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 0.9rem; } /* Responsive */ @media (max-width: 768px) { .header-container { flex-direction: column; gap: 15px; } nav ul { flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } .hero h1 { font-size: 2.2rem; } .section-title h2 { font-size: 1.8rem; } } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
Yiwu Quandi Clothing Firm specializes in high-quality denim jackets, jeans, leather jackets, and seasonal apparel with innovative designs at competitive wholesale prices.
Explore Our CollectionBased in Zhejiang, China, we are a professional trading company specializing in trendy fashion apparel for global markets. With our focus on quality and innovative designs, we've become a reliable partner for retailers worldwide.
Trading Company
Zhejiang, China
1 Year (Established 2024)
Alibaba Guaranteed
Consistent communication with our clients
Quick replies to all business inquiries
Our collections include 2025 Fall/Winter (25FW), Spring/Summer (25SS), and season-specific items like summer riding masks, ensuring comprehensive year-round offerings.
We use 100% cotton in shirts, hoodies and tees, high-grade denim, genuine leather, and heavyweight 260g fabrics for superior quality and comfort.
Our designs feature embroidery, 3D/retro printing, rhinestone embellishment, patchwork, and distressed details that align with current streetwear trends.
We offer men's exclusive styles, women's collections, and versatile unisex options to serve diverse market segments.
Minimum order quantities as low as 1-2 pieces allow retailers to test market demand with minimal inventory investment.
Our 2025 collections incorporate runway-inspired elements like capsule prints, illusion distressing, and collaborative designs ahead of market trends.
At Yiwu Quandi Clothing Firm, we adhere to the highest standards of Experience, Expertise, Authoritativeness, and Trustworthiness (EEAT) in all our business operations.
With 1 year in the clothing trade industry, we've developed efficient processes for international wholesale and understand global fashion markets.
Our team includes fashion designers and textile specialists who ensure product quality, trend relevance, and manufacturing excellence.
As an Alibaba-verified supplier with documented quality processes, we're recognized as a reliable source for trendy apparel.
We maintain 95.59% response rates and transparent pricing with detailed product specifications to build long-term partnerships.