'); background-size: cover; color: white; text-align: center; padding: 100px 20px; margin-bottom: 50px; } .hero h1 { font-size: 3rem; margin-bottom: 20px; animation: fadeIn 1s ease-out; } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; animation: fadeIn 1.2s ease-out; } .cta-button { display: inline-block; background-color: var(--accent); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s; animation: fadeIn 1.4s ease-out; } .cta-button:hover { background-color: #c0392b; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* About Section */ .about { padding: 80px 0; background-color: white; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.5rem; color: var(--primary); display: inline-block; margin-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--secondary); border-radius: 2px; } .about-content { display: flex; gap: 40px; align-items: center; } .company-info { flex: 1; } .info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .info-card { background-color: var(--light); padding: 20px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); } .info-card h3 { color: var(--secondary); margin-bottom: 10px; font-size: 1.1rem; } .stats { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 30px; } .stat-item { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 15px; text-align: center; flex: 1; min-width: 150px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); } .stat-item .number { font-size: 2rem; font-weight: 700; color: var(--secondary); margin-bottom: 5px; } /* Promotions Section */ .promotions { padding: 80px 0; background-color: #f5f7fa; } .promo-cards { display: flex; gap: 30px; margin-top: 30px; } .promo-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); flex: 1; transition: transform 0.3s; } .promo-card:hover { transform: translateY(-10px); } .promo-header { background-color: var(--accent); color: white; padding: 15px 20px; text-align: center; } .promo-body { padding: 25px; text-align: center; } .promo-body .price { font-size: 2rem; font-weight: 700; color: var(--accent); margin: 15px 0; } .promo-body p { margin-bottom: 20px; } /* Products Section */ .products { padding: 80px 0; background-color: white; } .categories { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 40px; } .category-btn { padding: 10px 25px; background: var(--light); border: none; border-radius: 30px; font-weight: 500; cursor: pointer; transition: all 0.3s; } .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: transform 0.3s; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-image { height: 200px; background-color: #f9f9f9; display: flex; align-items: center; justify-content: center; color: #aaa; font-style: italic; } .product-info { padding: 20px; border-top: 1px solid var(--border); } .product-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary); } .product-price { color: var(--accent); font-weight: 700; font-size: 1.1rem; margin: 10px 0; } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; font-size: 0.9rem; color: #666; } /* Contact Section */ .contact { padding: 80px 0; background: linear-gradient(to right, var(--primary), #1a2530); color: white; } .contact .section-title h2 { color: white; } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 30px; } .contact-info { display: flex; flex-direction: column; gap: 20px; } .contact-item { display: flex; gap: 15px; align-items: flex-start; } .contact-icon { background: var(--secondary); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .contact-form { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; color: var(--dark); font-weight: 500; } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--border); border-radius: 6px; font-size: 1rem; } .form-group textarea { min-height: 120px; } .submit-btn { background: var(--secondary); color: white; border: none; padding: 12px 30px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: background 0.3s; } .submit-btn:hover { background: #2980b9; } /* Footer */ footer { background: #1a2530; color: #bdc3c7; padding: 50px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 30px; } .footer-col h3 { color: white; margin-bottom: 20px; font-size: 1.3rem; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--secondary); } .footer-links { display: flex; flex-direction: column; gap: 12px; } .footer-links a { color: #bdc3c7; text-decoration: none; transition: color 0.3s; } .footer-links a:hover { color: var(--secondary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #2c3e50; font-size: 0.9rem; } /* Animations */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* Responsive Design */ @media (max-width: 768px) { .nav-links { display: none; } .hero h1 { font-size: 2.2rem; } .about-content { flex-direction: column; } .promo-cards { flex-direction: column; } .info-grid { grid-template-columns: 1fr; } }
Shantou Love Summer Technology Co., Ltd. is a leading manufacturer and wholesaler of high-quality eyewear, jewelry, watches, and accessories. Serving global markets with excellence since 2021.
Explore Our CollectionProfessional supplier with global reach and exceptional service
Established in 2021, Shantou Love Summer Technology Co., Ltd. is a verified trading company based in Guangdong, China. With 5 years of industry expertise, we specialize in providing fashion-forward accessories to markets worldwide.
Name: Shantou Love Summer Technology Co., Ltd.
Founded: 2021
Location: Guangdong, China
Type: Trading Company
✓ Onsite Verified Supplier
✓ Quality Assurance
✓ Ethical Manufacturing
✓ Global Export Standards
Limited time promotions for wholesale buyers
Order total must exceed USD 200.00 (excluding shipping)
Get This OfferQuality accessories for fashion retailers worldwide
Elegant mesh design for formal occasions
Premium mechanical movement design
Luminous, waterproof with engraved dial
Stainless steel band, waterproof
Light luxury high fashion simple hip hop style
High quality vintage style chunky ring
Designer famous brands newest polarized shades
Delicate black gift box for men's cufflinks
Serving markets across five continents
With our strategic location in Guangdong, China, we efficiently serve international markets through optimized logistics and supply chain management. Our products meet international quality standards and are shipped worldwide.
• Central America
• North America
• Eastern Asia
• Southeast Asia
• Oceania
• Verified supplier with onsite certification
• 99.84% response rate with ≤1 hour response time
• 5 years of industry experience
• Competitive pricing with low MOQ
• Easy return policy for wholesale buyers
Get in touch for wholesale inquiries
Shantou Love Summer Technology Co., Ltd. Guangdong Province, China
+86 123 4567 8910
Monday - Friday: 9:00 AM - 6:00 PM (GMT+8)
Saturday: 9:00 AM - 1:00 PM