'); background-size: cover; background-position: center; color: white; text-align: center; padding: 150px 0; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } /* 关于部分 */ .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .about-card { background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); padding: 30px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .about-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .about-card h3 { color: var(--primary); margin-bottom: 15px; display: flex; align-items: center; } .about-card h3 i { margin-right: 10px; color: var(--secondary); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; } .stat-item { text-align: center; background: white; padding: 25px 15px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .stat-item .number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; } .stat-item .label { color: var(--dark); font-size: 0.9rem; text-transform: uppercase; } /* 优势部分 */ .advantages { background-color: #f0f4f8; } .advantages-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { background: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); text-align: center; transition: all 0.3s ease; } .advantage-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .advantage-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; } .advantage-card h3 { color: var(--primary); margin-bottom: 15px; } /* 产品部分 */ .products { background-color: white; } .product-tabs { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; gap: 10px; } .tab-btn { padding: 10px 25px; background: #e9ecef; border: none; border-radius: 30px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; } .tab-btn.active, .tab-btn:hover { background: var(--secondary); color: white; } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, 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); 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(--primary); font-size: 3rem; } .product-info { padding: 20px; } .product-info h3 { color: var(--primary); margin-bottom: 10px; } .product-meta { display: flex; justify-content: space-between; margin: 15px 0; font-size: 0.9rem; } .price { color: var(--secondary); font-weight: 700; font-size: 1.1rem; } .moq { background: #e8f4ff; color: var(--primary); padding: 3px 8px; border-radius: 4px; font-size: 0.8rem; } .features { list-style: none; margin-top: 15px; } .features li { margin-bottom: 8px; display: flex; align-items: flex-start; } .features li::before { content: "✓"; color: var(--success); margin-right: 8px; font-weight: bold; } /* 联系部分 */ .contact { background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.9)), url('data:image/svg+xml;utf8,'); background-size: cover; background-position: center; color: white; } .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; } .contact-details { margin-top: 30px; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-item i { margin-right: 15px; font-size: 1.2rem; color: var(--secondary); } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: none; border-radius: 5px; background: rgba(255, 255, 255, 0.15); color: white; font-size: 1rem; } .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.7); } .contact-form textarea { height: 150px; resize: vertical; } /* 页脚 */ footer { background: var(--dark); color: rgba(255, 255, 255, 0.7); padding: 50px 0 20px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; } .footer-col h4 { color: white; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--secondary); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 15px; } .footer-col ul li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: all 0.3s ease; } .footer-col ul li a:hover { color: var(--secondary); padding-left: 5px; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; } /* 响应式设计 */ @media (max-width: 992px) { .hero h1 { font-size: 2.8rem; } .section-title h2 { font-size: 2rem; } } @media (max-width: 768px) { .header-container { flex-direction: column; } .nav-menu { margin-top: 20px; flex-wrap: wrap; justify-content: center; } .nav-menu li { margin: 5px 10px; } .hero { padding: 100px 0; } .hero h1 { font-size: 2.2rem; } section { padding: 60px 0; } } @media (max-width: 576px) { .hero h1 { font-size: 1.8rem; } .section-title h2 { font-size: 1.6rem; } }
Yiwu Hui Fan Import & Export Co., Ltd. is a leading Chinese manufacturer specializing in high-quality straw hats, baseball caps, fashion accessories, bags, and swimwear with custom design services.
Explore Our ProductsProfessional Manufacturer Since 2001
Yiwu Hui Fan Import & Export Co., Ltd. is a professional trading company based in Yiwu City, Zhejiang, China. Strategically located near the Yiwu International Commodity Market, we leverage our prime location to source and manufacture high-quality fashion products.
With over 5 years of export experience, we maintain a 96.92% response rate and guarantee a response time of less than 3 hours to all inquiries.
We serve customers across the Americas, Europe (Eastern/Western/Northern), Southeast Asia, Australia, the Middle East, and South America. Our diverse market presence allows us to understand and cater to global fashion trends.
Our core product categories include straw hats, baseball caps, fashion accessories, bags, swimwear, and coordinated sets like hat and bag combinations.
We are ISO 9001:2018 and GB/T 19001-2018 certified, with a dedicated QC department that implements a comprehensive visual quality management process. All our products come with a professional inspection report.
We stand behind our products with an "Easy Return" policy ensuring customer satisfaction and peace of mind.
Our Competitive Advantages
We offer products ranging from $0.25 (hair accessories) to $15.00 (hat and bag sets) to accommodate different budgets without compromising quality.
With an annual production capacity of 500,000+ units, we maintain ample inventory of "Ready to Ship" items ensuring timely delivery.
We offer custom LOGO printing, embroidery, 3D embroidery, and pattern customization with production cycles as fast as 15 days.
Flexible minimum order quantities starting from just 2 pieces (for some bucket hats) to support small trial orders and new businesses.
Dual certification system (ISO 9001:2018 and GB/T 19001-2018) combined with professional QC inspection ensures premium quality.
Multiple payment options including T/T, Credit Card, PayPal, Western Union, and Cash for your convenience.
Premium Quality Headwear & Accessories
Get In Touch For Business Inquiries
Contact us today to discuss your custom headwear and fashion accessory needs. Our team is ready to assist you with product selection, customization options, and order fulfillment.
Yiwu City, Zhejiang Province, China
+86 123 4567 8910