'); background-size: cover; background-position: center; color: white; text-align: center; padding: 100px 20px; margin-bottom: 50px; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); } .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: 30px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: transform 0.3s, background-color 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.2); } .cta-button:hover { transform: translateY(-3px); background-color: #e67e22; } /* Company Info */ .company-info { background-color: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-bottom: 50px; display: flex; flex-wrap: wrap; } .info-card { flex: 1; min-width: 250px; padding: 20px; border-right: 1px solid #eee; } .info-card:last-child { border-right: none; } .info-card h3 { color: var(--primary); margin-bottom: 15px; display: flex; align-items: center; } .info-card h3 i { margin-right: 10px; background-color: #e3f2fd; width: 36px; height: 36px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--primary); } .rating { color: var(--secondary); font-weight: bold; font-size: 1.2rem; } /* Products Section */ .section-title { text-align: center; margin: 40px 0 30px; position: relative; } .section-title h2 { display: inline-block; background-color: white; padding: 0 25px; position: relative; z-index: 1; color: var(--dark); } .section-title::after { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background-color: var(--primary); z-index: 0; } .products-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; margin-bottom: 50px; } .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; position: relative; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-badge { position: absolute; top: 15px; left: 15px; background-color: var(--secondary); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; z-index: 2; } .product-image { height: 200px; background-color: #f5f7fa; display: flex; justify-content: center; align-items: center; color: var(--primary); font-weight: bold; font-size: 4rem; position: relative; } .product-image::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--primary), var(--secondary)); } .product-details { padding: 20px; } .product-title { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); } .product-price { color: var(--primary); font-weight: bold; font-size: 1.2rem; margin-bottom: 10px; } .product-moq { background-color: #e3f2fd; padding: 3px 10px; border-radius: 20px; display: inline-block; font-size: 0.85rem; margin-bottom: 15px; } .product-features { list-style: none; margin-bottom: 15px; } .product-features li { padding: 5px 0; display: flex; align-items: flex-start; } .product-features li::before { content: '✓'; color: var(--success); margin-right: 8px; font-weight: bold; } .customization { background-color: #e8f5e9; color: #2e7d32; padding: 5px 10px; border-radius: 4px; font-size: 0.85rem; display: inline-block; margin-top: 10px; } /* Main Products */ .category-section { margin-bottom: 50px; } .category-title { background: linear-gradient(90deg, var(--primary), var(--secondary)); color: white; padding: 15px 20px; border-radius: 5px 5px 0 0; display: flex; align-items: center; } .category-title i { margin-right: 10px; font-size: 1.3rem; } .category-grid { background-color: white; padding: 20px; border-radius: 0 0 5px 5px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; } /* Values Section */ .values { background: linear-gradient(135deg, var(--primary), #0d4a9e); color: white; padding: 60px 0; text-align: center; margin: 50px 0; } .values-container { display: flex; justify-content: center; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; } .value-card { background-color: rgba(255,255,255,0.1); border-radius: 10px; padding: 30px; margin: 15px; flex: 1; min-width: 250px; max-width: 350px; } .value-card h3 { font-size: 1.5rem; margin-bottom: 15px; display: flex; justify-content: center; align-items: center; } .value-card h3 i { background-color: rgba(255,255,255,0.2); width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-right: 15px; font-size: 1.5rem; } /* Contact Section */ .contact { background-color: white; padding: 50px 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; max-width: 800px; margin: 0 auto 50px; } .contact-info { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 30px; } .contact-item { padding: 0 20px; margin: 10px; border-right: 1px solid #eee; } .contact-item:last-child { border-right: none; } .contact-item p { font-size: 1.1rem; font-weight: 500; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 40px 0 20px; text-align: center; } .copyright { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; opacity: 0.7; } /* Responsive Design */ @media (max-width: 768px) { .nav-container { flex-direction: column; } nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; } nav li { margin: 5px 10px; } .info-card { border-right: none; border-bottom: 1px solid #eee; padding: 20px 0; } .info-card:last-child { border-bottom: none; } .contact-item { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 15px; width: 100%; } .contact-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; } }
High-quality sports safety gear, pet products, and yoga equipment with custom manufacturing solutions for global brands and retailers.
Explore Our ProductsDongguan Siyue Outdoor Sports Products Co., Ltd. is a professional manufacturer specializing in sports protection, pet supplies, and yoga equipment with 5+ years of industry experience.
Rated
by global clients for product quality, customization capabilities, and reliable service.Based in Dongguan, Guangdong - China's manufacturing hub with excellent infrastructure and logistics network.
$0.52 / pair
MOQ: 4 pairs$0.39 - $0.80 / pair
MOQ: 2 pairs$0.65 - $1.25 / pair
MOQ: 2 pairs$1.20 - $10.30 / piece
MOQ: 3 pieces$0.31 - $0.71 / piece
MOQ: 3 pieces$0.90 - $1.90 / piece
MOQ: 2 pieces$0.80 - $1.50 / piece
MOQ: 2 pieces$0.90 - $1.70 / piece
MOQ: 3 pieces$12.90 / pair
MOQ: 2 pairs$1.45 - $1.95 / piece
MOQ: 2 pieces$3.90 - $11.50 / piece
MOQ: 2 pieces$0.95 - $1.99 / piece
MOQ: 2 pieces$0.95 - $1.99 / piece
MOQ: 2 pieces$8.90 - $16.90 / piece
MOQ: 2 pieces"High Quality is Our Obligation!" - We implement strict quality control processes at every manufacturing stage to ensure products meet international standards and customer expectations.
"Great Service is Our Mission!" - From initial inquiry to final delivery, our dedicated team provides responsive communication, customization support, and reliable logistics solutions.
"Independently Verified Assessed Supplier" - Our manufacturing facilities and processes have been independently verified to ensure compliance with industry standards and ethical practices.
Reach out to discuss your custom manufacturing needs, request samples, or inquire about wholesale opportunities.
Mr. David Chen (Manager)
Dongguan, Guangdong, China