'); background-size: cover; padding: 5rem 0; text-align: center; position: relative; overflow: hidden; } .hero h2 { font-size: 2.8rem; margin-bottom: 1.5rem; color: var(--primary); max-width: 800px; margin-left: auto; margin-right: auto; } .hero p { font-size: 1.3rem; max-width: 700px; margin: 0 auto 2rem; color: var(--dark); } .cta-button { display: inline-block; background-color: var(--accent); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .cta-button:hover { background-color: #c53030; transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); } /* 内容区域样式 */ section { padding: 4rem 0; } section:nth-child(even) { background-color: white; } .section-header { text-align: center; margin-bottom: 3rem; } .section-header h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 1rem; position: relative; display: inline-block; } .section-header h2:after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--accent); } .section-header p { max-width: 700px; margin: 1.5rem auto 0; color: var(--gray); } /* 公司信息卡片 */ .info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 2rem; } .card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; } .card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); } .card-header { background-color: var(--primary); color: white; padding: 20px; } .card-body { padding: 25px; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; } .stat-item { text-align: center; padding: 20px; background: rgba(43, 108, 176, 0.08); border-radius: 8px; } .stat-value { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; } .stat-label { font-size: 1rem; color: var(--gray); } /* 产品展示样式 */ .product-categories { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; } .category-btn { padding: 10px 20px; background: white; border: 2px solid var(--secondary); border-radius: 30px; color: var(--secondary); font-weight: 500; cursor: pointer; transition: all 0.3s ease; } .category-btn.active, .category-btn:hover { background: var(--secondary); color: white; } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, 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: all 0.3s ease; } .product-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-image { height: 200px; background: linear-gradient(45deg, #e0e7ff, #d1e8ff); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 3rem; } .product-info { padding: 20px; } .product-title { font-size: 1.3rem; margin-bottom: 10px; color: var(--primary); } .product-specs { display: flex; justify-content: space-between; margin: 15px 0; padding: 10px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; } .spec-item { text-align: center; } .spec-value { font-weight: 700; color: var(--primary); } .spec-label { font-size: 0.85rem; color: var(--gray); } /* 流程部分 */ .process-steps { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 40px; } .step { background: white; border-radius: 10px; padding: 30px; text-align: center; width: 160px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; } .step:not(:last-child):after { content: '→'; position: absolute; right: -25px; top: 50%; transform: translateY(-50%); font-size: 2rem; color: var(--secondary); } .step-icon { font-size: 2.5rem; margin-bottom: 15px; color: var(--secondary); } /* 联系方式 */ .contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; } .contact-card { background: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; } .contact-icon { font-size: 3rem; margin-bottom: 20px; color: var(--secondary); } /* 页脚样式 */ footer { background: var(--primary); color: white; padding: 4rem 0 2rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; 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: var(--accent); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col a { color: #cbd5e0; text-decoration: none; transition: color 0.3s ease; } .footer-col a:hover { color: white; } .language-selector { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; } .lang-btn { padding: 5px 12px; background: rgba(255,255,255,0.1); border-radius: 3px; font-size: 0.85rem; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #a0aec0; font-size: 0.9rem; } /* 响应式设计 */ @media (max-width: 768px) { .header-content { flex-direction: column; gap: 20px; } nav ul { flex-wrap: wrap; justify-content: center; } .hero h2 { font-size: 2rem; } .step:not(:last-child):after { display: none; } .step { flex: 1 0 calc(50% - 20px); max-width: calc(50% - 20px); } } @media (max-width: 480px) { .hero { padding: 3rem 0; } .hero h2 { font-size: 1.8rem; } .section-header h2 { font-size: 1.8rem; } .step { flex: 1 0 100%; max-width: 100%; } }
Specializing in OEM/ODM production of high-quality swimwear accessories, fashion trims, and garment hardware with 7+ years of industry expertise.
Request a Custom QuoteGuangzhou Jinfa Shizihong Garment Accessories Co., Ltd. is a leading manufacturer specializing in high-quality garment accessories since 2017.
Established: 2017 (7+ years experience)
Business Type: Custom Manufacturer (OEM/ODM)
Location: Guangdong, China
Employees: 13
Specialization: Swimwear accessories, fashion trims, garment hardware
Guangzhou Jinfa Metal Accessories Co., Ltd.
Established: 2022
Specialization: Complementary garment accessories manufacturing
Employees: 5-10
Response Rate: 97.61%
Our commitment to excellence is demonstrated through internationally recognized certifications.
Our products meet stringent global standards for textile safety and environmental responsibility.
All accessories are free from harmful substances, ensuring safety for skin contact and the environment.
Verified by world-leading testing service provider TÜV Rheinland.
Comprehensive assessment of manufacturing processes, quality control systems, and product safety.
Why leading fashion brands choose us as their trusted accessories partner.
We specialize in comprehensive OEM/ODM solutions:
Processing Time: 3-5 working days
Stringent quality control throughout our manufacturing process:
Specialized Features: Chlorine resistance, saltwater resistance, rust-resistant properties
Explore our premium garment accessories designed for durability and style.
Zinc alloy material with chlorine resistance for swimwear applications.
Wholesale mixed color beads suitable for bikini adjustments.
Cute and fresh style with crystal decorations for blouses.
Luxury brooch for high-end swimwear and lingerie applications.
Standardized manufacturing process ensuring consistent quality.
Precision mold creation
Detailed pattern work
Component fabrication
Smoothing & finishing
Surface refinement
Metal finishing
Quality assurance
Meet us at the world's premier textile and accessory event.
September 15-17, 2025
Booth: G339
"Newest Trim Trends Global Debut Exclusive Preview"
Join us for the exclusive preview of our latest accessory collections designed for the 2026 fashion season.
Get in touch with our team for custom quotes and inquiries.
Chat with our representatives:
Kimi, Sherry, Mary
Available during business hours
Primary contact method:
+86 166 5801 9688
Fast response guaranteed
Explore our collections:
Multiple design sample showroom
Available upon request