'); background-size: cover; background-position: center; height: 100vh; display: flex; align-items: center; color: white; text-align: center; position: relative; } .hero-content { max-width: 800px; margin: 0 auto; padding: 0 20px; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } /* About Section */ .about-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; } .about-text { padding: 20px; } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature-card { background: var(--light); padding: 20px; border-radius: 10px; text-align: center; transition: transform 0.3s ease; } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); } .feature-card h3 { color: var(--primary); margin: 15px 0; } /* Products Section */ .products { background-color: var(--light); } .product-categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .category-btn { padding: 10px 20px; background: white; border: 2px solid var(--primary); border-radius: 30px; color: var(--primary); cursor: pointer; transition: all 0.3s ease; font-weight: 600; } .category-btn.active, .category-btn:hover { background: var(--primary); 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 ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .product-img { height: 200px; background: var(--secondary); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; } .product-info { padding: 20px; } .product-info h3 { color: var(--dark); margin-bottom: 10px; } .product-price { color: var(--accent); font-weight: 700; font-size: 1.2rem; margin: 10px 0; } .product-moq { font-size: 0.9rem; color: #777; } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); text-align: center; transition: all 0.3s ease; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .service-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } .process-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 50px; } .step { background: var(--primary); color: white; border-radius: 50%; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; font-weight: 700; position: relative; z-index: 1; } .step::after { content: '→'; position: absolute; right: -25px; color: var(--dark); font-size: 1.5rem; } .step:last-child::after { display: none; } .step-content { text-align: center; margin-top: 15px; font-weight: 600; } /* Testimonials */ .testimonials { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; } .testimonials .section-title h2 { background: transparent; color: white; } .testimonials .section-title::after { background: rgba(255, 255, 255, 0.3); } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .testimonial-card { background: rgba(255, 255, 255, 0.1); padding: 30px; border-radius: 10px; backdrop-filter: blur(10px); } .testimonial-text { font-style: italic; margin-bottom: 20px; } .testimonial-author { font-weight: 600; } .testimonial-date { font-size: 0.9rem; opacity: 0.8; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info h3 { color: var(--primary); margin-bottom: 20px; } .contact-detail { display: flex; align-items: center; margin-bottom: 15px; } .contact-icon { width: 40px; height: 40px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: var(--primary); } .contact-form { background: var(--light); padding: 30px; border-radius: 10px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; } .form-group textarea { min-height: 120px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 30px; } .footer-logo { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 20px; display: block; } .footer-links h4 { margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-links h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--primary); } .footer-links ul { list-style: none; } .footer-links ul li { margin-bottom: 10px; } .footer-links ul li a { color: #bbb; text-decoration: none; transition: color 0.3s ease; } .footer-links ul li a:hover { color: white; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #bbb; } /* Responsive Design */ @media (max-width: 992px) { .hero h1 { font-size: 2.8rem; } section { padding: 60px 0; } } @media (max-width: 768px) { .mobile-menu-btn { display: block; } nav ul { position: fixed; top: 70px; left: -100%; flex-direction: column; background: white; width: 100%; padding: 20px 0; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); transition: left 0.3s ease; } nav ul.active { left: 0; } nav ul li { margin: 15px 20px; } .hero h1 { font-size: 2.2rem; } .hero-btns { flex-direction: column; align-items: center; } .step::after { display: none; } .step { margin-bottom: 40px; } } @media (max-width: 480px) { .hero h1 { font-size: 1.8rem; } .section-title h2 { font-size: 1.8rem; } .product-grid { grid-template-columns: 1fr; } .about-features { grid-template-columns: 1fr; } }
Nanchang Yujingling Industry & Trade Co., Ltd. - Creating beautiful, eco-friendly hair accessories since 2015. SGS certified manufacturer with 100% on-time delivery.
Established in 2015, Nanchang Yujingling Industry & Trade Co., Ltd. has grown to become a leading manufacturer of premium hair accessories. Founded by visionary female entrepreneurs passionate about beauty and craftsmanship, we blend traditional techniques with modern innovation.
We specialize in eco-friendly acetate, acrylic, plastic, fabric, and alloy hair accessories, serving clients worldwide with our commitment to quality and sustainability.
1390 m² Production Facility
30 Skilled Professionals
100% Rate Since 2015
4.7/5 Average Score
To create hair accessories that blend elegance and confidence, turning each piece into an expression of personal style through meticulous craftsmanship and eco-conscious materials.
Eco-friendly, UV-resistant, anti-cracking material
Flexible, gentle on hair, comfortable wear
Vibrant colors, durable, unique designs
Trendy animal designs, eco-friendly material
Transform your ideas into reality with our custom design capabilities. We offer logo engraving, pattern customization, and size modifications.
From raw material traceability to finished product inspection, our 7-step quality process ensures perfection in every piece.
Complete packaging solutions with custom branding and worldwide shipping with 100% on-time delivery guarantee.
Ready to discuss your hair accessory needs? Contact our team today for quotes, samples or partnership opportunities.
Europe, Americas, Japan, Korea, Southeast Asia