'); background-size: cover; background-position: center; color: white; text-align: center; padding: 120px 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.4rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } /* 关于公司 */ .about-section { background-color: white; } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text h3 { font-size: 2rem; margin-bottom: 20px; color: var(--primary); } .about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; } .stat-box { text-align: center; padding: 20px; background: var(--light); border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); } .stat-box h4 { font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; } /* 服务部分 */ .services { background-color: #f5f7fa; } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .service-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease; text-align: center; padding: 30px 20px; } .service-card:hover { transform: translateY(-10px); } .service-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } .service-card h3 { margin-bottom: 15px; color: var(--primary); } /* 产品部分 */ .products { background-color: white; } .product-filters { display: flex; justify-content: center; margin-bottom: 40px; gap: 15px; flex-wrap: wrap; } .filter-btn { padding: 8px 20px; background: var(--light); border: none; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; font-weight: 600; } .filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; } .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.08); transition: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); } .product-img { height: 200px; background-color: #e9ecef; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: bold; } .product-info { padding: 20px; } .product-info h3 { margin-bottom: 10px; color: var(--dark); } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; } .price { font-weight: bold; color: var(--primary); font-size: 1.2rem; } .min-order { color: var(--gray); font-size: 0.9rem; } /* 促销横幅 */ .promo-banner { background: linear-gradient(135deg, var(--secondary), #c1121f); color: white; padding: 30px 0; text-align: center; } .promo-content { max-width: 800px; margin: 0 auto; } .promo-content h2 { font-size: 2rem; margin-bottom: 15px; } /* 为什么选择我们 */ .why-us { background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('data:image/svg+xml;utf8,'); background-size: cover; } .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; } .benefit-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); display: flex; gap: 20px; } .benefit-icon { font-size: 2.5rem; color: var(--accent); flex-shrink: 0; } .benefit-text h3 { margin-bottom: 15px; color: var(--primary); } /* 认证部分 */ .certifications { background-color: var(--light); text-align: center; } .cert-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; } .cert-logo { width: 120px; height: 120px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.08); font-weight: bold; color: var(--primary); } /* 联系方式 */ .contact { background: linear-gradient(to right, var(--primary), #0d3a7a); color: white; } .contact .section-title h2 { color: white; } .contact-container { display: grid; grid-template-columns: 1fr 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-icon { margin-right: 15px; font-size: 1.5rem; color: var(--accent); } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: none; border-radius: 4px; background: rgba(255,255,255,0.1); color: white; font-size: 1rem; } .contact-form textarea { height: 150px; resize: vertical; } .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.7); } /* 页脚 */ footer { background: #0d1b2a; color: white; padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--accent); position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--accent); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #adb5bd; text-decoration: none; transition: color 0.3s; } .footer-col ul li a:hover { color: white; } .payment-methods { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 20px; } .payment-method { background: white; color: var(--dark); padding: 5px 10px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; } .copyright { text-align: center; padding-top: 30px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); color: #6c757d; font-size: 0.9rem; } /* 响应式设计 */ @media (max-width: 992px) { .about-content, .benefits-grid, .contact-container { grid-template-columns: 1fr; } .services-grid { grid-template-columns: repeat(2, 1fr); } .footer-container { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.1rem; } .about-stats { grid-template-columns: 1fr; } nav ul { display: none; } .footer-container { grid-template-columns: 1fr; } .hero-btns { flex-direction: column; gap: 15px; } }
Manufacturer & Supplier with 11+ Years Expertise | OEM/ODM Services | Quality Assurance
Established in 2017 in Zhejiang, China, we specialize in manufacturing premium garment accessories for sport clubs worldwide. With over 11 years of industry experience, we've built a reputation for quality, reliability, and exceptional service.
Our philosophy: "FIRST YOU WIN, THEN WE WIN" - we prioritize our clients' success to achieve mutual growth and lasting partnerships.
Years Experience
Products Supplied
Response Rate
Custom production of garment accessories using your designs and specifications. We bring your vision to life with precision manufacturing.
Our team of 6 professional designers creates original products tailored to your market needs and brand identity.
Comprehensive solutions from design to delivery. We handle all aspects of production, quality control, and logistics.
Heat transfer & screen printing for cups and garments. Durable silicone material with 3D effect.
High-visibility safety vest with reflective strips. Essential for sport events and low-light conditions.
Durable luggage tags with custom embroidery options. Ideal for team travel and events.
Full-length waterproof protection for outdoor sports. Hooded design with durable nylon material.
Compact and lightweight emergency rain protection for children. Perfect for outdoor youth sports.
Multifunctional rain protection with hood. Durable polyester material suitable for camping and outdoor sports.
As a direct manufacturer, we offer competitive pricing without compromising on quality. Our 500m² facility ensures full control over the production process.
With 5-10 dedicated QC staff, we implement rigorous quality control at every production stage. All products meet international safety standards.
11 years of exporting to 30+ countries including Northern Europe, Southeast Asia, Central America and Oceania. Our 1-2 member trade team handles all export requirements.
Our products comply with EN71-3 (EU Toy Safety), SGS, and Oeko-Tex Standard 100 requirements, ensuring safety and environmental compliance.
Have questions about our products or services? Our team is ready to assist you!
Zhejiang, China
13516977349 or CNbeautygirl
< 2 hours (99.12% response rate)