'); background-size: cover; background-position: center; color: white; text-align: center; padding: 120px 0; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.5rem; margin-bottom: 30px; font-weight: 300; } .hero-btns { display: flex; justify-content: center; gap: 20px; } .btn { display: inline-block; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; font-size: 1rem; } .btn-primary { background: var(--secondary); color: white; border: 2px solid var(--secondary); } .btn-primary:hover { background: transparent; color: white; } .btn-secondary { background: transparent; color: white; border: 2px solid white; } .btn-secondary:hover { background: white; color: var(--primary); } /* 公司信息 */ .company-info { background-color: white; } .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; } .info-card { background: var(--light); border-radius: 10px; padding: 30px 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .info-card:hover { transform: translateY(-10px); } .info-card h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.5rem; } .info-card p { font-size: 1.1rem; color: var(--gray); } .rating { color: #f1c40f; font-size: 1.8rem; letter-spacing: 3px; } /* 产品类别 */ .categories { background-color: #f8f9fa; } .categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; } .category-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .category-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .category-img { height: 200px; background-color: var(--primary); display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; font-weight: bold; } .category-content { padding: 25px; } .category-content h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.4rem; } .category-content ul { list-style: none; } .category-content li { padding: 8px 0; border-bottom: 1px dashed #e2e8f0; display: flex; justify-content: space-between; } .category-content li:last-child { border-bottom: none; } /* 产品列表 */ .products { background: white; } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: var(--light); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-img { height: 220px; background-color: var(--dark); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.2rem; } .product-content { padding: 25px; } .product-title { color: var(--primary); font-size: 1.3rem; margin-bottom: 10px; min-height: 60px; } .product-price { color: var(--secondary); font-weight: 700; font-size: 1.4rem; margin: 10px 0; } .product-moq { background: var(--accent); color: white; display: inline-block; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; margin: 10px 0; } .product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; } .tag { background: var(--primary); color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; } .tag.hot { background: var(--secondary); } .tag.custom { background: #38a169; } /* 公司优势 */ .advantages { background: linear-gradient(to right, var(--primary), #2c5282); color: white; } .advantages .section-title h2 { color: white; } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .advantage-card { text-align: center; padding: 30px; background: rgba(255,255,255,0.1); border-radius: 10px; backdrop-filter: blur(10px); } .advantage-card i { font-size: 3rem; margin-bottom: 20px; color: var(--accent); } .advantage-card h3 { font-size: 1.5rem; margin-bottom: 15px; } /* 联系区域 */ .contact { background: white; } .contact-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info { padding-right: 30px; } .contact-info h3 { color: var(--primary); font-size: 1.8rem; margin-bottom: 25px; } .contact-detail { display: flex; margin-bottom: 25px; } .contact-icon { width: 50px; height: 50px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 20px; color: var(--primary); font-size: 1.2rem; } .contact-text h4 { color: var(--dark); margin-bottom: 5px; } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #e2e8f0; border-radius: 5px; font-size: 1rem; } .contact-form textarea { height: 150px; resize: vertical; } /* 页脚 */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-col h4 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h4::after { content: ''; position: absolute; width: 50px; height: 2px; background: var(--accent); bottom: 0; left: 0; } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #cbd5e0; text-decoration: none; transition: color 0.3s; } .footer-col ul li a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #a0aec0; } /* 响应式设计 */ @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } .hero-btns { flex-direction: column; gap: 15px; } .nav-links { display: none; } .mobile-menu-btn { display: block; } }
Your Trusted Partner for Custom Women's Clothing, Sleepwear & Intimate Apparel
Reliable Manufacturer Since 2019
Yuanyang County Hengsen Department Store Co., Ltd.
4.1/5 from 200+ reviews
5 Years (Est. 2019)
Henan Province, China
Established in 2019, Yuanyang County Hengsen Department Store Co., Ltd. has grown to become a trusted manufacturer and wholesaler of premium women's apparel. Based in Henan, China, we specialize in sleepwear, ladies' clothing, and intimate apparel with a strong focus on quality, customization, and fast delivery. Our commitment to excellence has earned us a 4.1/5 customer satisfaction rating.
Premium Quality Across All Collections
Best Sellers & New Arrivals
Vintage blouse, sheer top, premium silk fabric
High fashion cut edge two piece tracksuits
Fashion fur slippers, fluffy fox fur sandals
Free shipping, premium quality for special occasions
Why Choose HengSen Fashion
Immediate dispatch for in-stock items with worldwide shipping options
Add your logo, select fabrics, and request custom designs
Direct factory pricing with no hidden fees or tariffs
Minimum order quantity starts from just 2 pieces
Get in Touch for Quotes & Custom Orders
Yuanyang County, Henan Province, China
+86 XXX XXXX XXXX
Monday-Friday: 9:00 AM - 6:00 PM (GMT+8)