'); background-size: cover; background-position: center; color: white; text-align: center; padding: 100px 20px; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; } .btn { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; border: 2px solid var(--secondary); } .btn:hover { background-color: transparent; color: var(--secondary); } /* Company Overview */ .overview { padding: 80px 20px; background-color: white; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; } .section-title p { color: #666; max-width: 700px; margin: 0 auto; } .overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; } .overview-card { background-color: var(--light); border-radius: 8px; padding: 30px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .overview-card:hover { transform: translateY(-10px); } .overview-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); } .overview-card p { color: #555; } .icon { font-size: 3rem; margin-bottom: 20px; color: var(--secondary); } /* Products Section */ .products { padding: 80px 20px; background-color: #f9f9f9; } .product-tabs { max-width: 1200px; margin: 0 auto 40px; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; } .tab-btn { background-color: white; border: 2px solid var(--primary); color: var(--primary); padding: 10px 20px; border-radius: 30px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; } .tab-btn.active, .tab-btn:hover { background-color: var(--primary); color: white; } .tab-content { display: none; } .tab-content.active { display: block; } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; } .product-card { background-color: 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(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); } .product-img { height: 200px; background-color: #ddd; background-image: url('data:image/svg+xml;utf8,'); background-size: cover; background-position: center; } .product-info { padding: 20px; } .product-info h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark); } .product-meta { display: flex; justify-content: space-between; margin-bottom: 15px; font-weight: 600; } .price { color: var(--accent); } .min-order { color: var(--primary); } .product-features { margin-bottom: 15px; font-size: 0.9rem; color: #555; } .feature-list { list-style-type: none; } .feature-list li { margin-bottom: 8px; position: relative; padding-left: 20px; } .feature-list li:before { content: "✓"; color: var(--accent); position: absolute; left: 0; } .ready-to-ship { background-color: var(--accent); color: white; padding: 3px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; display: inline-block; margin-top: 10px; } /* Services Section */ .services { padding: 80px 20px; background-color: white; } .service-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 30px; } .service-content { flex: 1 1 400px; } .service-content h3 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; } .service-content p { margin-bottom: 20px; color: #444; } .service-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; } .service-feature { display: flex; align-items: flex-start; gap: 10px; } .service-icon { font-size: 1.5rem; color: var(--secondary); margin-top: 5px; } .service-img { flex: 1 1 400px; background-color: #eee; min-height: 300px; border-radius: 8px; background-image: url('data:image/svg+xml;utf8,'); background-size: cover; background-position: center; } /* Trust Indicators */ .trust { padding: 80px 20px; background: linear-gradient(135deg, var(--primary), #0d4a9e); color: white; } .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; } .trust-card { text-align: center; padding: 30px 20px; background-color: rgba(255,255,255,0.1); border-radius: 8px; backdrop-filter: blur(10px); } .trust-card h3 { font-size: 2.5rem; margin-bottom: 10px; } .trust-card p { opacity: 0.9; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 60px 20px 30px; } .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 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-color: var(--secondary); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col a { color: #bbb; text-decoration: none; transition: color 0.3s ease; } .footer-col a:hover { color: var(--secondary); } .contact-info { color: #bbb; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; } .copyright { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid #444; color: #999; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 768px) { .header-container { flex-direction: column; } nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; } nav li { margin: 5px 10px; } .hero h2 { font-size: 2.2rem; } .section-title h2 { font-size: 2rem; } }
Specializing in Pickleball, Soccer & Tennis Gear with 10+ Years of Industry Experience
Guangzhou Tuoran Sports Goods Co., Ltd. - Your Trusted Partner in Sports Equipment Manufacturing
Integrated manufacturing and trading operations with onsite verification
93.08% response rate with ≤4 hour response time and guaranteed delivery
Serving North America, Northern Europe, Southern Europe, Eastern Europe, and Western Europe
Specialized in sports industry product development with focus on outdoor sports
High-quality sports equipment with competitive pricing and guaranteed delivery
Comprehensive solutions for sports equipment manufacturing and customization
At Tuoran Sports, we specialize in OEM and ODM services to meet your specific requirements. With 10+ years of experience in sports equipment manufacturing, we help brands bring their products to market with efficiency and quality.
Customize products with your logo, colors, and specifications
Strong production capacity ensures timely order fulfillment
Select products available for immediate dispatch
Stringent quality control throughout production process
Building trust through performance and reliability
Response Rate
Response Time
Years Experience
Product Types