'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .btn { display: inline-block; background-color: var(--accent); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; border: none; cursor: pointer; } .btn:hover { background-color: #a8845f; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Section styles */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; 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-color: var(--accent); bottom: 0; left: 50%; transform: translateX(-50%); } /* About section */ .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .about-card { background-color: var(--light); border-radius: 8px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .about-card:hover { transform: translateY(-10px); } .about-card h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.4rem; display: flex; align-items: center; } .about-card h3 i { margin-right: 10px; color: var(--accent); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; } .stat-card { text-align: center; padding: 25px 15px; background: linear-gradient(to right, var(--primary), #2c5282); color: white; border-radius: 8px; } .stat-card .number { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; } /* Products section */ .products-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; } .filter-btn { background-color: var(--light); border: 1px solid #ddd; padding: 8px 20px; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; } .filter-btn.active, .filter-btn:hover { background-color: 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 { border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; background-color: white; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); } .product-img { height: 200px; background-color: #f0f0f0; display: flex; align-items: center; justify-content: center; color: #999; font-weight: 600; } .product-info { padding: 20px; } .product-category { color: var(--secondary); font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; } .product-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); } .product-price { color: var(--primary); font-weight: 700; font-size: 1.1rem; margin-bottom: 15px; } .product-meta { display: flex; justify-content: space-between; border-top: 1px solid #eee; padding-top: 15px; font-size: 0.9rem; color: #666; } /* Promotions section */ .promo-highlight { background: linear-gradient(to right, #f8f5f2, #e8e3dd); border-radius: 10px; padding: 30px; margin-bottom: 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; } .promo-text { max-width: 600px; } .promo-text h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 15px; } .countdown { background-color: var(--primary); color: white; padding: 15px 25px; border-radius: 8px; font-weight: 600; text-align: center; } .countdown .time-left { font-size: 1.3rem; font-weight: 700; } .coupon-table { width: 100%; border-collapse: collapse; margin: 30px 0; } .coupon-table th, .coupon-table td { border: 1px solid #ddd; padding: 12px 15px; text-align: center; } .coupon-table th { background-color: var(--primary); color: white; } .coupon-table tr:nth-child(even) { background-color: #f9f9f9; } .discount-product { display: flex; align-items: center; padding: 20px; background-color: white; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); margin-bottom: 20px; } .discount-badge { background-color: #e74c3c; color: white; padding: 5px 15px; border-radius: 30px; font-weight: 700; margin-right: 20px; min-width: 100px; text-align: center; } /* Services section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background-color: var(--light); border-radius: 8px; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .service-icon { font-size: 3rem; color: var(--accent); margin-bottom: 20px; } .payment-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; } .payment-method { background-color: white; padding: 8px 15px; border-radius: 4px; font-size: 0.9rem; box-shadow: 0 2px 5px rgba(0,0,0,0.05); } /* EEAT section */ .eeat-section { background: linear-gradient(to right, var(--primary), #2c5282); color: white; padding: 60px 0; } .eeat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .eeat-card { text-align: center; padding: 30px 20px; background-color: rgba(255,255,255,0.1); border-radius: 8px; } .eeat-card h3 { margin-bottom: 15px; font-size: 1.4rem; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 50px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--accent); } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 10px; } .footer-column ul li a { color: #ddd; text-decoration: none; transition: color 0.3s ease; } .footer-column ul li a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #444; color: #aaa; font-size: 0.9rem; } /* Responsive styles */ @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } nav ul { margin-top: 15px; justify-content: center; } nav ul li { margin: 0 8px; } .hero h2 { font-size: 2.2rem; } .promo-highlight { flex-direction: column; text-align: center; } .promo-text { margin-bottom: 25px; } }
Yiwu Zhiyi Trading Co., Ltd. specializes in OEM/ODM manufacturing of high-quality fashion jewelry, accessories, and keychains since 2019. With over 416 successful transactions and 100% response rate.
Explore Our CollectionsFounded in 2019, Yiwu Zhiyi Trading Co., Ltd. is a trusted trading company based in Zhejiang, China. We specialize in the design, manufacturing, and export of fashion jewelry and accessories.
As a verified supplier with onsite check certification, we maintain 100% response rate and ≤3 hours response time to ensure seamless communication with our global partners.
Gold/silver plated, 12 pieces MOQ, easy return policy
Non-tarnish, zircon decorated, 12 pieces MOQ
Healing properties, 12 pieces MOQ, easy return
Dollar/queen/cross designs, low MOQ (2 pieces)
Rotating beads design, adjustable size, stress relief
High-quality enamel, 12 pieces MOQ
Enjoy substantial savings on our popular collections. Discounts up to 52% off on selected items.
Offer valid until October 31, 2025
Coupon Value | Minimum Order (Excluding Shipping) |
---|---|
$30 OFF | Orders over $1000 |
$20 OFF | Orders over $600 |
$10 OFF | Orders over $220 |
$5 OFF | Orders over $110 |
Price: $0.44 $0.35 | MOQ: 12 pieces
Price: $0.74 $0.59 | MOQ: 12 pieces
Price: $1.62 $1.38 | MOQ: 12 pieces
Comprehensive quality control process ensures every product meets international standards. Easy return policy on most items.
1000+ ready-to-ship styles available for immediate dispatch. Reliable logistics partners ensure timely delivery worldwide.
OEM/ODM services available with custom logo options (hijab magnets, keychains, jewelry pendants). Matte plating and PVD gold plating options.
Established in 2019 with 416+ successful transactions and annual trade volume exceeding $50,000.
Specialized teams for design, production, quality control, and logistics ensure professional service.
Verified supplier status with onsite check certification and 100% response rate.
Transparent pricing, secure payment options, and reliable customer support.