'); background-size: cover; background-position: center; color: white; text-align: center; padding: 180px 0 100px; margin-top: 70px; } .hero h1 { font-size: 3.5rem; color: white; margin-bottom: 20px; animation: fadeInDown 1s ease; } .hero p { font-size: 1.4rem; max-width: 700px; margin: 0 auto 30px; animation: fadeInUp 1s ease; } .hero-btns { display: flex; justify-content: center; gap: 20px; animation: fadeIn 1.5s ease; } .btn-secondary { background: transparent; border: 2px solid white; } /* About Section */ .about-content { display: flex; gap: 50px; align-items: center; } .about-text { flex: 1; } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-box { background: white; padding: 25px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s ease; } .stat-box:hover { transform: translateY(-10px); } .stat-box h3 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 5px; } .stat-box p { font-weight: 600; color: var(--primary); } .about-image { flex: 1; background: #e0e7ff; height: 400px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-weight: bold; } /* Capabilities Section */ .capabilities { background-color: var(--light); } .capability-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .capability-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; text-align: center; } .capability-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .capability-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; } .capability-card h3 { margin-bottom: 15px; font-size: 1.5rem; } /* Products Section */ .product-categories { margin-bottom: 50px; } .category-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .category-btn { background: white; border: 2px solid var(--light); padding: 10px 25px; border-radius: 30px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .category-btn.active, .category-btn:hover { background: var(--secondary); color: white; border-color: var(--secondary); } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 200px; background: #f0f4ff; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-weight: bold; } .product-info { padding: 20px; } .product-info h3 { font-size: 1.2rem; margin-bottom: 10px; } .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(--accent); font-size: 1.1rem; } .min-order { color: var(--text-light); font-size: 0.9rem; } .quality-badge { display: inline-block; background: #e8faf1; color: #2ecc71; padding: 3px 10px; border-radius: 30px; font-size: 0.8rem; font-weight: 600; margin-top: 10px; } /* Services Section */ .services { background: linear-gradient(to right, #2c3e50, #1a2530); color: white; } .services h2 { color: white; } .services h2::after { background: var(--secondary); } .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: rgba(255,255,255,0.1); padding: 40px 30px; border-radius: 8px; text-align: center; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s ease; } .service-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-10px); } .service-card h3 { color: white; margin-bottom: 15px; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info { display: flex; flex-direction: column; gap: 20px; } .contact-item { display: flex; gap: 15px; } .contact-icon { font-size: 1.5rem; color: var(--secondary); } .contact-form { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; transition: all 0.3s ease; } .form-control:focus { border-color: var(--secondary); outline: none; box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2); } textarea.form-control { min-height: 150px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .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: 50px; height: 2px; background: var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #bdc3c7; transition: all 0.3s ease; } .footer-links a:hover { color: var(--secondary); padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #bdc3c7; font-size: 0.9rem; } /* Animations */ @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } /* Responsive */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact-container { grid-template-columns: 1fr; } } @media (max-width: 768px) { nav ul { display: none; } .mobile-toggle { display: block; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } section { padding: 60px 0; } } @media (max-width: 576px) { .hero-btns { flex-direction: column; gap: 15px; } .btn { width: 100%; text-align: center; } .stat-box { padding: 15px; } .stat-box h3 { font-size: 2rem; } }
Dongyang Lixi Apparel Co., Ltd. - Crafting Excellence Since 2018
Quality and innovation in garment accessories manufacturing
Established in 2018, Dongyang Lixi Apparel Co., Ltd. has grown to become a leading manufacturer and trading company specializing in high-quality garment accessories. Based in Dongyang, Zhejiang, China, we combine innovative design with rigorous quality standards.
With over 7 years of industry experience, we've developed a reputation for excellence in producing rhinestone decorations, plastic chains, and various garment trims. Our 3000-5000 sqm facility and dedicated team of 51-100 professionals ensure we meet global demands while maintaining the highest quality standards.
Our mission: "LIXI CLOTHING, FOR EVERYONE WAITING FOR SUCCESS TO PROVIDE HELP" - we're committed to empowering our partners through quality products and win-win cooperation.
Years Experience
Dedicated Staff
Sqm Facility
Annual Production Capacity
Why choose us as your garment accessories partner
With 4+ years of specialized export experience, we've developed mature production systems that ensure consistency and quality in every product.
Our dedicated team includes designers, sales professionals, and support staff, all trained in product expertise, customer service, and English communication.
We excel at custom manufacturing with flexible production capabilities. Our established supply chain ensures reliable delivery and competitive pricing.
Rigorous quality control measures at every production stage ensure our products meet the highest standards and your specifications.
From initial inquiry to after-sales support, we provide personalized service for every order regardless of size, ensuring a seamless experience.
Our onsite certification and international trading expertise enable us to serve clients worldwide efficiently and effectively.
High-quality garment accessories for fashion and decoration
Imitation Metal Acrylic Rhinestone Flower Stage Line Drill Universal DIY Accessory
DIY Brides Hand Bouquet Decorative Materials for Colored Rhinestone Trimming
Hollow Net Drill Rhinestone Plastic Resin A Drill Elastic Top Mesh Cloth
Elastic Rhinestone Fabric Mesh Ribbon Rolls for Dress Trim
Manufacturer Wholesale Plastic Woman Shoes Chain Accessories
Pink Trims Plastic Rhinestone Cup Chain Edge Trim for Bridal Dress
Comprehensive solutions for garment accessory needs
Leverage our 10+ years of manufacturing expertise to create custom garment accessories under your brand. We handle everything from concept to final production.
Our design team creates unique accessory concepts tailored to your market needs. Benefit from our innovative approaches and technical expertise.
With established export processes and documentation expertise, we efficiently ship worldwide. Our team handles customs clearance and logistics.
Need a unique product? Our R&D team works with you to develop new garment accessories that meet your specific requirements and market demands.
Our comprehensive QC process includes material inspection, in-process checks, and final product testing to ensure consistent quality standards.
We manage the entire production process from raw materials to finished goods, ensuring timely delivery while maintaining cost efficiency.
Get in touch to discuss your garment accessory needs
Dongyang, Zhejiang, China
3000-5000 sqm facility in Dongyang Industrial Zone
Monday-Friday: 8:00 AM - 5:00 PM (GMT+8)
T/T, L/C, PayPal, Credit Card, Western Union, Escrow