'); background-size: cover; background-position: center; color: var(--white); padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 700; } .hero p { font-size: 1.4rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .btn { display: inline-block; background-color: var(--primary); color: var(--white); padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; border: 2px solid var(--primary); } .btn:hover { background-color: transparent; color: var(--white); } .btn-secondary { background-color: transparent; border-color: var(--white); margin-left: 15px; } .btn-secondary:hover { background-color: var(--white); color: var(--primary); } /* About Section */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 60px; position: relative; } .section-title h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 15px; } .section-title::after { content: ""; display: block; width: 80px; height: 4px; background-color: var(--primary); margin: 15px auto 0; } .about-content { display: flex; flex-wrap: wrap; gap: 30px; } .about-text { flex: 1; min-width: 300px; } .about-text h3 { font-size: 1.8rem; color: var(--secondary); margin-bottom: 20px; } .stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; } .stat-card { background-color: var(--white); padding: 25px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .stat-card:hover { transform: translateY(-5px); } .stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; } .stat-label { font-size: 1.1rem; color: var(--secondary); } .about-image { flex: 1; min-width: 300px; background: url('data:image/svg+xml;utf8,'); border-radius: 10px; display: flex; align-items: center; justify-content: center; } .image-placeholder { background-color: var(--gray); border-radius: 10px; width: 100%; height: 300px; display: flex; align-items: center; justify-content: center; color: var(--secondary); font-weight: 500; } /* Products Section */ .products { background-color: var(--gray); } .categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .category-btn { background-color: var(--white); border: 2px solid var(--secondary); color: var(--secondary); padding: 8px 20px; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; font-weight: 500; } .category-btn.active, .category-btn:hover { background-color: var(--secondary); color: var(--white); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: var(--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); } .product-image { height: 200px; background-color: var(--light); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-weight: 500; } .product-info { padding: 20px; } .product-category { color: var(--primary); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; margin-bottom: 5px; } .product-title { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark); } .product-price { font-weight: 700; font-size: 1.1rem; color: var(--secondary); margin-bottom: 15px; } .product-features { list-style-type: none; margin-bottom: 15px; } .product-features li { padding: 5px 0; position: relative; padding-left: 20px; } .product-features li::before { content: "✓"; color: var(--success); position: absolute; left: 0; top: 5px; } .product-meta { display: flex; justify-content: space-between; border-top: 1px solid var(--gray); padding-top: 15px; font-size: 0.9rem; } /* Promotion Section */ .promotion { background: linear-gradient(135deg, var(--accent), #ff9e6d); color: var(--dark); text-align: center; padding: 60px 0; } .promo-content { max-width: 800px; margin: 0 auto; } .promo-icon { font-size: 4rem; margin-bottom: 20px; color: var(--white); } .promo-title { font-size: 2.5rem; margin-bottom: 20px; } .promo-text { font-size: 1.3rem; margin-bottom: 30px; } .countdown { display: flex; justify-content: center; gap: 15px; margin: 30px 0; } .countdown-item { background-color: var(--white); border-radius: 10px; padding: 15px; min-width: 80px; } .countdown-number { font-size: 2rem; font-weight: 700; color: var(--secondary); } .countdown-label { font-size: 0.9rem; color: var(--text); } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background-color: var(--white); border-radius: 10px; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); 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; } .service-title { font-size: 1.5rem; margin-bottom: 15px; color: var(--secondary); } /* Payment Methods */ .payment-methods { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; } .payment-method { background-color: var(--white); border-radius: 8px; padding: 10px 20px; font-weight: 500; box-shadow: 0 3px 10px rgba(0,0,0,0.05); } /* Footer */ footer { background-color: var(--dark); color: var(--white); padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-column h3::after { content: ""; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background-color: var(--primary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #ddd; text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--primary); } .contact-info { list-style: none; } .contact-info li { margin-bottom: 15px; display: flex; align-items: flex-start; } .contact-icon { margin-right: 10px; color: var(--primary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #aaa; } /* Responsive Design */ @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } .hero h2 { font-size: 2.5rem; } .hero p { font-size: 1.1rem; } .section-title h2 { font-size: 2rem; } .promo-title { font-size: 2rem; } .btn { display: block; width: max-content; margin: 10px auto; } .btn-secondary { margin-left: 0; } } @media (max-width: 480px) { .hero { padding: 60px 0; } .hero h2 { font-size: 2rem; } .section { padding: 60px 0; } .countdown { flex-wrap: wrap; } .mobile-menu { display: block; position: absolute; top: 20px; right: 20px; } nav ul { display: none; width: 100%; text-align: center; } nav ul.show { display: block; } }
With over 10 years of expertise in the nail industry, we provide top-quality DIY nail products, tools, and accessories to salons, retailers, and enthusiasts worldwide.
Your Trusted Partner in Nail Supplies
Hefei Yujinxuan International Trade Co., Ltd., established in 2019 with over 7 years of industry experience, is a leading supplier specializing in comprehensive nail products. Based in Hefei, Anhui, China, we serve a global clientele with our extensive range of DIY nail solutions.
Our commitment to "Optimal Quality Products + Most Sincere Service Attitude" ensures that every customer receives exceptional products and service. We've successfully completed over 1,311 transactions totaling more than $260,000 USD, building trust through consistent quality and reliability.
Premium Quality Nail Supplies
Get USD 5.00 off on orders over USD 200.00 (excluding shipping)
Offer valid until: September 30, 2025 at 23:59 (GMT+8)
Get Coupon NowComprehensive Solutions for Your Business
Our company has passed rigorous on-site inspection and supplier certification processes, ensuring compliance with international trade standards and quality requirements.
Benefit from our 99.08% response rate and ≤5 hour response time commitment. Our dedicated team is always ready to assist with your inquiries and orders.
We accommodate businesses of all sizes with low minimum order quantities (starting from 5 boxes/bags), making us ideal for small retailers and DIY enthusiasts.