'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .hero-btns { display: flex; justify-content: center; gap: 15px; margin-top: 30px; } .btn { padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 500; font-size: 1rem; transition: all 0.3s; } .btn-primary { background: var(--secondary); color: white; } .btn-primary:hover { background: #d35400; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .btn-secondary { background: transparent; border: 2px solid white; color: white; } .btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); } /* Why Choose Us */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--secondary); } .section-title p { color: var(--gray); max-width: 700px; margin: 20px auto 0; } .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .feature-card { background: var(--light); border-radius: 8px; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .feature-card:hover { transform: translateY(-10px); } .feature-icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--secondary); } .feature-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--dark); } /* Product Catalog */ .categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; } .category-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.3s; } .category-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); } .category-header { background: var(--primary); color: white; padding: 15px 20px; text-align: center; } .category-body { padding: 20px; } .category-body ul { list-style: none; } .category-body li { padding: 8px 0; border-bottom: 1px dashed var(--border); display: flex; } .category-body li:last-child { border-bottom: none; } .category-body li::before { content: "•"; color: var(--secondary); font-weight: bold; display: inline-block; width: 1em; margin-right: 5px; } /* Featured Products */ .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; } .product-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.3s; } .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); } .product-img { height: 200px; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: 500; } .product-info { padding: 20px; background: white; } .product-title { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); } .product-price { color: var(--secondary); font-weight: 600; font-size: 1.2rem; margin: 10px 0; } .product-moq { color: var(--primary); font-weight: 500; margin-bottom: 10px; } .product-features { margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--border); } .product-features li { font-size: 0.9rem; margin-bottom: 5px; list-style: none; } .product-features li::before { content: "✓"; color: var(--accent); margin-right: 5px; font-weight: bold; } /* Videos Section */ .videos-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; } .video-card { background: var(--light); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .video-placeholder { height: 200px; background: #e0e0e0; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: 500; } .video-content { padding: 20px; } .video-content h3 { color: var(--primary); margin-bottom: 15px; } /* Contact Section */ .contact { background: var(--light); } .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 20px; } .contact-details { margin-top: 25px; } .contact-details div { margin-bottom: 15px; display: flex; align-items: flex-start; } .contact-details i { color: var(--secondary); margin-right: 10px; margin-top: 5px; } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 1rem; } .contact-form textarea { height: 150px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; } .footer-col h4 { font-size: 1.2rem; margin-bottom: 25px; position: relative; } .footer-col h4::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 40px; height: 2px; background: var(--secondary); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 12px; } .footer-col ul li a { color: #ddd; text-decoration: none; transition: color 0.3s; } .footer-col ul li a:hover { color: var(--secondary); padding-left: 5px; } .footer-bottom { text-align: center; padding-top: 40px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 0.9rem; } /* Responsive */ @media (max-width: 768px) { .header-container { flex-direction: column; padding: 15px 0; } nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; } nav li { margin: 5px 10px; } .hero h1 { font-size: 2.2rem; } .hero-btns { flex-direction: column; gap: 10px; } .btn { width: 100%; text-align: center; } }
Luohe Yueyang Packaging offers custom-designed, high-quality packaging products with 15+ years of industry expertise and OEM/ODM services
Your trusted partner for innovative packaging solutions
Luohe Yueyang Packaging Products Co., Ltd. is a leading trading company based in Henan, China with over 15 years of experience in the packaging and printing industry. We specialize in providing high-quality, custom packaging solutions for businesses worldwide.
We pride ourselves on combining traditional craftsmanship with modern manufacturing techniques to deliver packaging solutions that enhance your brand identity and meet your specific business requirements.
Our competitive advantages that set us apart in the packaging industry
Get custom mockups and design samples within 24 hours at no additional cost.
Standard production cycle of 10-15 days with 100% on-time delivery guarantee.
Food packaging bags and popular items ready for immediate shipment.
OEM/ODM services including logo printing, size adjustments, and material choices.
Competitive pricing with efficient logistics for timely global delivery.
Dedicated team ready to assist you anytime with 98.65% response rate.
Comprehensive range of packaging solutions for various industries
Popular items with competitive pricing and low minimum order quantities
See our premium packaging solutions in action
Materials: High-quality ivory board paper
Features: Multiple sizes and colors available | Custom logo printing | Customized according to client requirements
Contact us for samples and customization options
Materials: Knitted fabric, eco-friendly materials
Features: Multiple colors and sizes | Custom designs available | Reusable and sustainable
Contact us for detailed specifications and bulk orders
Get in touch for custom packaging solutions and quotes
Contact our packaging specialists today to discuss your requirements and request a free quote.