'); background-size: cover; background-position: center; color: white; padding: 80px 0; text-align: center; } .hero h1 { font-size: 2.8rem; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; } .cta-button { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 18px; transition: background-color 0.3s, transform 0.3s; border: none; cursor: pointer; } .cta-button:hover { background-color: #c0392b; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } /* Section styles */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.2rem; color: var(--primary); display: inline-block; margin-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--secondary); } .section-title p { color: #666; max-width: 700px; margin: 20px auto 0; } /* About section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .company-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; } .highlight-card { background-color: white; border-radius: 8px; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .highlight-card:hover { transform: translateY(-5px); } .highlight-card h3 { color: var(--secondary); margin-bottom: 10px; } /* Products section */ .categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; } .category-card { background-color: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .category-card:hover { transform: translateY(-10px); } .category-header { background-color: var(--primary); color: white; padding: 15px; text-align: center; } .category-body { padding: 20px; } .product-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border); } .product-item:last-child { border-bottom: none; } .product-name { font-weight: 600; } .product-price { color: var(--secondary); font-weight: 700; } .moq { font-size: 0.9rem; color: #666; } .featured-tag { background-color: var(--secondary); color: white; padding: 2px 8px; border-radius: 3px; font-size: 0.8rem; display: inline-block; margin-left: 5px; } /* Trade info section */ .trade-info { background-color: var(--light); } .trade-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .trade-card { background-color: white; border-radius: 8px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; } .trade-card h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.4rem; } .market-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; text-align: left; } .market-list li { padding: 8px 0; border-bottom: 1px solid var(--border); } .market-list li:last-child { border-bottom: none; } /* Contact section */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info { background-color: var(--primary); color: white; padding: 40px; border-radius: 8px; } .contact-info h3 { margin-bottom: 20px; font-size: 1.5rem; } .contact-detail { margin-bottom: 15px; display: flex; align-items: flex-start; } .contact-detail i { margin-right: 15px; font-size: 1.2rem; color: var(--accent); } .contact-form { background-color: white; padding: 40px; border-radius: 8px; 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: 600; } .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; font-size: 1rem; } .form-group textarea { height: 150px; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 40px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; } .footer-column h3 { font-size: 1.2rem; margin-bottom: 20px; position: relative; } .footer-column h3::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 2px; background-color: 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; } .footer-links a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #aaa; } /* Responsive */ @media (max-width: 992px) { .about-content, .contact-container { grid-template-columns: 1fr; } .hero h1 { font-size: 2.2rem; } } @media (max-width: 768px) { .header-container { flex-direction: column; padding: 15px 0; } nav ul { margin-top: 15px; } nav li { margin: 0 10px; } section { padding: 60px 0; } .company-highlights { grid-template-columns: 1fr; } } @media (max-width: 576px) { .hero h1 { font-size: 1.8rem; } .hero p { font-size: 1rem; } nav ul { flex-wrap: wrap; justify-content: center; } nav li { margin: 5px 8px; } } /* EEAT badges */ .eeat-badge { display: inline-block; background-color: rgba(52, 152, 219, 0.1); color: #3498db; padding: 5px 10px; border-radius: 20px; font-size: 0.85rem; margin: 5px 5px 5px 0; border: 1px solid rgba(52, 152, 219, 0.3); }
Yiwu Yajing Trade Co., Ltd. specializes in high-quality wholesale fashion accessories, socks, clothing, bags and sunglasses with 5+ years of export experience
Request a QuoteEstablished in 2020, we've grown to become a leading supplier in the fashion industry with a commitment to quality and service
We are a professional trading company based in Yiwu, China, specializing in fashion accessories, socks, clothing, bags and sunglasses. With 51-100 employees and a 101-500 sqm operational area, we're equipped to handle large-volume orders while maintaining quality standards.
Onsite Check verified by international partners
≤6 hour response time with 96.15% response rate
5+ years of international trade expertise
End-to-end procurement and fulfillment services
Discover our extensive collection of fashion products designed for global markets
We offer a wide range of fashion bags and sunglasses suitable for different markets and seasons. Contact us for our full catalog.
We specialize in OEM services with capabilities for:
Streamlined processes to facilitate international business relationships
Get in touch with our sales team for quotes, samples, or custom product inquiries