'); padding: 80px 0; text-align: center; position: relative; overflow: hidden; } .hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle, transparent 20%, var(--light) 80%); opacity: 0.3; z-index: 0; } .hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; color: var(--primary); text-shadow: 1px 1px 2px rgba(0,0,0,0.1); } .hero p { font-size: 1.3rem; margin-bottom: 30px; color: var(--dark); max-width: 700px; margin-left: auto; margin-right: auto; } .cta-button { display: inline-block; background: var(--accent); color: var(--white); padding: 14px 35px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(160, 82, 45, 0.3); } .cta-button:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(160, 82, 45, 0.4); } /* Section Styles */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 60px; position: relative; } .section-title h2 { font-size: 2.2rem; color: var(--primary); display: inline-block; padding-bottom: 15px; } .section-title h2::after { content: ""; position: absolute; width: 80px; height: 3px; background: var(--secondary); bottom: 0; left: 50%; transform: translateX(-50%); } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--accent); } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-box { background: var(--white); padding: 20px; 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(-5px); } .stat-box h4 { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; } /* Products Section */ .product-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; } .category-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease; } .category-card:hover { transform: translateY(-10px); } .category-header { background: var(--primary); color: var(--white); padding: 20px; text-align: center; } .category-body { padding: 25px; } .product-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px dashed #e0e0e0; } .product-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; } .product-title { display: flex; justify-content: space-between; margin-bottom: 8px; } .product-title h4 { font-size: 1.1rem; color: var(--accent); } .price { font-weight: 700; color: var(--primary); } .product-meta { display: flex; justify-content: space-between; font-size: 0.9rem; color: #666; } .tag { display: inline-block; padding: 3px 10px; background: #f0f8ff; border-radius: 20px; font-size: 0.8rem; margin-top: 8px; color: #4682b4; } .tag.hot { background: #fff0f0; color: #d9534f; } .tag.new { background: #f0fff4; color: #5cb85c; } /* Advantages Section */ .advantages { background: linear-gradient(to bottom, #f9f5f0, #f0e6d8); } .advantage-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .advantage-card { background: var(--white); padding: 35px 25px; border-radius: 10px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: all 0.3s ease; } .advantage-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .advantage-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } .advantage-card h3 { margin-bottom: 15px; color: var(--accent); } /* Certificates Section */ .certificates { text-align: center; } .cert-logos { display: flex; justify-content: center; gap: 60px; margin-top: 40px; flex-wrap: wrap; } .cert-logo { background: var(--white); padding: 25px 40px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .cert-logo h3 { color: var(--primary); margin-bottom: 10px; } /* Footer */ footer { background: 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-section h3 { font-size: 1.4rem; margin-bottom: 25px; color: var(--secondary); position: relative; padding-bottom: 10px; } .footer-section h3::after { content: ""; position: absolute; width: 40px; height: 2px; background: var(--secondary); bottom: 0; left: 0; } .contact-list { list-style: none; } .contact-list li { margin-bottom: 15px; display: flex; align-items: center; } .contact-icon { margin-right: 12px; color: var(--secondary); } .markets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: rgba(255,255,255,0.6); } /* Responsive Design */ @media (max-width: 992px) { .about-content { grid-template-columns: 1fr; } .hero h2 { font-size: 2.3rem; } } @media (max-width: 768px) { .header-container { flex-direction: column; } nav ul { margin-top: 20px; } nav li { margin: 0 10px; } .hero { padding: 60px 0; } .hero h2 { font-size: 2rem; } .section-title h2 { font-size: 1.8rem; } } @media (max-width: 576px) { .product-categories { grid-template-columns: 1fr; } .stat-box h4 { font-size: 2rem; } .hero p { font-size: 1.1rem; } }
Established in 2020, Yiwu Jiabeisini Jewelry specializes in high-quality wholesale hair accessories, jewelry, sunglasses and fashion accessories with competitive pricing and flexible OEM/ODM services.
Contact Us for QuotesFounded in 2020, Yiwu Jiabeisini Jewelry Co., Ltd. is a professional trading company based in Zhejiang, China. We specialize in designing and manufacturing high-quality fashion accessories including hair accessories, jewelry, sunglasses, belts and more.
Our business philosophy is built on integrity, contract compliance, and quality assurance. We adhere to the principle of "small profits but quick turnover" and have gained trust from global clients through diverse product offerings and exceptional service.
We look forward to cooperating with domestic and international businesses to create a bright future together. Customer satisfaction is our top priority.
Established
Response Rate
Response Time
Operation Area
We emphasize credibility, contract compliance, and product quality assurance. Our "small profits but quick turnover" approach enables competitive pricing while maintaining quality standards.
Our company has passed Alibaba's Onsite Check verification, ensuring authenticity and reliability for international buyers.
Our professional sales team is dedicated to providing satisfactory service with prompt responses to all inquiries. We strictly adhere to delivery schedules to ensure customer satisfaction.
Bath clip style with pearl decoration, enhances elegance
Chiffon material, suitable for ponytails, sweet style
Plastic material with flower decoration, easy to fix long hair
Checkerboard pattern, INS style, fits daily styling
Beige rimless, diamond-cut, UV400, Italian metal frame
Retro style, PC frame + TAC lens, polarized, for daily/sports
PC oval frame, silver appearance, vintage style, UV400
Customizable logo, oversized design, UV400, for women
Earrings + pendant + necklace, rhinestone, wedding gift
Geometric pattern, Cuban chain, stainless steel
Titanium steel, retro runes + compass, Viking style
Miyuki Tila glass beads, colorful, friendship theme
As a medium-sized factory, we maintain lower operational costs enabling us to offer more reasonable pricing than competitors.
Our dedicated sales team provides exceptional service with 99.38% response rate and ≤2 hour response time.
All products undergo multiple rounds of strict quality inspections to ensure compliance with standards and requirements.
We strictly adhere to delivery schedules, ensuring your orders arrive on time without delays.
We offer flexible OEM and ODM services to meet your specific product requirements and branding needs.
We maintain the highest quality standards through internationally recognized certifications:
Textile ecological certification ensuring products are free from harmful chemicals.
International Quality Management System certification regulating production and service processes.