'); background-size: cover; color: white; padding: 80px 0; text-align: center; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.5rem; max-width: 700px; margin: 0 auto 30px; } .cta-button { display: inline-block; background: var(--secondary); color: white; padding: 14px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: var(--transition); box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); } .cta-button:hover { background: #ff5252; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6); } .stats { display: flex; justify-content: center; gap: 40px; margin-top: 50px; flex-wrap: wrap; } .stat-item { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); padding: 20px 30px; border-radius: 12px; min-width: 180px; } .stat-item .number { font-size: 2.5rem; font-weight: 700; margin-bottom: 5px; color: var(--accent); } .stat-item .label { font-size: 1rem; opacity: 0.9; } /* About Section */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--secondary); border-radius: 2px; } .section-title p { color: var(--gray); max-width: 700px; margin: 20px auto 0; } .about-content { display: flex; gap: 50px; align-items: center; } .about-text { flex: 1; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--dark); } .features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature { display: flex; gap: 15px; } .feature-icon { width: 50px; height: 50px; background: #e9d8fd; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.5rem; flex-shrink: 0; } .feature-text h4 { margin-bottom: 8px; color: var(--dark); } .feature-text p { color: var(--gray); font-size: 0.95rem; } .about-image { flex: 1; background: linear-gradient(45deg, #8a4baf, #4ecdc4); height: 400px; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; text-align: center; padding: 20px; } /* Products Section */ .products { background-color: #f0f4f8; } .category-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; } .tab { padding: 12px 25px; background: white; border: 2px solid #e2e8f0; border-radius: 30px; cursor: pointer; font-weight: 600; transition: var(--transition); } .tab:hover, .tab.active { background: var(--primary); color: white; border-color: var(--primary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 200px; background: linear-gradient(45deg, #e0c3fc, #8ec5fc); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; text-align: center; padding: 20px; } .product-info { padding: 20px; } .product-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); } .product-meta { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.9rem; } .price { color: var(--primary); font-weight: 700; } .moq { color: var(--gray); } .tags { display: flex; gap: 8px; flex-wrap: wrap; } .tag { background: #e9d8fd; color: var(--primary); font-size: 0.75rem; padding: 4px 10px; border-radius: 30px; } /* Promotion Section */ .promotion { text-align: center; background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); color: white; padding: 60px 0; } .promo-title { font-size: 2.5rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.2); } .promo-subtitle { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; } .coupons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; } .coupon { background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); border-radius: 15px; padding: 30px; min-width: 250px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); } .coupon .amount { font-size: 2rem; font-weight: 800; margin-bottom: 10px; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .coupon .condition { font-size: 1.1rem; margin-bottom: 0; } /* Contact Section */ .contact { background: var(--light); } .contact-wrapper { display: flex; gap: 50px; } .contact-info { flex: 1; } .contact-card { background: white; border-radius: 15px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); } .contact-card h3 { font-size: 1.5rem; margin-bottom: 25px; color: var(--primary); position: relative; padding-bottom: 15px; } .contact-card h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--secondary); } .contact-person { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; } .person-icon { width: 50px; height: 50px; background: #e9d8fd; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; flex-shrink: 0; } .person-details h4 { margin-bottom: 5px; } .person-details p { color: var(--gray); font-size: 0.95rem; } .payment-methods { margin-top: 30px; } .payment-methods h4 { margin-bottom: 15px; color: var(--dark); } .payment-icons { display: flex; gap: 15px; } .payment-icon { width: 50px; height: 30px; background: #f1f3f5; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.8rem; color: var(--gray); } .contact-form { flex: 1; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--dark); } .form-control { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; transition: var(--transition); } .form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(138, 75, 175, 0.2); } textarea.form-control { min-height: 150px; resize: vertical; } .submit-btn { background: var(--primary); color: white; border: none; padding: 14px 30px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--transition); } .submit-btn:hover { background: #7a3f9e; } /* Footer */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.2rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-column h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #adb5bd; text-decoration: none; transition: var(--transition); } .footer-links a:hover { color: white; padding-left: 5px; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #343a40; color: #adb5bd; font-size: 0.9rem; } /* Responsive */ @media (max-width: 992px) { .about-content, .contact-wrapper { flex-direction: column; } .hero h1 { font-size: 2.8rem; } } @media (max-width: 768px) { nav ul { gap: 10px; } .header-content { flex-direction: column; gap: 15px; } .hero h1 { font-size: 2.3rem; } .hero p { font-size: 1.2rem; } .section { padding: 60px 0; } }
Manufacturer and global wholesaler with 6 years of excellence in design and production
Explore ProductsQuality, reliability, and innovation in fashion accessories since 2022
Established in 2022 in Zhejiang, China, we are a professional trading company specializing in hair accessories and fashion jewelry. With over 6 years of experience on Alibaba platform, we've built a reputation for quality products and exceptional customer service.
Our 501-1000 square meter facility houses a dedicated team of 11-50 professionals committed to creating trend-setting accessories. We pride ourselves on our quick response time (≤2 hours) and high response rate of 97.67%.
We welcome custom designs and OEM requests for all our products.
We ship worldwide with reliable logistics partners.
Selected products feature hassle-free return options.
All products undergo strict quality control checks.
Discover our extensive collection of fashion accessories and jewelry
Enjoy special discounts on bulk orders placed between October 3-31, 2025 (US Time)
Get in touch with our sales team for quotes and custom orders
Sales Manager
Customer Relations
Custom Orders Specialist